[jboss-remoting-commits] JBoss Remoting SVN: r5831 - in remoting3/trunk: jboss-remoting and 1 other directories.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Mar 17 22:46:35 EDT 2010


Author: trustin
Date: 2010-03-17 22:46:34 -0400 (Wed, 17 Mar 2010)
New Revision: 5831

Modified:
   remoting3/trunk/jboss-remoting/pom.xml
   remoting3/trunk/pom.xml
   remoting3/trunk/samples/pom.xml
Log:
POM refactoring: all dependency information goes to the parent POM's <dependencyManagement/> section.

Modified: remoting3/trunk/jboss-remoting/pom.xml
===================================================================
--- remoting3/trunk/jboss-remoting/pom.xml	2010-03-18 02:35:20 UTC (rev 5830)
+++ remoting3/trunk/jboss-remoting/pom.xml	2010-03-18 02:46:34 UTC (rev 5831)
@@ -42,41 +42,30 @@
         <dependency>
             <groupId>org.jboss.xnio</groupId>
             <artifactId>xnio-api</artifactId>
-            <version>${xnio.version}</version>
-            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.jboss.xnio</groupId>
             <artifactId>xnio-nio</artifactId>
-            <version>${xnio.version}</version>
-            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.jboss.marshalling</groupId>
             <artifactId>jboss-marshalling</artifactId>
-            <version>${jbmar.version}</version>
-            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>org.jboss.marshalling</groupId>
             <artifactId>jboss-marshalling-river</artifactId>
-            <version>${jbmar.version}</version>
-            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.testng</groupId>
             <artifactId>testng</artifactId>
-            <version>5.8</version>
             <classifier>jdk15</classifier>
-            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.jboss.logmanager</groupId>
             <artifactId>jboss-logmanager</artifactId>
-            <version>1.1.1.GA</version>
-            <scope>test</scope>
         </dependency>
     </dependencies>
+
     <build>
         <plugins>
             <plugin>

Modified: remoting3/trunk/pom.xml
===================================================================
--- remoting3/trunk/pom.xml	2010-03-18 02:35:20 UTC (rev 5830)
+++ remoting3/trunk/pom.xml	2010-03-18 02:46:34 UTC (rev 5831)
@@ -51,6 +51,54 @@
         <module>jboss-remoting</module>
         <module>samples</module>
     </modules>
+    
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.jboss.xnio</groupId>
+                <artifactId>xnio-api</artifactId>
+                <version>${xnio.version}</version>
+                <scope>compile</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.xnio</groupId>
+                <artifactId>xnio-nio</artifactId>
+                <version>${xnio.version}</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.marshalling</groupId>
+                <artifactId>jboss-marshalling</artifactId>
+                <version>${jbmar.version}</version>
+                <scope>compile</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.marshalling</groupId>
+                <artifactId>jboss-marshalling-river</artifactId>
+                <version>${jbmar.version}</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.testng</groupId>
+                <artifactId>testng</artifactId>
+                <version>5.8</version>
+                <classifier>jdk15</classifier>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>4.8.1</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.logmanager</groupId>
+                <artifactId>jboss-logmanager</artifactId>
+                <version>1.1.1.GA</version>
+                <scope>test</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
 
     <build>
         <plugins>

Modified: remoting3/trunk/samples/pom.xml
===================================================================
--- remoting3/trunk/samples/pom.xml	2010-03-18 02:35:20 UTC (rev 5830)
+++ remoting3/trunk/samples/pom.xml	2010-03-18 02:46:34 UTC (rev 5831)
@@ -43,12 +43,10 @@
             <groupId>${groupId}</groupId>
             <artifactId>jboss-remoting</artifactId>
             <version>${version}</version>
-            <scope>compile</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>3.8.2</version>
             <scope>compile</scope>
         </dependency>
     </dependencies>



More information about the jboss-remoting-commits mailing list