You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
547 lines
16 KiB
547 lines
16 KiB
<?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/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>org.springframework.bootstrap</groupId> |
|
<artifactId>spring-bootstrap-parent</artifactId> |
|
<version>0.5.0.BUILD-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
<prerequisites> |
|
<maven>3.0.0</maven> |
|
</prerequisites> |
|
<modules> |
|
<module>spring-bootstrap</module> |
|
<module>spring-bootstrap-actuator</module> |
|
<module>spring-bootstrap-starters</module> |
|
<module>spring-bootstrap-launcher</module> |
|
<module>spring-bootstrap-samples</module> |
|
<module>spring-bootstrap-cli</module> |
|
</modules> |
|
<properties> |
|
<java.version>1.6</java.version> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<spring.version>4.0.0.BUILD-SNAPSHOT</spring.version> |
|
<spring.security.javaconfig.version>1.0.0.CI-SNAPSHOT</spring.security.javaconfig.version> |
|
<spring.integration.version>2.2.3.RELEASE</spring.integration.version> |
|
<spring.batch.version>2.2.0.RC1</spring.batch.version> |
|
<tomcat.version>7.0.39</tomcat.version> |
|
</properties> |
|
|
|
<scm> |
|
<url>http://github.com/SpringSource/spring-bootstrap</url> |
|
<connection>scm:git:git://github.com/SpringSource/spring-bootstrap.git</connection> |
|
<developerConnection>scm:git:ssh://git@github.com/SpringSource/spring-bootstrap.git</developerConnection> |
|
</scm> |
|
|
|
<developers> |
|
<developer> |
|
<id>dsyer</id> |
|
<name>Dave Syer</name> |
|
<email>dsyer@gopivotal.com</email> |
|
</developer> |
|
<developer> |
|
<id>phillweb</id> |
|
<name>Phillip Webb</name> |
|
<email>pweb@gopivotal.com</email> |
|
</developer> |
|
</developers> |
|
|
|
<distributionManagement> |
|
<!-- see 'staging' profile for dry-run deployment settings --> |
|
<downloadUrl>http://www.springsource.com/download/community |
|
</downloadUrl> |
|
<site> |
|
<id>spring-docs</id> |
|
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-bootstrap/docs/${project.version} |
|
</url> |
|
</site> |
|
<repository> |
|
<id>spring-repo-release</id> |
|
<name>Spring Release Repository</name> |
|
<url>http://repo.springsource.org/libs-release-local</url> |
|
</repository> |
|
<snapshotRepository> |
|
<id>spring-repo-snapshot</id> |
|
<name>Spring Snapshot Repository</name> |
|
<url>http://repo.springsource.org/libs-snapshot-local</url> |
|
</snapshotRepository> |
|
</distributionManagement> |
|
|
|
<profiles> |
|
<profile> |
|
<id>staging</id> |
|
<distributionManagement> |
|
<site> |
|
<id>spring-site-staging</id> |
|
<url>file:///${java.io.tmpdir}/spring-bootstrap/docs</url> |
|
</site> |
|
<repository> |
|
<id>spring-milestone-staging</id> |
|
<url>file:///${java.io.tmpdir}/spring-bootstrap/milestone</url> |
|
</repository> |
|
<snapshotRepository> |
|
<id>spring-snapshot-staging</id> |
|
<url>file:///${java.io.tmpdir}/spring-bootstrap/snapshot</url> |
|
</snapshotRepository> |
|
</distributionManagement> |
|
</profile> |
|
<profile> |
|
<id>milestone</id> |
|
<distributionManagement> |
|
<repository> |
|
<id>spring-repo-milestone</id> |
|
<name>Spring Milestone Repository</name> |
|
<url>https://repo.springsource.org/libs-milestone-local</url> |
|
</repository> |
|
</distributionManagement> |
|
</profile> |
|
<profile> |
|
<id>central</id> |
|
<distributionManagement> |
|
<snapshotRepository> |
|
<id>sonatype-nexus-snapshots</id> |
|
<name>Sonatype Nexus Snapshots</name> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
|
</snapshotRepository> |
|
<repository> |
|
<id>sonatype-nexus-staging</id> |
|
<name>Nexus Release Repository</name> |
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
|
</repository> |
|
</distributionManagement> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-gpg-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>sign-artifacts</id> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>sign</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
<profile> |
|
<id>bootstrap</id> |
|
<!-- deactivate when released --> |
|
<activation><activeByDefault>true</activeByDefault></activation> |
|
<repositories> |
|
<repository> |
|
<id>spring-snapshots</id> |
|
<name>Spring Snapshots</name> |
|
<url>http://maven.springframework.org/snapshot</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
</repository> |
|
<repository> |
|
<id>spring-milestones</id> |
|
<name>Spring Milestones</name> |
|
<url>http://maven.springframework.org/milestone</url> |
|
<snapshots> |
|
<enabled>false</enabled> |
|
</snapshots> |
|
</repository> |
|
</repositories> |
|
</profile> |
|
</profiles> |
|
<build> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>2.4</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-clean-plugin</artifactId> |
|
<version>2.5</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.0</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-deploy-plugin</artifactId> |
|
<version>2.7</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<version>2.6</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-eclipse-plugin</artifactId> |
|
<version>2.9</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-failsafe-plugin</artifactId> |
|
<version>2.13</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-install-plugin</artifactId> |
|
<version>2.4</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>2.4</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-resources-plugin</artifactId> |
|
<version>2.6</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>2.0</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.13</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-site-plugin</artifactId> |
|
<version>3.2</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>2.2.1</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>2.9</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-exec-plugin</artifactId> |
|
<version>1.2.1</version> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>${java.version}</source> |
|
<target>${java.version}</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-eclipse-plugin</artifactId> |
|
<configuration> |
|
<useProjectReferences>false</useProjectReferences> |
|
<additionalConfig> |
|
<file> |
|
<name>.settings/org.eclipse.jdt.ui.prefs</name> |
|
<url>http://static.springsource.org/sts/jdtconfig/org.eclipse.jdt.ui.prefs</url> |
|
</file> |
|
<file> |
|
<name>.settings/org.eclipse.jdt.core.prefs</name> |
|
<url>http://static.springsource.org/sts/jdtconfig/org.eclipse.jdt.core.prefs</url> |
|
</file> |
|
</additionalConfig> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<!-- is using JDK 8 |
|
<additionalparam>-Xdoclint:none -quiet</additionalparam> |
|
--> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-sources</id> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>jar-no-fork</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</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>junit:junit</junitArtifactName> |
|
<systemPropertyVariables> |
|
<java.security.egd>file:/dev/./urandom</java.security.egd> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>versions-maven-plugin</artifactId> |
|
<version>2.0</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>commons-httpclient</groupId> |
|
<artifactId>commons-httpclient</artifactId> |
|
<version>3.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
<version>3.0.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hibernate.javax.persistence</groupId> |
|
<artifactId>hibernate-jpa-2.0-api</artifactId> |
|
<version>1.0.1.Final</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.11</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>jcl-over-slf4j</artifactId> |
|
<version>1.7.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.7.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<version>1.7.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-jdk14</artifactId> |
|
<version>1.7.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<version>1.2.17</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
<version>1.0.7</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>2.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
<version>2.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.datatype</groupId> |
|
<artifactId>jackson-datatype-joda</artifactId> |
|
<version>2.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tomcat.embed</groupId> |
|
<artifactId>tomcat-embed-core</artifactId> |
|
<version>${tomcat.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tomcat.embed</groupId> |
|
<artifactId>tomcat-embed-logging-juli</artifactId> |
|
<version>${tomcat.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tomcat.embed</groupId> |
|
<artifactId>tomcat-embed-jasper</artifactId> |
|
<version>${tomcat.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tomcat</groupId> |
|
<artifactId>tomcat-jdbc</artifactId> |
|
<version>${tomcat.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy</artifactId> |
|
<version>2.1.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-webapp</artifactId> |
|
<version>8.1.9.v20130131</version> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>javax.servlet</artifactId> |
|
<groupId>org.eclipse.jetty.orbit</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-util</artifactId> |
|
<version>8.1.9.v20130131</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-jsp</artifactId> |
|
<version>8.1.9.v20130131</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-annotations</artifactId> |
|
<version>8.1.9.v20130131</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-library</artifactId> |
|
<version>1.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hibernate</groupId> |
|
<artifactId>hibernate-entitymanager</artifactId> |
|
<version>4.1.9.Final</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>2.2.9</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<version>1.9.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-javaconfig</artifactId> |
|
<version>${spring.security.javaconfig.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-aop</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-expression</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-orm</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
<version>${spring.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.batch</groupId> |
|
<artifactId>spring-batch-core</artifactId> |
|
<version>${spring.batch.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-core</artifactId> |
|
<version>${spring.integration.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-jpa</artifactId> |
|
<version>1.3.0.RELEASE</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-orm</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.yaml</groupId> |
|
<artifactId>snakeyaml</artifactId> |
|
<version>1.12</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-library</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|