663 lines
20 KiB
XML
663 lines
20 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.1.DEV-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>spring-batch-infrastructure</module>
|
|
<module>spring-batch-core</module>
|
|
<module>spring-batch-samples</module>
|
|
<module>spring-batch-integration</module>
|
|
<module>docs</module>
|
|
</modules>
|
|
<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/trunk</url>
|
|
<connection>scm:svn:http://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/trunk</connection>
|
|
<developerConnection>scm:svn:https://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/trunk</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>
|
|
<properties>
|
|
<maven.test.failure.ignore>true</maven.test.failure.ignore>
|
|
<spring.framework.version>2.5.2</spring.framework.version>
|
|
</properties>
|
|
<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>
|
|
<!-- Clover 2 is still a snapshot plugin -->
|
|
<pluginRepository>
|
|
<id>atlassian-m2-repository</id>
|
|
<name>Atlassian Maven 2.x Repository</name>
|
|
<url>http://repository.atlassian.com/maven2</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-7-SNAPSHOT</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>xsl-aggregation</id>
|
|
<activation>
|
|
<file>
|
|
<exists>src/main/xsl/emma.xsl</exists>
|
|
</file>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
<executions>
|
|
<execution>
|
|
<id>xsl</id>
|
|
<phase>site</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<echo>Aggregating XSL reports</echo>
|
|
<mkdir dir="target/emma-reports" />
|
|
<concat destfile="target/site/emma-reports/emma-report.xml">
|
|
<fileset dir="." includes="**/coverage.fragment" />
|
|
<filterchain>
|
|
<linecontainsregexp>
|
|
<regexp pattern="[a-zA-Z]" />
|
|
</linecontainsregexp>
|
|
</filterchain>
|
|
<header trimleading="yes">
|
|
<![CDATA[<summary>]]>
|
|
</header>
|
|
<footer trimleading="yes">
|
|
<![CDATA[</summary>]]>
|
|
</footer>
|
|
</concat>
|
|
<xslt in="target/site/emma-reports/emma-report.xml" out="target/site/emma-reports/index.html" style="src/main/xsl/emma2html.xsl">
|
|
<param name="project" expression="${project.name}" />
|
|
<param name="version" expression="${project.version}" />
|
|
</xslt>
|
|
</tasks>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</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.2</version>
|
|
</extension>
|
|
</extensions>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
<artifactId>maven-clover-plugin</artifactId>
|
|
<version>2</version>
|
|
<configuration>
|
|
<licenseLocation>${clover.license.path}</licenseLocation>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>pre-site</phase>
|
|
<goals>
|
|
<goal>instrument</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>emma-maven-plugin</artifactId>
|
|
<version>1.0-20070912.011112-4</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>junitreport</id>
|
|
<phase>site</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<echo>Creating JUnit reports</echo>
|
|
<mkdir dir="target/surefire-reports" />
|
|
<junitreport todir="target/surefire-reports">
|
|
<fileset dir=".">
|
|
<filename name="**/target/surefire-reports/TEST-*.xml" />
|
|
</fileset>
|
|
<report todir="target/site/junit-reports" />
|
|
</junitreport>
|
|
<echo>Creating Emma reports</echo>
|
|
<mkdir dir="target/site/emma-reports" />
|
|
<xslt includes="target/emma/coverage.xml" destdir="target/emma-reports" style="${project.parent.basedir}/src/main/xsl/emma.xsl">
|
|
<mapper type="glob" from="*.xml" to="*.fragment" />
|
|
<param name="project" expression="${project.name}" />
|
|
</xslt>
|
|
</tasks>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant-junit</artifactId>
|
|
<version>1.6.5</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.4</source>
|
|
<target>1.4</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*Tests.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/Abstract*.java</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
<configuration>
|
|
<filesets>
|
|
<fileset>
|
|
<directory>${basedir}</directory>
|
|
<includes>
|
|
<include>activemq-data</include>
|
|
<include>derby-home</include>
|
|
<include>amqstore</include>
|
|
<include>.clover</include>
|
|
<include>surefire*</include>
|
|
<include>derby.log</include>
|
|
</includes>
|
|
<followSymlinks>false</followSymlinks>
|
|
</fileset>
|
|
</filesets>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>aspectj</groupId>
|
|
<artifactId>aspectjrt</artifactId>
|
|
<version>1.5.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>1.5.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>backport-util-concurrent</groupId>
|
|
<artifactId>backport-util-concurrent</artifactId>
|
|
<version>3.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate</artifactId>
|
|
<version>3.2.3.ga</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>javax.transaction</groupId>
|
|
<artifactId>jta</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>cglib</groupId>
|
|
<artifactId>cglib</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>asm</groupId>
|
|
<artifactId>asm-attrs</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>asm</groupId>
|
|
<artifactId>asm</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cglib</groupId>
|
|
<artifactId>cglib-nodep</artifactId>
|
|
<version>2.1_3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>avalon-framework</groupId>
|
|
<artifactId>avalon-framework</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>logkit</groupId>
|
|
<artifactId>logkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<version>1.8.0.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<version>1.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>1.2.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>stax</groupId>
|
|
<artifactId>stax</artifactId>
|
|
<version>1.2.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-dbcp</groupId>
|
|
<artifactId>commons-dbcp</artifactId>
|
|
<version>1.2.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ibatis</groupId>
|
|
<artifactId>ibatis-sqlmap</artifactId>
|
|
<version>2.3.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- Spring Dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-aop</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jdbc</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jms</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-orm</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-tx</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>${spring.framework.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.ws</groupId>
|
|
<artifactId>spring-oxm</artifactId>
|
|
<version>1.0.4</version>
|
|
<optional>true</optional>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<version>2.8.1</version>
|
|
<scope>optional</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<reporting>
|
|
<excludeDefaults>true</excludeDefaults>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.interface21.maven</groupId>
|
|
<artifactId>maven-external-report-plugin</artifactId>
|
|
<version>1.0</version>
|
|
<configuration>
|
|
<name>JUnit Report</name>
|
|
<description>JUnit test results for this project</description>
|
|
<base>junit-reports</base>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jdepend-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<links>
|
|
<link>http://java.sun.com/j2ee/1.4/docs/api</link>
|
|
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
|
|
<link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
|
|
<link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
|
|
<link>http://jakarta.apache.org/commons/logging/api/</link>
|
|
<link>http://jakarta.apache.org/commons/pool/apidocs/</link>
|
|
<link>http://www.junit.org/junit/javadoc/</link>
|
|
<link>http://logging.apache.org/log4j/docs/api/</link>
|
|
<link>http://jakarta.apache.org/regexp/apidocs/</link>
|
|
<link>http://jakarta.apache.org/velocity/api/</link>
|
|
<link>http://static.springframework.org/spring/docs/2.5.x/api/</link>
|
|
<link>http://static.springframework.org/spring-batch/apidocs/</link>
|
|
</links>
|
|
<aggregate>true</aggregate>
|
|
<excludePackageNames>*.batch.sample,*.batch.container</excludePackageNames>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<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>
|
|
<timezone>0</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>lward</id>
|
|
<name>Lucas Ward</name>
|
|
<email>lucas.l.ward@accenture.com</email>
|
|
</developer>
|
|
<developer>
|
|
<id>robokaso</id>
|
|
<name>Robert Kasanicky</name>
|
|
<email>robert.kasanicky@accenture.com</email>
|
|
</developer>
|
|
</developers>
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-release</id>
|
|
<name>Spring Portfolio Release Repository</name>
|
|
<url>http://s3.amazonaws.com/maven.springframework.org/release</url>
|
|
</repository>
|
|
<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 External Repository</name>
|
|
<url>http://s3.amazonaws.com/maven.springframework.org/external</url>
|
|
</repository>
|
|
<repository>
|
|
<id>objectstyle</id>
|
|
<name>ObjectStyle.org Repository</name>
|
|
<url>http://objectstyle.org/maven2/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>spring-external</id>
|
|
<name>Spring External Repository</name>
|
|
<url>http://s3.amazonaws.com/maven.springframework.org/external</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>Codehaus Snapshots</id>
|
|
<url>http://snapshots.repository.codehaus.org/</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>spring-external-svn</id>
|
|
<name>Spring External SVN Repository</name>
|
|
<url>https://springframework.svn.sourceforge.net/svnroot/springframework/repos/repo-ext</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|