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/08/18 18:39:07 UTC

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

Author: gnodet
Date: Fri Aug 18 09:39:06 2006
New Revision: 432635

URL: http://svn.apache.org/viewvc?rev=432635&view=rev
Log:
Fix dependencies where scope is specified in an invalid way

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

Modified: geronimo/xbean/trunk/xbean-spring/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-spring/pom.xml?rev=432635&r1=432634&r2=432635&view=diff
==============================================================================
--- geronimo/xbean/trunk/xbean-spring/pom.xml (original)
+++ geronimo/xbean/trunk/xbean-spring/pom.xml Fri Aug 18 09:39:06 2006
@@ -50,7 +50,7 @@
     <dependency>
       <groupId>org.apache.xbean</groupId>
       <artifactId>xbean-spring-v1</artifactId>
-      <optional>true</optional>
+      <scope>optional</scope>
     </dependency>
     <dependency>
       <groupId>org.springframework</groupId>
@@ -59,7 +59,7 @@
     <dependency>
       <groupId>org.apache.xbean</groupId>
       <artifactId>xbean-spring-v2</artifactId>
-      <optional>true</optional>
+      <scope>optional</scope>
     </dependency>
   </dependencies>
 </project>