You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gn...@apache.org on 2006/04/28 17:44:21 UTC

svn commit: r397927 - /geronimo/xbean/trunk/xbean-spring/pom.xml

Author: gnodet
Date: Fri Apr 28 08:44:19 2006
New Revision: 397927

URL: http://svn.apache.org/viewcvs?rev=397927&view=rev
Log:
XBEAN-6: Fix dependencies scope

Modified:
    geronimo/xbean/trunk/xbean-spring/pom.xml

Modified: geronimo/xbean/trunk/xbean-spring/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/xbean/trunk/xbean-spring/pom.xml?rev=397927&r1=397926&r2=397927&view=diff
==============================================================================
--- geronimo/xbean/trunk/xbean-spring/pom.xml (original)
+++ geronimo/xbean/trunk/xbean-spring/pom.xml Fri Apr 28 08:44:19 2006
@@ -1,4 +1,6 @@
-<?xml version="1.0" encoding="UTF-8"?><project>
+<project
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
   <parent>
     <artifactId>xbean</artifactId>
     <groupId>org.apache.xbean</groupId>
@@ -50,6 +52,7 @@
     <dependency>
       <groupId>mx4j</groupId>
       <artifactId>mx4j</artifactId>
+      <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
@@ -62,18 +65,22 @@
     <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
+      <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>backport-util-concurrent</groupId>
       <artifactId>backport-util-concurrent</artifactId>
+      <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>stax</groupId>
       <artifactId>stax-api</artifactId>
+      <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>qdox</groupId>
       <artifactId>qdox</artifactId>
+      <optional>true</optional>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>