I'd avoid making new projects that have a modules/* Just organize your modules in the root, or make modules to organize them into meaningful groups.

--jason


On Oct 11, 2006, at 3:55 PM, [EMAIL PROTECTED] wrote:

Author: ammulder
Date: Wed Oct 11 15:55:25 2006
New Revision: 463024

URL: http://svn.apache.org/viewvc?view=rev&rev=463024
Log:
Initial skeleton of Spring integration

Added:
    geronimo/plugins/spring/branches/
    geronimo/plugins/spring/tags/
    geronimo/plugins/spring/trunk/   (with props)
    geronimo/plugins/spring/trunk/modules/
geronimo/plugins/spring/trunk/modules/spring-deployer- service/ (with props) geronimo/plugins/spring/trunk/modules/spring-deployer-service/ pom.xml (with props)
    geronimo/plugins/spring/trunk/modules/spring-deployer-service/src/
geronimo/plugins/spring/trunk/modules/spring-deployer-service/ src/java/ geronimo/plugins/spring/trunk/modules/spring-integration- service/ (with props) geronimo/plugins/spring/trunk/modules/spring-integration- service/pom.xml (with props) geronimo/plugins/spring/trunk/modules/spring-integration- service/src/ geronimo/plugins/spring/trunk/modules/spring-integration- service/src/java/
    geronimo/plugins/spring/trunk/pom.xml   (with props)

Propchange: geronimo/plugins/spring/trunk/
---------------------------------------------------------------------- --------
--- svn:ignore (added)
+++ svn:ignore Wed Oct 11 15:55:25 2006
@@ -0,0 +1,4 @@
+target
+svn-*
+velocity*
+*.i??

Propchange: geronimo/plugins/spring/trunk/modules/spring-deployer- service/ ---------------------------------------------------------------------- --------
--- svn:ignore (added)
+++ svn:ignore Wed Oct 11 15:55:25 2006
@@ -0,0 +1,4 @@
+target
+svn-*
+velocity*
+*.i??

Added: geronimo/plugins/spring/trunk/modules/spring-deployer- service/pom.xml URL: http://svn.apache.org/viewvc/geronimo/plugins/spring/trunk/ modules/spring-deployer-service/pom.xml?view=auto&rev=463024 ====================================================================== ======== --- geronimo/plugins/spring/trunk/modules/spring-deployer-service/ pom.xml (added) +++ geronimo/plugins/spring/trunk/modules/spring-deployer-service/ pom.xml Wed Oct 11 15:55:25 2006
@@ -0,0 +1,142 @@
+<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.plugins</groupId>
+        <artifactId>spring-parent</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>spring-deployer-service</artifactId>
+    <name>Geronimo Spring Deployer</name>
+
+    <build>
+        <plugins>
+<!-- TODO
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>xmlbeans-maven-plugin</artifactId>
+                <version>2.0.1-SNAPSHOT</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>xmlbeans</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <download>true</download>
+ <sourceSchemas>geronimo-spring-1.0.xsd</ sourceSchemas>
+                    <schemaDirectory>src/schema</schemaDirectory>
+                    <xmlConfigs>
+ <xmlConfig implementation="java.io.File">src/schema/xmlconfig.xml</xmlConfig>
+                    </xmlConfigs>
+                </configuration>
+            </plugin>
+-->
+        </plugins>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <resources>
+            <resource>
+                <directory>src/resources</directory>
+                <filtering>true</filtering>
+            </resource>
+        </resources>
+        <testResources>
+            <testResource>
+                <directory>src/test-resources</directory>
+            </testResource>
+        </testResources>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>gplugins</groupId>
+            <artifactId>common</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>spring-integration-service</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>xmlbeans</groupId>
+            <artifactId>xbean</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>stax</groupId>
+            <artifactId>stax-api</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-kernel</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-deployment</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-service-builder</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-common</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-naming-builder</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-j2ee-builder</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-j2ee-schema</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-j2ee</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-system</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Propchange: geronimo/plugins/spring/trunk/modules/spring-deployer- service/pom.xml ---------------------------------------------------------------------- --------
    svn:eol-style = native

Propchange: geronimo/plugins/spring/trunk/modules/spring- integration-service/ ---------------------------------------------------------------------- --------
--- svn:ignore (added)
+++ svn:ignore Wed Oct 11 15:55:25 2006
@@ -0,0 +1,4 @@
+target
+svn-*
+velocity*
+*.i??

Added: geronimo/plugins/spring/trunk/modules/spring-integration- service/pom.xml URL: http://svn.apache.org/viewvc/geronimo/plugins/spring/trunk/ modules/spring-integration-service/pom.xml?view=auto&rev=463024 ====================================================================== ======== --- geronimo/plugins/spring/trunk/modules/spring-integration- service/pom.xml (added) +++ geronimo/plugins/spring/trunk/modules/spring-integration- service/pom.xml Wed Oct 11 15:55:25 2006
@@ -0,0 +1,76 @@
+<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.plugins</groupId>
+        <artifactId>spring-parent</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>spring-integration-service</artifactId>
+    <name>Spring Integration service for Geronimo</name>
+
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <resources>
+            <resource>
+                <directory>src/resources</directory>
+                <filtering>true</filtering>
+            </resource>
+        </resources>
+        <testResources>
+            <testResource>
+                <directory>src/test-resources</directory>
+            </testResource>
+        </testResources>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-kernel</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-naming</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-deployment</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-system</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>mx4j</groupId>
+            <artifactId>mx4j</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file

Propchange: geronimo/plugins/spring/trunk/modules/spring- integration-service/pom.xml ---------------------------------------------------------------------- --------
    svn:eol-style = native

Added: geronimo/plugins/spring/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/plugins/spring/trunk/ pom.xml?view=auto&rev=463024 ====================================================================== ========
--- geronimo/plugins/spring/trunk/pom.xml (added)
+++ geronimo/plugins/spring/trunk/pom.xml Wed Oct 11 15:55:25 2006
@@ -0,0 +1,261 @@
+<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>
+
+    <groupId>org.apache.geronimo.plugins</groupId>
+    <artifactId>spring-parent</artifactId>
+    <packaging>pom</packaging>
+    <version>1.0-SNAPSHOT</version>
+    <name>Spring Integration for Geronimo</name>
+    <properties>
+        <spring-plugin-version>1.0-SNAPSHOT</spring-plugin-version>
+        <geronimo-version>1.1.1</geronimo-version>
+        <spring-version>2.0</spring-version>
+    </properties>
+    <modules>
+        <module>modules/spring-integration-service</module>
+        <module>modules/spring-deployer-service</module>
+<!-- TODO
+        <module>configs</module>
+        <module>dependencies</module>
+-->
+    </modules>
+
+    <repositories>
+        <!-- Needed for the car-maven-plugin to work on G 1.1.1 -->
+        <repository>
+            <id>aaron-people-repository</id>
+            <name>Aaron's People Repository</name>
+            <url>http://people.apache.org/~ammulder/</url>
+        </repository>
+    </repositories>
+
+    <pluginRepositories>
+        <!-- Needed for car-maven-plugin -->
+        <pluginRepository>
+            <id>apache-snapshots</id>
+            <name>Apache Snapshots Repository</name>
+ <url>http://people.apache.org/repo/m2-snapshot- repository</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>true</enabled>
+                <updatePolicy>daily</updatePolicy>
+                <checksumPolicy>ignore</checksumPolicy>
+            </snapshots>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+        </pluginRepository>
+        <!-- Needed for XMLBeans plugin -->
+        <pluginRepository>
+            <id>codehaus-snapshots</id>
+            <name>Codehaus Snapshots Repository</name>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>true</enabled>
+                <updatePolicy>daily</updatePolicy>
+                <checksumPolicy>ignore</checksumPolicy>
+            </snapshots>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+
+  <dependencyManagement>
+    <dependencies>
+      <!-- Modules built by this project -->
+        <dependency>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>spring-integration-service</artifactId>
+            <version>${spring-plugin-version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>spring-deployer-service</artifactId>
+            <version>${spring-plugin-version}</version>
+        </dependency>
+<!--
+        <dependency>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>spring-plugin-dependencies</artifactId>
+            <version>${spring-plugin-version}</version>
+        </dependency>
+-->
+        <dependency>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>spring-integration</artifactId>
+            <version>${spring-plugin-version}</version>
+            <type>car</type>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.plugins</groupId>
+            <artifactId>spring-deployer</artifactId>
+            <version>${spring-plugin-version}</version>
+            <type>car</type>
+        </dependency>
+
+      <!-- Modules from other projects -->
+        <dependency>
+            <groupId>gplugins</groupId>
+            <artifactId>common</artifactId>
+            <version>1.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-kernel</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-core</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-transaction</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-security</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-util</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-webservices</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-naming</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-deployment</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-system</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-service-builder</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-common</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-naming-builder</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-j2ee-builder</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-j2ee-schema</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>geronimo-j2ee</artifactId>
+            <version>${geronimo-version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>geronimo</groupId>
+            <artifactId>rmi-naming</artifactId>
+            <version>${geronimo-version}</version>
+            <type>car</type>
+        </dependency>
+
+        <dependency>
+            <groupId>mx4j</groupId>
+            <artifactId>mx4j</artifactId>
+            <version>3.0.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring</artifactId>
+            <version>2.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.0.4</version>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>xmlbeans</groupId>
+            <artifactId>xbean</artifactId>
+            <version>2.0.0</version>
+        </dependency>
+
+        <dependency>
+            <groupId>stax</groupId>
+            <artifactId>stax-api</artifactId>
+            <version>1.0</version>
+        </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-clean-plugin</artifactId>
+                    <version>2.1</version>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.geronimo.plugins</groupId>
+                    <artifactId>car-maven-plugin</artifactId>
+                    <version>1.1</version>
+                    <extensions>true</extensions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+</project>

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



Reply via email to