Add Maven mini-build project

This commit is contained in:
dsyer
2009-01-12 08:57:17 +00:00
parent c7eacd3ed6
commit 0f7a2a51f2
6 changed files with 139 additions and 0 deletions

11
build-maven/.project Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>build-maven</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

29
build-maven/all/pom.xml Normal file
View File

@@ -0,0 +1,29 @@
<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.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven.all</artifactId>
<name>Full Build</name>
<packaging>pom</packaging>
<description>
Spring Batch Maven Build including all modules.
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modules>
<module>../../spring-batch-infrastructure</module>
<module>../../spring-batch-infrastructure-tests</module>
<module>../../spring-batch-core</module>
<module>../../spring-batch-integration</module>
<module>../../spring-batch-test</module>
<module>../../spring-batch-samples</module>
<module>../../archetypes</module>
<module>../../docs</module>
</modules>
</project>

View File

@@ -0,0 +1,24 @@
<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.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven.minimal</artifactId>
<name>Minimal Build</name>
<packaging>pom</packaging>
<description>
Spring Batch Maven Build for basic content.
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modules>
<module>../../spring-batch-infrastructure</module>
<module>../../spring-batch-core</module>
<module>../../spring-batch-test</module>
</modules>
</project>

22
build-maven/pom.xml Normal file
View File

@@ -0,0 +1,22 @@
<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.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven</artifactId>
<name>Maven Build</name>
<packaging>pom</packaging>
<description>
Spring Batch Maven Build Parent.
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>org.springframework.batch</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modules>
<module>minimal</module>
</modules>
</project>

View File

@@ -0,0 +1,26 @@
<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.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven.samples</artifactId>
<name>Normal Build</name>
<packaging>pom</packaging>
<description>
Spring Batch Maven Build including samples.
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modules>
<module>../../spring-batch-infrastructure</module>
<module>../../spring-batch-infrastructure-tests</module>
<module>../../spring-batch-core</module>
<module>../../spring-batch-test</module>
<module>../../spring-batch-samples</module>
</modules>
</project>

27
build-maven/site/pom.xml Normal file
View File

@@ -0,0 +1,27 @@
<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.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven.site</artifactId>
<name>Site Build</name>
<packaging>pom</packaging>
<description>
Spring Batch Maven Build including documentation.
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>org.springframework.batch.build.maven</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modules>
<module>../../spring-batch-infrastructure</module>
<module>../../spring-batch-infrastructure-tests</module>
<module>../../spring-batch-core</module>
<module>../../spring-batch-test</module>
<module>../../spring-batch-samples</module>
<module>../../docs</module>
</modules>
</project>