Files
spring-batch/pom.xml

199 lines
6.0 KiB
XML

<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>spring-batch</artifactId>
<name>Spring Batch</name>
<description>
<!-- Use CDATA to keep it on a single line in the manifest -->
<![CDATA[Spring Batch provides tools for enterprise batch or bulk processing. It can be used to wire up jobs, and track their execution, or simply as an optimization for repetitive processing in a transactional environment. Spring Batch is part of the Spring Portfolio.]]>
</description>
<version>1.0.0-m3</version>
<packaging>pom</packaging>
<url>http://www.springframework.org/spring-batch</url>
<organization>
<name>SpringSource</name>
<url>http://www.springsource.com</url>
</organization>
<scm>
<url>http://fisheye3.cenqua.com/browse/springframework/spring-batch/tags/spring-batch-1.0.0-m3</url>
<connection>scm:svn:http://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/tags/spring-batch-1.0.0-m3</connection>
<developerConnection>scm:svn:https://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/tags/spring-batch-1.0.0-m3</developerConnection>
</scm>
<issueManagement>
<system>JIRA</system>
<url>http://opensource.atlassian.com/projects/spring/browse/BATCH</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Spring Batch Forum</name>
<post>http://forum.springframework.org/forumdisplay.php?f=41</post>
<archive>http://forum.springframework.org/forumdisplay.php?f=41</archive>
</mailingList>
<mailingList>
<subscribe>http://lists.interface21.com/listmanager/listinfo/spring-batch-announce</subscribe>
<unsubscribe>http://lists.interface21.com/listmanager/listinfo/spring-batch-announce</unsubscribe>
<name>Spring Batch Announce</name>
<archive>http://lists.interface21.com/archives/spring-batch-announce</archive>
</mailingList>
</mailingLists>
<ciManagement>
<system>Bamboo</system>
<url>https://build.springframework.org/bamboo/browse/BATCH</url>
</ciManagement>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modules>
<module>parent</module>
<module>infrastructure</module>
<module>core</module>
<module>execution</module>
<module>samples</module>
<module>integration</module>
<module>docs</module>
</modules>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>deployment</id>
<distributionManagement>
<site>
<id>static.springframework.org</id>
<url>scp://static.springframework.org:/var/www/domains/springframework.org/static/htdocs/spring-batch</url>
</site>
</distributionManagement>
</profile>
<profile>
<id>strict</id>
<properties>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
</properties>
</profile>
<profile>
<id>fast</id>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
<profile>
<id>snapshots</id>
<pluginRepositories>
<pluginRepository>
<id>apache-snapshots</id>
<url>
http://people.apache.org/maven-snapshot-repository
</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<distributionManagement>
<downloadUrl>http://www.springframework.org/download</downloadUrl>
<site>
<id>staging</id>
<url>file:///${user.dir}/target/staging</url>
</site>
<repository>
<id>spring-milestone</id>
<name>Spring Milestone Repository</name>
<url>s3://maven.springframework.org/milestone</url>
</repository>
<snapshotRepository>
<id>spring-snapshot</id>
<name>Spring Snapshot Repository</name>
<url>s3://maven.springframework.org/snapshot</url>
</snapshotRepository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.springframework.aws</groupId>
<artifactId>spring-aws-maven</artifactId>
<version>1.2</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>zip-files</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<inherited>false</inherited>
<configuration>
<descriptors>
<descriptor>src/assembly/no-dependencies.xml</descriptor>
<descriptor>src/assembly/with-dependencies.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestone</id>
<name>Spring Portfolio Milestone Repository</name>
<url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
</repository>
<repository>
<id>spring-external</id>
<name>Spring Portfolio Milestone Repository</name>
<url>http://s3.amazonaws.com/maven.springframework.org/external</url>
</repository>
<repository>
<id>apache-snapshot</id>
<name>Apache Foundation Snapshot Repository</name>
<url>http://people.apache.org/maven-snapshot-repository</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-external</id>
<name>Spring Portfolio Milestone Repository</name>
<url>http://s3.amazonaws.com/maven.springframework.org/external</url>
</pluginRepository>
<pluginRepository>
<id>objectstyle</id>
<url>http://objectstyle.org/maven2</url>
</pluginRepository>
</pluginRepositories>
<developers>
<developer>
<id>dsyer</id>
<name>Dave Syer</name>
<email>david.syer@springsource.com</email>
</developer>
<developer>
<id>nebhale</id>
<name>Ben Hale</name>
<email>ben.hale@springsource.com</email>
</developer>
<developer>
<id>lward</id>
<name>Lucas Ward</name>
<email>lucas.l.ward@accenture.com</email>
</developer>
</developers>
</project>