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.
814 lines
24 KiB
814 lines
24 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.boot</groupId> |
|
<artifactId>spring-boot-parent</artifactId> |
|
<version>0.5.0.BUILD-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
<prerequisites> |
|
<maven>3.0.0</maven> |
|
</prerequisites> |
|
<properties> |
|
<main.basedir>${basedir}</main.basedir> |
|
<java.version>1.6</java.version> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<maven.version>3.0.5</maven.version> |
|
<spring.version>4.0.0.M2</spring.version> |
|
<spring.security.version>3.2.0.M2</spring.security.version> |
|
<spring.integration.version>2.2.4.RELEASE</spring.integration.version> |
|
<spring.batch.version>2.2.0.RELEASE</spring.batch.version> |
|
<groovy.version>2.1.6</groovy.version> |
|
<gradle.version>1.6</gradle.version> |
|
<tomcat.version>7.0.42</tomcat.version> |
|
<jetty.version>8.1.9.v20130131</jetty.version> |
|
<aspectj.version>1.7.3</aspectj.version> |
|
<reactor.version>1.0.0.M1</reactor.version> |
|
</properties> |
|
<scm> |
|
<url>http://github.com/SpringSource/spring-boot</url> |
|
<connection>scm:git:git://github.com/SpringSource/spring-boot.git</connection> |
|
<developerConnection>scm:git:ssh://git@github.com/SpringSource/spring-boot.git</developerConnection> |
|
</scm> |
|
<developers> |
|
<developer> |
|
<id>spring</id> |
|
<name>SpringSource</name> |
|
<url>http://www.springsource.org</url> |
|
</developer> |
|
</developers> |
|
<modules> |
|
<module>spring-boot</module> |
|
<module>spring-boot-autoconfigure</module> |
|
<module>spring-boot-tools</module> |
|
<module>spring-boot-actuator</module> |
|
<module>spring-boot-starters</module> |
|
<module>spring-boot-cli</module> |
|
<module>spring-boot-integration-tests</module> |
|
</modules> |
|
<repositories> |
|
<repository> |
|
<id>spring-ext</id> |
|
<url>http://repo.springsource.org/ext-release-local/</url> |
|
<releases> |
|
<enabled>true</enabled> |
|
</releases> |
|
<snapshots> |
|
<enabled>false</enabled> |
|
</snapshots> |
|
</repository> |
|
<repository> |
|
<id>gradle</id> |
|
<url>http://repo.gradle.org/gradle/libs-releases-local</url> |
|
<releases> |
|
<enabled>true</enabled> |
|
</releases> |
|
<snapshots> |
|
<enabled>false</enabled> |
|
</snapshots> |
|
</repository> |
|
</repositories> |
|
<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.1</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-deploy-plugin</artifactId> |
|
<version>2.7</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<version>2.8</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-eclipse-plugin</artifactId> |
|
<version>2.9</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-failsafe-plugin</artifactId> |
|
<version>2.15</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-install-plugin</artifactId> |
|
<version>2.4</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-invoker-plugin</artifactId> |
|
<version>1.8</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>2.4</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>2.9</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-plugin-plugin</artifactId> |
|
<version>3.2</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-resources-plugin</artifactId> |
|
<version>2.6</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>2.1</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-surefire-plugin</artifactId> |
|
<version>2.15</version> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-war-plugin</artifactId> |
|
<version>2.3</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>build-helper-maven-plugin</artifactId> |
|
<version>1.8</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>exec-maven-plugin</artifactId> |
|
<version>1.2.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>sonar-maven-plugin</artifactId> |
|
<version>2.0</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>versions-maven-plugin</artifactId> |
|
<version>2.0</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> |
|
<location>${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs</location> |
|
</file> |
|
<file> |
|
<name>.settings/org.eclipse.jdt.core.prefs</name> |
|
<location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location> |
|
</file> |
|
</additionalConfig> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-sources</id> |
|
<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> |
|
<systemPropertyVariables> |
|
<java.security.egd>file:/dev/./urandom</java.security.egd> |
|
</systemPropertyVariables> |
|
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>versions-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
<version>1.0.13</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>2.2.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
<version>2.2.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.datatype</groupId> |
|
<artifactId>jackson-datatype-joda</artifactId> |
|
<version>2.2.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-dbcp</groupId> |
|
<artifactId>commons-dbcp</artifactId> |
|
<version>1.4</version> |
|
</dependency> |
|
<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>javax.servlet</groupId> |
|
<artifactId>jstl</artifactId> |
|
<version>1.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.11</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<version>1.2.17</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.sf.jopt-simple</groupId> |
|
<artifactId>jopt-simple</artifactId> |
|
<version>4.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>nz.net.ultraq.thymeleaf</groupId> |
|
<artifactId>thymeleaf-layout-dialect</artifactId> |
|
<version>1.1.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.ivy</groupId> |
|
<artifactId>ivy</artifactId> |
|
<version>2.3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-archiver</artifactId> |
|
<version>2.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-artifact</artifactId> |
|
<version>${maven.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-core</artifactId> |
|
<version>${maven.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-model</artifactId> |
|
<version>${maven.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-plugin-api</artifactId> |
|
<version>${maven.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-settings</artifactId> |
|
<version>${maven.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>2.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven.plugin-tools</groupId> |
|
<artifactId>maven-plugin-annotations</artifactId> |
|
<version>3.2</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.apache.tomcat</groupId> |
|
<artifactId>tomcat-jsp-api</artifactId> |
|
<version>${tomcat.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjrt</artifactId> |
|
<version>${aspectj.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.aspectj</groupId> |
|
<artifactId>aspectjweaver</artifactId> |
|
<version>${aspectj.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy</artifactId> |
|
<version>${groovy.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
<version>${groovy.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-templates</artifactId> |
|
<version>${groovy.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.plexus</groupId> |
|
<artifactId>plexus-archiver</artifactId> |
|
<version>2.4.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.plexus</groupId> |
|
<artifactId>plexus-utils</artifactId> |
|
<version>3.0.10</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-webapp</artifactId> |
|
<version>${jetty.version}</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>${jetty.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-jsp</artifactId> |
|
<version>${jetty.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.jetty</groupId> |
|
<artifactId>jetty-annotations</artifactId> |
|
<version>${jetty.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-core</artifactId> |
|
<version>${gradle.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-base-services</artifactId> |
|
<version>${gradle.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-base-services-groovy</artifactId> |
|
<version>${gradle.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-plugins</artifactId> |
|
<version>${gradle.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-library</artifactId> |
|
<version>1.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.h2database</groupId> |
|
<artifactId>h2</artifactId> |
|
<version>1.3.172</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hibernate</groupId> |
|
<artifactId>hibernate-entitymanager</artifactId> |
|
<version>4.2.1.Final</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>org.hibernate</groupId> |
|
<artifactId>hibernate-validator</artifactId> |
|
<version>4.3.1.Final</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>2.2.9</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectreactor</groupId> |
|
<artifactId>reactor-spring</artifactId> |
|
<version>${reactor.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<version>1.9.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.ow2.asm</groupId> |
|
<artifactId>asm</artifactId> |
|
<version>4.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>jcl-over-slf4j</artifactId> |
|
<version>1.7.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.7.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>jul-to-slf4j</artifactId> |
|
<version>1.7.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
<version>1.7.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-jdk14</artifactId> |
|
<version>1.7.5</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-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-context-support</artifactId> |
|
<version>${spring.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>quartz</groupId> |
|
<artifactId>quartz</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-expression</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-jms</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-oxm</artifactId> |
|
<version>${spring.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-lang</groupId> |
|
<artifactId>commons-lang</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</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</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.batch</groupId> |
|
<artifactId>spring-batch-core</artifactId> |
|
<version>${spring.batch.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-jpa</artifactId> |
|
<version>1.3.2.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.springframework.integration</groupId> |
|
<artifactId>spring-integration-core</artifactId> |
|
<version>${spring.integration.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-file</artifactId> |
|
<version>${spring.integration.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-http</artifactId> |
|
<version>${spring.integration.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-ip</artifactId> |
|
<version>${spring.integration.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-stream</artifactId> |
|
<version>${spring.integration.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-config</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-web</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-acl</artifactId> |
|
<version>${spring.security.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.thymeleaf</groupId> |
|
<artifactId>thymeleaf</artifactId> |
|
<version>2.0.16</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.thymeleaf</groupId> |
|
<artifactId>thymeleaf-spring3</artifactId> |
|
<version>2.0.16</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.thymeleaf.extras</groupId> |
|
<artifactId>thymeleaf-extras-springsecurity3</artifactId> |
|
<version>2.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.yaml</groupId> |
|
<artifactId>snakeyaml</artifactId> |
|
<version>1.12</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.zeroturnaround</groupId> |
|
<artifactId>zt-zip</artifactId> |
|
<version>1.6</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> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
<distributionManagement> |
|
<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-boot/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>milestone</id> |
|
<activation> |
|
<activeByDefault>false</activeByDefault> |
|
</activation> |
|
<distributionManagement> |
|
<repository> |
|
<id>spring-repo-milestone</id> |
|
<name>Spring Milestone Repository</name> |
|
<url>http://repo.springsource.org/libs-milestone-local</url> |
|
</repository> |
|
</distributionManagement> |
|
</profile> |
|
<profile> |
|
<id>development</id> |
|
<activation> |
|
<activeByDefault>false</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> |
|
<pluginRepositories> |
|
<pluginRepository> |
|
<id>spring-snapshots</id> |
|
<name>Spring Snapshots</name> |
|
<url>http://maven.springframework.org/snapshot</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
</pluginRepository> |
|
<pluginRepository> |
|
<id>spring-milestones</id> |
|
<name>Spring Milestones</name> |
|
<url>http://maven.springframework.org/milestone</url> |
|
<snapshots> |
|
<enabled>false</enabled> |
|
</snapshots> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
</profile> |
|
<profile> |
|
<id>jdk8</id> |
|
<activation> |
|
<jdk>1.8</jdk> |
|
</activation> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<configuration> |
|
<additionalparam>-Xdoclint:none -quiet</additionalparam> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
</profiles> |
|
</project>
|
|
|