[jboss-cvs] JBossAS SVN: r103330 - in projects/scanning/trunk: deployers and 6 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 31 09:45:16 EDT 2010


Author: alesj
Date: 2010-03-31 09:45:15 -0400 (Wed, 31 Mar 2010)
New Revision: 103330

Added:
   projects/scanning/trunk/testsuite/
   projects/scanning/trunk/testsuite/pom.xml
   projects/scanning/trunk/testsuite/src/
   projects/scanning/trunk/testsuite/src/test/
   projects/scanning/trunk/testsuite/src/test/java/
   projects/scanning/trunk/testsuite/src/test/resources/
Modified:
   projects/scanning/trunk/deployers/pom.xml
   projects/scanning/trunk/indexer/pom.xml
   projects/scanning/trunk/plugins/pom.xml
   projects/scanning/trunk/pom.xml
   projects/scanning/trunk/scanning-impl/pom.xml
Log:
Add testsuite

Modified: projects/scanning/trunk/deployers/pom.xml
===================================================================
--- projects/scanning/trunk/deployers/pom.xml	2010-03-31 13:43:40 UTC (rev 103329)
+++ projects/scanning/trunk/deployers/pom.xml	2010-03-31 13:45:15 UTC (rev 103330)
@@ -62,16 +62,5 @@
       <groupId>org.jboss.deployers</groupId>
       <artifactId>jboss-deployers-vfs</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.test</groupId>
-      <artifactId>jboss-test</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>

Modified: projects/scanning/trunk/indexer/pom.xml
===================================================================
--- projects/scanning/trunk/indexer/pom.xml	2010-03-31 13:43:40 UTC (rev 103329)
+++ projects/scanning/trunk/indexer/pom.xml	2010-03-31 13:45:15 UTC (rev 103330)
@@ -22,10 +22,6 @@
         <groupId>org.jboss.scanning</groupId>
         <artifactId>scanning-impl</artifactId>
       </dependency>
-      <dependency>
-        <groupId>org.jboss.scanning</groupId>
-        <artifactId>scanning-plugins</artifactId>
-      </dependency>
     <dependency>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-common-core</artifactId>
@@ -62,16 +58,5 @@
       <groupId>javassist</groupId>
       <artifactId>javassist</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.test</groupId>
-      <artifactId>jboss-test</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>

Modified: projects/scanning/trunk/plugins/pom.xml
===================================================================
--- projects/scanning/trunk/plugins/pom.xml	2010-03-31 13:43:40 UTC (rev 103329)
+++ projects/scanning/trunk/plugins/pom.xml	2010-03-31 13:45:15 UTC (rev 103330)
@@ -62,16 +62,5 @@
       <groupId>org.hibernate</groupId>
       <artifactId>hibernate-entitymanager</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.test</groupId>
-      <artifactId>jboss-test</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>

Modified: projects/scanning/trunk/pom.xml
===================================================================
--- projects/scanning/trunk/pom.xml	2010-03-31 13:43:40 UTC (rev 103329)
+++ projects/scanning/trunk/pom.xml	2010-03-31 13:45:15 UTC (rev 103330)
@@ -24,6 +24,7 @@
     <module>plugins</module>
     <module>deployers</module>
     <module>indexer</module>
+    <module>testsuite</module>
   </modules>
 
   <properties>
@@ -100,6 +101,11 @@
       </dependency>
       <dependency>
         <groupId>org.jboss.scanning</groupId>
+        <artifactId>scanning-deployers</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.scanning</groupId>
         <artifactId>scanning-indexer</artifactId>
         <version>${project.version}</version>
       </dependency>
@@ -167,6 +173,18 @@
         </exclusions>
       </dependency>
       <dependency>
+        <groupId>org.jboss.deployers</groupId>
+        <artifactId>jboss-deployers-vfs</artifactId>
+        <version>${version.org.jboss.deployers}</version>
+        <exclusions>
+            <exclusion>
+                <groupId>org.jboss.mcann</groupId>
+                <artifactId>mcann-core</artifactId>
+            </exclusion>
+        </exclusions>
+        <type>test-jar</type>
+      </dependency>
+      <dependency>
         <groupId>javassist</groupId>
         <artifactId>javassist</artifactId>
         <version>${version.javassist}</version>

Modified: projects/scanning/trunk/scanning-impl/pom.xml
===================================================================
--- projects/scanning/trunk/scanning-impl/pom.xml	2010-03-31 13:43:40 UTC (rev 103329)
+++ projects/scanning/trunk/scanning-impl/pom.xml	2010-03-31 13:45:15 UTC (rev 103330)
@@ -58,16 +58,5 @@
       <groupId>javassist</groupId>
       <artifactId>javassist</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.test</groupId>
-      <artifactId>jboss-test</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>

Added: projects/scanning/trunk/testsuite/pom.xml
===================================================================
--- projects/scanning/trunk/testsuite/pom.xml	                        (rev 0)
+++ projects/scanning/trunk/testsuite/pom.xml	2010-03-31 13:45:15 UTC (rev 103330)
@@ -0,0 +1,98 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.scanning</groupId>
+    <artifactId>scanning-build</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>scanning-testsuite</artifactId>
+  <packaging>jar</packaging>
+  <name>JBoss Scanning Testsuite</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Scanning Testsuite</description>
+
+  <dependencies>
+      <dependency>
+        <groupId>org.jboss.scanning</groupId>
+        <artifactId>scanning-spi</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.scanning</groupId>
+        <artifactId>scanning-impl</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.scanning</groupId>
+        <artifactId>scanning-plugins</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.scanning</groupId>
+        <artifactId>scanning-deployers</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.scanning</groupId>
+        <artifactId>scanning-indexer</artifactId>
+      </dependency>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-common-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.logging</groupId>
+      <artifactId>jboss-logging-spi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-vfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-reflect</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.man</groupId>
+      <artifactId>jboss-managed</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.man</groupId>
+      <artifactId>jboss-metatype</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.cl</groupId>
+      <artifactId>jboss-classloading</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.cl</groupId>
+      <artifactId>jboss-classloading-vfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javassist</groupId>
+      <artifactId>javassist</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.deployers</groupId>
+      <artifactId>jboss-deployers-vfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.deployers</groupId>
+      <artifactId>jboss-deployers-vfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.deployers</groupId>
+      <artifactId>jboss-deployers-vfs</artifactId>
+      <scope>test</scope>
+      <type>test-jar</type>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.test</groupId>
+      <artifactId>jboss-test</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>




More information about the jboss-cvs-commits mailing list