You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2015/07/05 13:53:23 UTC

svn commit: r1689241 - in /webservices/woden/trunk/java: pom.xml woden-core/pom.xml woden-tests/pom.xml woden-tool/pom.xml

Author: veithen
Date: Sun Jul  5 11:53:22 2015
New Revision: 1689241

URL: http://svn.apache.org/r1689241
Log:
Make use of dependency management and eliminate incorrect property name.

Modified:
    webservices/woden/trunk/java/pom.xml
    webservices/woden/trunk/java/woden-core/pom.xml
    webservices/woden/trunk/java/woden-tests/pom.xml
    webservices/woden/trunk/java/woden-tool/pom.xml

Modified: webservices/woden/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/pom.xml?rev=1689241&r1=1689240&r2=1689241&view=diff
==============================================================================
--- webservices/woden/trunk/java/pom.xml (original)
+++ webservices/woden/trunk/java/pom.xml Sun Jul  5 11:53:22 2015
@@ -91,6 +91,41 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>log4j</groupId>
+                <artifactId>log4j</artifactId>
+                <version>1.2.15</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>javax.mail</groupId>
+                        <artifactId>mail</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>javax.jms</groupId>
+                        <artifactId>jms</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>com.sun.jdmk</groupId>
+                        <artifactId>jmxtools</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>com.sun.jmx</groupId>
+                        <artifactId>jmxri</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>oro</groupId>
+                        <artifactId>oro</artifactId>
+                    </exclusion>
+                    <exclusion>
+                        <groupId>junit</groupId>
+                        <artifactId>junit</artifactId>
+                    </exclusion>
+                </exclusions>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
     <modules>
         <module>woden-core</module>
         <module>woden-tests</module>
@@ -292,7 +327,6 @@
         <apache.xmlSchema.version>2.1.1-SNAPSHOT</apache.xmlSchema.version>
         <apache.ant.version>1.7.1</apache.ant.version>
         <wsdl4j.version>1.6.2</wsdl4j.version>
-        <lof4j.version>1.2.15</lof4j.version>
         <commons.logging.version>1.1.1</commons.logging.version>
     </properties>
 </project>

Modified: webservices/woden/trunk/java/woden-core/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-core/pom.xml?rev=1689241&r1=1689240&r2=1689241&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-core/pom.xml (original)
+++ webservices/woden/trunk/java/woden-core/pom.xml Sun Jul  5 11:53:22 2015
@@ -96,34 +96,7 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <version>${lof4j.version}</version>
             <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>javax.mail</groupId>
-                    <artifactId>mail</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>javax.jms</groupId>
-                    <artifactId>jms</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>com.sun.jdmk</groupId>
-                    <artifactId>jmxtools</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>com.sun.jmx</groupId>
-                    <artifactId>jmxri</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>oro</groupId>
-                    <artifactId>oro</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>junit</groupId>
-                    <artifactId>junit</artifactId>
-                </exclusion>
-            </exclusions>
         </dependency>
     </dependencies>
 </project>

Modified: webservices/woden/trunk/java/woden-tests/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-tests/pom.xml?rev=1689241&r1=1689240&r2=1689241&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-tests/pom.xml (original)
+++ webservices/woden/trunk/java/woden-tests/pom.xml Sun Jul  5 11:53:22 2015
@@ -78,34 +78,7 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <version>${lof4j.version}</version>
             <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>javax.mail</groupId>
-                    <artifactId>mail</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>javax.jms</groupId>
-                    <artifactId>jms</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>com.sun.jdmk</groupId>
-                    <artifactId>jmxtools</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>com.sun.jmx</groupId>
-                    <artifactId>jmxri</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>oro</groupId>
-                    <artifactId>oro</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>junit</groupId>
-                    <artifactId>junit</artifactId>
-                </exclusion>
-            </exclusions>
         </dependency>
     </dependencies>
 </project>

Modified: webservices/woden/trunk/java/woden-tool/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-tool/pom.xml?rev=1689241&r1=1689240&r2=1689241&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-tool/pom.xml (original)
+++ webservices/woden/trunk/java/woden-tool/pom.xml Sun Jul  5 11:53:22 2015
@@ -113,34 +113,7 @@
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
-            <version>${lof4j.version}</version>
             <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>javax.mail</groupId>
-                    <artifactId>mail</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>javax.jms</groupId>
-                    <artifactId>jms</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>com.sun.jdmk</groupId>
-                    <artifactId>jmxtools</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>com.sun.jmx</groupId>
-                    <artifactId>jmxri</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>oro</groupId>
-                    <artifactId>oro</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>junit</groupId>
-                    <artifactId>junit</artifactId>
-                </exclusion>
-            </exclusions>
         </dependency>
     </dependencies>
 </project>