SLING-2544 - adding ResourceResolverTest back in as an integration test (thanks to Antonio Sanso for getting this started!)

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1378407 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 83cdb54..9a2f98c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -547,5 +547,10 @@
             <artifactId>servlet-api</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 </project>
diff --git a/src/test/java/org/apache/sling/launchpad/testing/TestAll.java b/src/test/java/org/apache/sling/launchpad/testing/TestAll.java
index 2d36f5e..e03abef 100644
--- a/src/test/java/org/apache/sling/launchpad/testing/TestAll.java
+++ b/src/test/java/org/apache/sling/launchpad/testing/TestAll.java
@@ -51,7 +51,7 @@
         // Get the URLs
         final URL[] urls = ((URLClassLoader) sysClassLoader).getURLs();
         final String testPattern = System.getProperty("integrationTestPattern",
-            "**/launchpad/webapp/integrationtest/**/*Test");
+            "**/launchpad/*/integrationtest/**/*Test");
         final String testRegex = convertToRegex(testPattern);
         final Pattern pattern = Pattern.compile(testRegex);
         for (URL u : urls) {