You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xbean-scm@geronimo.apache.org by da...@apache.org on 2007/07/20 21:51:18 UTC

svn commit: r558106 - in /geronimo/xbean/trunk: maven-xbean-plugin/pom.xml pom.xml xbean-classloader/pom.xml xbean-server/pom.xml xbean-spring/pom.xml xbean-tiger/pom.xml

Author: dain
Date: Fri Jul 20 12:51:13 2007
New Revision: 558106

URL: http://svn.apache.org/viewvc?view=rev&rev=558106
Log:
Switch to Spring module jars
Mark all Spring dependencies as provided

Modified:
    geronimo/xbean/trunk/maven-xbean-plugin/pom.xml
    geronimo/xbean/trunk/pom.xml
    geronimo/xbean/trunk/xbean-classloader/pom.xml
    geronimo/xbean/trunk/xbean-server/pom.xml
    geronimo/xbean/trunk/xbean-spring/pom.xml
    geronimo/xbean/trunk/xbean-tiger/pom.xml

Modified: geronimo/xbean/trunk/maven-xbean-plugin/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/maven-xbean-plugin/pom.xml?view=diff&rev=558106&r1=558105&r2=558106
==============================================================================
--- geronimo/xbean/trunk/maven-xbean-plugin/pom.xml (original)
+++ geronimo/xbean/trunk/maven-xbean-plugin/pom.xml Fri Jul 20 12:51:13 2007
@@ -40,7 +40,19 @@
             <artifactId>xbean-spring</artifactId>
             <version>${version}</version>
         </dependency>
-        
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+          <version>2.0.5</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+          <version>2.0.5</version>
+        </dependency>
+ 
         <dependency>
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-project</artifactId>

Modified: geronimo/xbean/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/pom.xml?view=diff&rev=558106&r1=558105&r2=558106
==============================================================================
--- geronimo/xbean/trunk/pom.xml (original)
+++ geronimo/xbean/trunk/pom.xml Fri Jul 20 12:51:13 2007
@@ -205,7 +205,25 @@
             
             <dependency>
                 <groupId>org.springframework</groupId>
-                <artifactId>spring</artifactId>
+                <artifactId>spring-beans</artifactId>
+                <version>2.0.5</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-context</artifactId>
+                <version>2.0.5</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-web</artifactId>
+                <version>2.0.5</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>org.springframework</groupId>
+                <artifactId>spring-jmx</artifactId>
                 <version>2.0.5</version>
             </dependency>
             

Modified: geronimo/xbean/trunk/xbean-classloader/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-classloader/pom.xml?view=diff&rev=558106&r1=558105&r2=558106
==============================================================================
--- geronimo/xbean/trunk/xbean-classloader/pom.xml (original)
+++ geronimo/xbean/trunk/xbean-classloader/pom.xml Fri Jul 20 12:51:13 2007
@@ -60,8 +60,8 @@
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>
-            <artifactId>spring</artifactId>
+            <artifactId>spring-beans</artifactId>
             <scope>provided</scope>
         </dependency>
     </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: geronimo/xbean/trunk/xbean-server/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-server/pom.xml?view=diff&rev=558106&r1=558105&r2=558106
==============================================================================
--- geronimo/xbean/trunk/xbean-server/pom.xml (original)
+++ geronimo/xbean/trunk/xbean-server/pom.xml Fri Jul 20 12:51:13 2007
@@ -53,6 +53,24 @@
         </dependency>
 
         <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-jmx</artifactId>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
             <groupId>mx4j</groupId>
             <artifactId>mx4j</artifactId>
             <optional>true</optional>
@@ -99,4 +117,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>

Modified: geronimo/xbean/trunk/xbean-spring/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-spring/pom.xml?view=diff&rev=558106&r1=558105&r2=558106
==============================================================================
--- geronimo/xbean/trunk/xbean-spring/pom.xml (original)
+++ geronimo/xbean/trunk/xbean-spring/pom.xml Fri Jul 20 12:51:13 2007
@@ -41,7 +41,20 @@
 
         <dependency>
             <groupId>org.springframework</groupId>
-            <artifactId>spring</artifactId>
+            <artifactId>spring-beans</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+            <optional>true</optional>
         </dependency>
 
         <dependency>

Modified: geronimo/xbean/trunk/xbean-tiger/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-tiger/pom.xml?view=diff&rev=558106&r1=558105&r2=558106
==============================================================================
--- geronimo/xbean/trunk/xbean-tiger/pom.xml (original)
+++ geronimo/xbean/trunk/xbean-tiger/pom.xml Fri Jul 20 12:51:13 2007
@@ -41,13 +41,20 @@
         </dependency>
 
         <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+            <scope>provided</scope>
         </dependency>
 
         <dependency>
             <groupId>org.springframework</groupId>
-            <artifactId>spring</artifactId>
+            <artifactId>spring-context</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
         </dependency>
 
     </dependencies>
@@ -80,4 +87,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>