|
|
|
@ -11,6 +11,7 @@ |
|
|
|
<artifactId>spring-boot-parent</artifactId> |
|
|
|
<artifactId>spring-boot-parent</artifactId> |
|
|
|
<packaging>pom</packaging> |
|
|
|
<packaging>pom</packaging> |
|
|
|
<properties> |
|
|
|
<properties> |
|
|
|
|
|
|
|
<aether.version>0.9.0.M3</aether.version> |
|
|
|
<java.version>1.6</java.version> |
|
|
|
<java.version>1.6</java.version> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
@ -253,6 +254,57 @@ |
|
|
|
<artifactId>sonar-maven-plugin</artifactId> |
|
|
|
<artifactId>sonar-maven-plugin</artifactId> |
|
|
|
<version>2.0</version> |
|
|
|
<version>2.0</version> |
|
|
|
</plugin> |
|
|
|
</plugin> |
|
|
|
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings |
|
|
|
|
|
|
|
only. It has no influence on the Maven build itself. --> |
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
|
|
|
<groupId>org.eclipse.m2e</groupId> |
|
|
|
|
|
|
|
<artifactId>lifecycle-mapping</artifactId> |
|
|
|
|
|
|
|
<version>1.0.0</version> |
|
|
|
|
|
|
|
<configuration> |
|
|
|
|
|
|
|
<lifecycleMappingMetadata> |
|
|
|
|
|
|
|
<pluginExecutions> |
|
|
|
|
|
|
|
<pluginExecution> |
|
|
|
|
|
|
|
<pluginExecutionFilter> |
|
|
|
|
|
|
|
<groupId> |
|
|
|
|
|
|
|
org.apache.maven.plugins |
|
|
|
|
|
|
|
</groupId> |
|
|
|
|
|
|
|
<artifactId> |
|
|
|
|
|
|
|
maven-enforcer-plugin |
|
|
|
|
|
|
|
</artifactId> |
|
|
|
|
|
|
|
<versionRange> |
|
|
|
|
|
|
|
[1.3.1,) |
|
|
|
|
|
|
|
</versionRange> |
|
|
|
|
|
|
|
<goals> |
|
|
|
|
|
|
|
<goal>enforce-once</goal> |
|
|
|
|
|
|
|
</goals> |
|
|
|
|
|
|
|
</pluginExecutionFilter> |
|
|
|
|
|
|
|
<action> |
|
|
|
|
|
|
|
<ignore></ignore> |
|
|
|
|
|
|
|
</action> |
|
|
|
|
|
|
|
</pluginExecution> |
|
|
|
|
|
|
|
<pluginExecution> |
|
|
|
|
|
|
|
<pluginExecutionFilter> |
|
|
|
|
|
|
|
<groupId> |
|
|
|
|
|
|
|
org.apache.maven.plugins |
|
|
|
|
|
|
|
</groupId> |
|
|
|
|
|
|
|
<artifactId> |
|
|
|
|
|
|
|
maven-dependency-plugin |
|
|
|
|
|
|
|
</artifactId> |
|
|
|
|
|
|
|
<versionRange> |
|
|
|
|
|
|
|
[2.8,) |
|
|
|
|
|
|
|
</versionRange> |
|
|
|
|
|
|
|
<goals> |
|
|
|
|
|
|
|
<goal>copy</goal> |
|
|
|
|
|
|
|
</goals> |
|
|
|
|
|
|
|
</pluginExecutionFilter> |
|
|
|
|
|
|
|
<action> |
|
|
|
|
|
|
|
<ignore></ignore> |
|
|
|
|
|
|
|
</action> |
|
|
|
|
|
|
|
</pluginExecution> |
|
|
|
|
|
|
|
</pluginExecutions> |
|
|
|
|
|
|
|
</lifecycleMappingMetadata> |
|
|
|
|
|
|
|
</configuration> |
|
|
|
|
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</plugins> |
|
|
|
</pluginManagement> |
|
|
|
</pluginManagement> |
|
|
|
<plugins> |
|
|
|
<plugins> |
|
|
|
@ -281,7 +333,21 @@ |
|
|
|
</plugin> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
<artifactId>maven-enforcer-plugin</artifactId> |
|
|
|
<artifactId>maven-enforcer-plugin</artifactId> |
|
|
|
<version>1.3.1</version> |
|
|
|
<executions> |
|
|
|
|
|
|
|
<execution> |
|
|
|
|
|
|
|
<id>enforce-rules</id> |
|
|
|
|
|
|
|
<goals> |
|
|
|
|
|
|
|
<goal>enforce-once</goal> |
|
|
|
|
|
|
|
</goals> |
|
|
|
|
|
|
|
<configuration> |
|
|
|
|
|
|
|
<rules> |
|
|
|
|
|
|
|
<requireJavaVersion> |
|
|
|
|
|
|
|
<version>(1.7,1.8)</version> |
|
|
|
|
|
|
|
</requireJavaVersion> |
|
|
|
|
|
|
|
</rules> |
|
|
|
|
|
|
|
</configuration> |
|
|
|
|
|
|
|
</execution> |
|
|
|
|
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
<artifactId>maven-jar-plugin</artifactId> |
|
|
|
<artifactId>maven-jar-plugin</artifactId> |
|
|
|
@ -406,7 +472,7 @@ |
|
|
|
<repository> |
|
|
|
<repository> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<url>http://maven.springframework.org/milestone</url> |
|
|
|
<url>http://repo.spring.io/milestone</url> |
|
|
|
<snapshots> |
|
|
|
<snapshots> |
|
|
|
<enabled>false</enabled> |
|
|
|
<enabled>false</enabled> |
|
|
|
</snapshots> |
|
|
|
</snapshots> |
|
|
|
@ -414,7 +480,7 @@ |
|
|
|
<repository> |
|
|
|
<repository> |
|
|
|
<id>spring-snapshots</id> |
|
|
|
<id>spring-snapshots</id> |
|
|
|
<name>Spring Snapshots</name> |
|
|
|
<name>Spring Snapshots</name> |
|
|
|
<url>http://maven.springframework.org/snapshot</url> |
|
|
|
<url>http://repo.spring.io/snapshot</url> |
|
|
|
<snapshots> |
|
|
|
<snapshots> |
|
|
|
<enabled>true</enabled> |
|
|
|
<enabled>true</enabled> |
|
|
|
</snapshots> |
|
|
|
</snapshots> |
|
|
|
@ -424,7 +490,7 @@ |
|
|
|
<pluginRepository> |
|
|
|
<pluginRepository> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<url>http://maven.springframework.org/milestone</url> |
|
|
|
<url>http://repo.spring.io/milestone</url> |
|
|
|
<snapshots> |
|
|
|
<snapshots> |
|
|
|
<enabled>false</enabled> |
|
|
|
<enabled>false</enabled> |
|
|
|
</snapshots> |
|
|
|
</snapshots> |
|
|
|
@ -432,7 +498,7 @@ |
|
|
|
<pluginRepository> |
|
|
|
<pluginRepository> |
|
|
|
<id>spring-snapshots</id> |
|
|
|
<id>spring-snapshots</id> |
|
|
|
<name>Spring Snapshots</name> |
|
|
|
<name>Spring Snapshots</name> |
|
|
|
<url>http://maven.springframework.org/snapshot</url> |
|
|
|
<url>http://repo.spring.io/snapshot</url> |
|
|
|
<snapshots> |
|
|
|
<snapshots> |
|
|
|
<enabled>true</enabled> |
|
|
|
<enabled>true</enabled> |
|
|
|
</snapshots> |
|
|
|
</snapshots> |
|
|
|
@ -447,7 +513,7 @@ |
|
|
|
<repository> |
|
|
|
<repository> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<url>http://maven.springframework.org/milestone</url> |
|
|
|
<url>http://repo.spring.io/milestone</url> |
|
|
|
<snapshots> |
|
|
|
<snapshots> |
|
|
|
<enabled>false</enabled> |
|
|
|
<enabled>false</enabled> |
|
|
|
</snapshots> |
|
|
|
</snapshots> |
|
|
|
@ -457,7 +523,7 @@ |
|
|
|
<pluginRepository> |
|
|
|
<pluginRepository> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<id>spring-milestones</id> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<name>Spring Milestones</name> |
|
|
|
<url>http://maven.springframework.org/milestone</url> |
|
|
|
<url>http://repo.spring.io/snapshot</url> |
|
|
|
<snapshots> |
|
|
|
<snapshots> |
|
|
|
<enabled>false</enabled> |
|
|
|
<enabled>false</enabled> |
|
|
|
</snapshots> |
|
|
|
</snapshots> |
|
|
|
@ -488,8 +554,6 @@ |
|
|
|
</profile> |
|
|
|
</profile> |
|
|
|
<profile> |
|
|
|
<profile> |
|
|
|
<id>release</id> |
|
|
|
<id>release</id> |
|
|
|
<activation> |
|
|
|
|
|
|
|
</activation> |
|
|
|
|
|
|
|
<build> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
@ -513,21 +577,5 @@ |
|
|
|
</plugins> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
</build> |
|
|
|
</profile> |
|
|
|
</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> |
|
|
|
</profiles> |
|
|
|
</project> |
|
|
|
</project> |
|
|
|
|