You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2007/10/08 20:58:47 UTC

svn commit: r582938 - in /geronimo/server/trunk/configs: cxf/pom.xml pom.xml spring/ spring/LICENSE.txt spring/NOTICE.txt spring/pom.xml spring/src/ spring/src/main/ spring/src/plan/

Author: gawor
Date: Mon Oct  8 11:58:46 2007
New Revision: 582938

URL: http://svn.apache.org/viewvc?rev=582938&view=rev
Log:
created spring module. cxf now depends on the spring module

Added:
    geronimo/server/trunk/configs/spring/
    geronimo/server/trunk/configs/spring/LICENSE.txt
      - copied unchanged from r582832, geronimo/server/trunk/configs/cxf/LICENSE.txt
    geronimo/server/trunk/configs/spring/NOTICE.txt
      - copied unchanged from r582832, geronimo/server/trunk/configs/cxf/NOTICE.txt
    geronimo/server/trunk/configs/spring/pom.xml   (with props)
    geronimo/server/trunk/configs/spring/src/
      - copied from r582832, geronimo/server/trunk/configs/cxf/src/
    geronimo/server/trunk/configs/spring/src/main/
      - copied from r582899, geronimo/server/trunk/configs/cxf/src/main/
    geronimo/server/trunk/configs/spring/src/plan/
      - copied from r582899, geronimo/server/trunk/configs/cxf/src/plan/
Modified:
    geronimo/server/trunk/configs/cxf/pom.xml
    geronimo/server/trunk/configs/pom.xml

Modified: geronimo/server/trunk/configs/cxf/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/configs/cxf/pom.xml?rev=582938&r1=582937&r2=582938&view=diff
==============================================================================
--- geronimo/server/trunk/configs/cxf/pom.xml (original)
+++ geronimo/server/trunk/configs/cxf/pom.xml Mon Oct  8 11:58:46 2007
@@ -68,6 +68,13 @@
         </dependency>
 
         <dependency>
+            <groupId>org.apache.geronimo.configs</groupId>
+            <artifactId>spring</artifactId>
+            <version>${version}</version>
+            <type>car</type>
+        </dependency>
+
+        <dependency>
             <groupId>org.apache.geronimo.modules</groupId>
             <artifactId>geronimo-cxf</artifactId>
             <version>${version}</version>
@@ -117,18 +124,6 @@
             <groupId>org.apache.ws.commons.schema</groupId>
             <artifactId>XmlSchema</artifactId>
             <version>1.2</version>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-beans</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-context</artifactId>
         </dependency>
         <dependency>
             <groupId>xml-resolver</groupId>

Modified: geronimo/server/trunk/configs/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/configs/pom.xml?rev=582938&r1=582937&r2=582938&view=diff
==============================================================================
--- geronimo/server/trunk/configs/pom.xml (original)
+++ geronimo/server/trunk/configs/pom.xml Mon Oct  8 11:58:46 2007
@@ -174,6 +174,7 @@
         <module>servlet-examples-tomcat</module>
         <module>sharedlib</module>
         <module>shutdown</module>
+        <module>spring</module>
         <module>system-database</module>
         <module>tomcat6</module>
         <module>tomcat6-deployer</module>

Added: geronimo/server/trunk/configs/spring/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/configs/spring/pom.xml?rev=582938&view=auto
==============================================================================
--- geronimo/server/trunk/configs/spring/pom.xml (added)
+++ geronimo/server/trunk/configs/spring/pom.xml Mon Oct  8 11:58:46 2007
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<!-- $Rev: 580112 $ $Date: 2007-09-27 13:35:15 -0400 (Thu, 27 Sep 2007) $ -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.geronimo.configs</groupId>
+        <artifactId>configs</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>spring</artifactId>
+    <name>Geronimo Configs :: Spring</name>
+    <packaging>car</packaging>
+
+    <description>
+        Geronimo module that supplies the Spring framework in a single classloader.
+    </description>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.geronimo.configs</groupId>
+            <artifactId>jee-specs</artifactId>
+            <version>${version}</version>
+            <type>car</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-beans</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-web</artifactId>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.geronimo.plugins</groupId>
+                <artifactId>car-maven-plugin</artifactId>
+                <configuration>
+                    <useMavenDependencies>
+                        <value>true</value>
+                        <includeVersion>true</includeVersion>
+                    </useMavenDependencies>
+                    <category>Geronimo Core</category>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: geronimo/server/trunk/configs/spring/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native