You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2014/04/02 13:40:33 UTC

svn commit: r1583975 - in /poi/branches/maven: poi-examples/pom.xml poi-ooxml-schemas/pom.xml poi-ooxml/pom.xml pom.xml

Author: cedricwalter
Date: Wed Apr  2 11:40:33 2014
New Revision: 1583975

URL: http://svn.apache.org/r1583975
Log:
introduced dependencies management into main pom

Modified:
    poi/branches/maven/poi-examples/pom.xml
    poi/branches/maven/poi-ooxml-schemas/pom.xml
    poi/branches/maven/poi-ooxml/pom.xml
    poi/branches/maven/pom.xml

Modified: poi/branches/maven/poi-examples/pom.xml
URL: http://svn.apache.org/viewvc/poi/branches/maven/poi-examples/pom.xml?rev=1583975&r1=1583974&r2=1583975&view=diff
==============================================================================
--- poi/branches/maven/poi-examples/pom.xml (original)
+++ poi/branches/maven/poi-examples/pom.xml Wed Apr  2 11:40:33 2014
@@ -52,7 +52,6 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.11</version>
         </dependency>
     </dependencies>
 </project>
\ No newline at end of file

Modified: poi/branches/maven/poi-ooxml-schemas/pom.xml
URL: http://svn.apache.org/viewvc/poi/branches/maven/poi-ooxml-schemas/pom.xml?rev=1583975&r1=1583974&r2=1583975&view=diff
==============================================================================
--- poi/branches/maven/poi-ooxml-schemas/pom.xml (original)
+++ poi/branches/maven/poi-ooxml-schemas/pom.xml Wed Apr  2 11:40:33 2014
@@ -65,7 +65,6 @@ limitations under the License.
         <dependency>
             <groupId>org.apache.xmlbeans</groupId>
             <artifactId>xmlbeans</artifactId>
-            <version>2.3.0</version>
         </dependency>
     </dependencies>
 </project>
\ No newline at end of file

Modified: poi/branches/maven/poi-ooxml/pom.xml
URL: http://svn.apache.org/viewvc/poi/branches/maven/poi-ooxml/pom.xml?rev=1583975&r1=1583974&r2=1583975&view=diff
==============================================================================
--- poi/branches/maven/poi-ooxml/pom.xml (original)
+++ poi/branches/maven/poi-ooxml/pom.xml Wed Apr  2 11:40:33 2014
@@ -59,20 +59,15 @@
         <dependency>
             <groupId>org.apache.xmlbeans</groupId>
             <artifactId>xmlbeans</artifactId>
-            <version>2.3.0</version>
         </dependency>
-
         <dependency>
             <groupId>dom4j</groupId>
             <artifactId>dom4j</artifactId>
-            <version>1.6.1</version>
         </dependency>
-
         <!-- non-test dependency for OOXMLLite -->
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.11</version>
         </dependency>
     </dependencies>
 

Modified: poi/branches/maven/pom.xml
URL: http://svn.apache.org/viewvc/poi/branches/maven/pom.xml?rev=1583975&r1=1583974&r2=1583975&view=diff
==============================================================================
--- poi/branches/maven/pom.xml (original)
+++ poi/branches/maven/pom.xml Wed Apr  2 11:40:33 2014
@@ -200,6 +200,58 @@
         </dependency>
     </dependencies>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>dom4j</groupId>
+                <artifactId>dom4j</artifactId>
+                <version>1.6.1</version>
+            </dependency>
+            <dependency>
+                <groupId>commons-logging</groupId>
+                <artifactId>commons-logging</artifactId>
+                <version>1.1.3</version>
+                <scope>runtime</scope>
+                <optional>true</optional>
+            </dependency>
+            <dependency>
+                <groupId>log4j</groupId>
+                <artifactId>log4j</artifactId>
+                <version>1.2.17</version>
+                <scope>runtime</scope>
+                <optional>true</optional>
+            </dependency>
+            <dependency>
+                <groupId>commons-codec</groupId>
+                <artifactId>commons-codec</artifactId>
+                <version>1.9</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.xmlbeans</groupId>
+                <artifactId>xmlbeans</artifactId>
+                <version>2.3.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.hamcrest</groupId>
+                <artifactId>hamcrest-core</artifactId>
+                <scope>test</scope>
+                <version>1.3</version>
+            </dependency>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <scope>test</scope>
+                <version>4.11</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.ant</groupId>
+                <artifactId>ant</artifactId>
+                <version>1.8.2</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/poi/trunk</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/poi/trunk</developerConnection>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org