do not block stopping the server by default

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1785302 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 6619201..3af907d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,6 +39,7 @@
     <properties>
         <sling.java.version>8</sling.java.version>
         <http.host>localhost</http.host>
+        
     </properties>
 
     <scm>
@@ -107,8 +108,9 @@
                         <goals>
                             <goal>stop</goal>
                         </goals>
+                        <!-- set value to true to allow to run IT from your IDE while the quickstart server is still running -->
                         <configuration>
-                            <shouldBlockUntilKeyIsPressed>true</shouldBlockUntilKeyIsPressed>
+                            <shouldBlockUntilKeyIsPressed>false</shouldBlockUntilKeyIsPressed>
                         </configuration>
                     </execution>
                 </executions>
@@ -122,7 +124,6 @@
                         </server>
                     </servers>
                     <disableExtendingMavenClasspath>true</disableExtendingMavenClasspath>
-                    <keepLaunchpadRunning>false</keepLaunchpadRunning>
                 </configuration>
             </plugin>
             <plugin>
@@ -142,6 +143,7 @@
                         <ClientSideTeleporter.testReadyTimeoutSeconds>20</ClientSideTeleporter.testReadyTimeoutSeconds>
                         <ClientSideTeleporter.testBundleDirectory>${project.build.directory}/test-bundles</ClientSideTeleporter.testBundleDirectory>
                         <ClientSideTeleporter.enableLogging>true</ClientSideTeleporter.enableLogging>
+                        <!-- deploy test content and some Sling models with the test bundle -->
                         <ClientSideTeleporter.additionalBundleHeaders>Sling-Initial-Content:SLING-CONTENT;overwrite:=true,Sling-Model-Packages:org.apache.sling.models.validation.impl.it</ClientSideTeleporter.additionalBundleHeaders>
                         <ClientSideTeleporter.includeDependencyPrefixes>org.apache.sling.models.validation.impl.it</ClientSideTeleporter.includeDependencyPrefixes>
                     </systemPropertyVariables>