575 lines
18 KiB
XML
575 lines
18 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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.parent</artifactId>
|
|
<version>2.0.0.CI-SNAPSHOT</version>
|
|
<name>Spring Batch Parent</name>
|
|
<url>http://static.springframework.org/spring-batch/${artifactId}</url>
|
|
<description>
|
|
Spring Batch parent project. Defines dependencies and common configuration for the
|
|
build process.
|
|
</description>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<maven.test.failure.ignore>true</maven.test.failure.ignore>
|
|
<spring.framework.version>2.5.6.A</spring.framework.version>
|
|
<bundlor.version>1.0.0.M1A</bundlor.version>
|
|
</properties>
|
|
<profiles>
|
|
<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>
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>staging</id>
|
|
<distributionManagement>
|
|
<site>
|
|
<id>staging</id>
|
|
<url>file:///${user.dir}/target/staging</url>
|
|
</site>
|
|
<repository>
|
|
<id>staging</id>
|
|
<url>file:///${user.dir}/target/staging</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>staging</id>
|
|
<url>file:///${user.dir}/target/staging</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</profile>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>javadoc</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>snapshots</id>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>apache-snapshots</id>
|
|
<url>http://people.apache.org/maven-snapshot-repository</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<repositories>
|
|
<repository>
|
|
<id>apache-snapshot</id>
|
|
<name>Apache Foundation Snapshot Repository</name>
|
|
<url>http://people.apache.org/maven-snapshot-repository</url>
|
|
</repository>
|
|
</repositories>
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!--
|
|
This seems to work better than the default (2008/03/19) because
|
|
links on sub-module sites are not broken
|
|
-->
|
|
<plugin>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>2.0-beta-8-SNAPSHOT</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.springsource.bundlor</groupId>
|
|
<artifactId>com.springsource.bundlor.maven</artifactId>
|
|
<version>${bundlor.version}</version>
|
|
<inherited>true</inherited>
|
|
<executions>
|
|
<execution>
|
|
<id>bundlor-transform</id>
|
|
<!-- This isn't necessary, but Q4E barfs without it. -->
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>transform</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-trax</artifactId>
|
|
<version>1.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-apache-regexp</artifactId>
|
|
<version>1.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>foundrylogic.vpp</groupId>
|
|
<artifactId>vpp</artifactId>
|
|
<version>2.2.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*Tests.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/Abstract*.java</exclude>
|
|
</excludes>
|
|
<junitArtifactName>org.junit:com.springsource.org.junit</junitArtifactName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<configuration>
|
|
<aggregate>true</aggregate>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<configuration>
|
|
<aggregate>true</aggregate>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<quiet>true</quiet>
|
|
</configuration>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>javadoc</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>com.springsource.org.aspectj.runtime</artifactId>
|
|
<version>1.5.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>com.springsource.org.aspectj.weaver</artifactId>
|
|
<version>1.5.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>com.springsource.org.junit</artifactId>
|
|
<version>4.4.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>com.springsource.org.easymock</artifactId>
|
|
<version>2.3.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.jms</groupId>
|
|
<artifactId>com.springsource.javax.jms</artifactId>
|
|
<version>1.1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.transaction</groupId>
|
|
<artifactId>com.springsource.javax.transaction</artifactId>
|
|
<version>1.1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>com.springsource.javax.annotation</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.stream</groupId>
|
|
<artifactId>com.springsource.javax.xml.stream</artifactId>
|
|
<version>1.0.1</version>
|
|
<!-- optional for Java 6 -->
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>com.springsource.org.hibernate</artifactId>
|
|
<version>3.2.6.ga</version>
|
|
<optional>true</optional>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.objectweb.asm</groupId>
|
|
<artifactId>com.springsource.org.objectweb.asm</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.objectweb.asm</groupId>
|
|
<artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<!-- This one isn't in BRITS but is needed by Maven Central -->
|
|
<groupId>javax.transaction</groupId>
|
|
<artifactId>jta</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>com.springsource.org.hibernate.ejb</artifactId>
|
|
<version>3.3.2.GA</version>
|
|
<optional>true</optional>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>edu.oswego.cs.concurrent</groupId>
|
|
<artifactId>com.springsource.edu.oswego.cs.dl.util.concurrent</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>com.springsource.org.hibernate.annotations</artifactId>
|
|
<version>3.3.1.ga</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sourceforge.cglib</groupId>
|
|
<artifactId>com.springsource.net.sf.cglib</artifactId>
|
|
<version>2.1.3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.lang</artifactId>
|
|
<version>2.1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.io</artifactId>
|
|
<version>1.4.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.collections</artifactId>
|
|
<version>3.2.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.dbcp</artifactId>
|
|
<version>1.2.2.osgi</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.log4j</groupId>
|
|
<artifactId>com.springsource.org.apache.log4j</artifactId>
|
|
<version>1.2.15</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>com.springsource.org.hsqldb</artifactId>
|
|
<version>1.8.0.9</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.derby</groupId>
|
|
<artifactId>com.springsource.org.apache.derby</artifactId>
|
|
<version>10.3.2000001.599110</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>com.springsource.com.thoughtworks.xstream</artifactId>
|
|
<version>1.3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
<artifactId>com.springsource.org.codehaus.jettison</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ibatis</groupId>
|
|
<artifactId>com.springsource.com.ibatis</artifactId>
|
|
<version>2.3.0.677</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>com.springsource.javax.persistence</artifactId>
|
|
<version>1.0.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.osgi</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
<version>3.4.2.R34x_v20080826-1230</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.objectweb.asm</groupId>
|
|
<artifactId>com.springsource.org.objectweb.asm</artifactId>
|
|
<version>2.2.3</version>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.objectweb.asm</groupId>
|
|
<artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
|
|
<version>2.2.3</version>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.objectweb.asm</groupId>
|
|
<artifactId>com.springsource.org.objectweb.asm.commons</artifactId>
|
|
<version>2.2.3</version>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>com.springsource.javax.servlet</artifactId>
|
|
<version>2.5.0</version>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<!-- TODO: remove this or find a replacement in Java 5 / BRITS -->
|
|
<groupId>stax</groupId>
|
|
<artifactId>stax</artifactId>
|
|
<version>1.2.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- Spring Dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.aop</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.beans</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.context</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.context.support</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.core</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.expression</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.jdbc</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.jms</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.orm</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.test</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.transaction</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.web</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>org.springframework.oxm</artifactId>
|
|
<version>1.5.5.A</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.osgi</groupId>
|
|
<artifactId>org.springframework.osgi.core</artifactId>
|
|
<version>1.1.2.A</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<distributionManagement>
|
|
<downloadUrl>http://www.springframework.org/download</downloadUrl>
|
|
<site>
|
|
<id>static.springframework.org</id>
|
|
<url>
|
|
scp://static.springframework.org:/var/www/domains/springframework.org/static/htdocs/spring-batch/trunk
|
|
</url>
|
|
</site>
|
|
<repository>
|
|
<id>spring-milestone</id>
|
|
<name>Spring Milestone Repository</name>
|
|
<url>s3://repository.springsource.com/maven/bundles/milestone</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>spring-snapshot</id>
|
|
<name>Spring Snapshot Repository</name>
|
|
<url>s3://repository.springsource.com/maven/bundles/snapshot</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
<repositories>
|
|
<repository>
|
|
<id>objectstyle</id>
|
|
<name>ObjectStyle.org Repository</name>
|
|
<url>http://objectstyle.org/maven2</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.release</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
SpringSource Bundle Releases</name>
|
|
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.milestone</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
SpringSource Bundle Milestoness</name>
|
|
<url>http://repository.springsource.com/maven/bundles/milestone</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.external</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
External Bundle Releases</name>
|
|
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.snapshot</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
Snapshot Bundle Releases</name>
|
|
<url>http://repository.springsource.com/maven/bundles/snapshot</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>com.springsource.repository.bundles.milestone</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
SpringSource Bundle Milestones</name>
|
|
<url>http://repository.springsource.com/maven/bundles/milestone</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>com.springsource.repository.bundles.snapshot</id>
|
|
<name>SpringSource Enterprise Bundle Repository -
|
|
SpringSource Bundle Snapshots</name>
|
|
<url>http://repository.springsource.com/maven/bundles/snapshot</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|