[jboss-cvs] JBossAS SVN: r103713 - projects/embedded/trunk/testsuite.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 8 13:37:33 EDT 2010


Author: ALRubinger
Date: 2010-04-08 13:37:33 -0400 (Thu, 08 Apr 2010)
New Revision: 103713

Modified:
   projects/embedded/trunk/testsuite/pom.xml
Log:
[EMB-85] Remove the cyclic dependency fully between AS proper; now working due to depMgt declaration

Modified: projects/embedded/trunk/testsuite/pom.xml
===================================================================
--- projects/embedded/trunk/testsuite/pom.xml	2010-04-08 17:15:01 UTC (rev 103712)
+++ projects/embedded/trunk/testsuite/pom.xml	2010-04-08 17:37:33 UTC (rev 103713)
@@ -115,7 +115,7 @@
   <!-- Dependencies -->
   <dependencies>
 
-    <!-- All AS runtime dependencies -->
+    <!-- All AS runtime dependencies --> 
     <dependency>
       <groupId>org.jboss.jbossas</groupId>
       <artifactId>jboss-as-depchain</artifactId>
@@ -123,13 +123,6 @@
       <scope>test</scope>
       <type>pom</type>
     </dependency>
-    <dependency>
-      <groupId>org.jboss.jbossas</groupId>
-      <artifactId>jboss-as-component-matrix</artifactId>
-      <version>${version.org.jboss.jbossas}</version>
-      <scope>import</scope>
-      <type>pom</type>
-    </dependency>
     
     <!-- JUnit -->
     <dependency>
@@ -162,9 +155,19 @@
       <version>${version}</version>
       <scope>test</scope>
     </dependency>
+  </dependencies>
 
+  <!-- We need to inherit the exclusions as well, so this is required -->
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.jboss.jbossas</groupId>
+        <artifactId>jboss-as-depchain</artifactId>
+        <version>${version.org.jboss.jbossas}</version>
+        <scope>import</scope>
+        <type>pom</type>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
 
-
-  </dependencies>
-
 </project>




More information about the jboss-cvs-commits mailing list