32 changed files with 1139 additions and 833 deletions
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 |
||||
http://maven.apache.org/xsd/settings-1.0.0.xsd"> |
||||
<activeProfiles> |
||||
<activeProfile>@profile@</activeProfile> |
||||
</activeProfiles> |
||||
</settings> |
||||
@ -1,18 +0,0 @@
@@ -1,18 +0,0 @@
|
||||
<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-build-all</artifactId> |
||||
<version>0.5.0.BUILD-SNAPSHOT</version> |
||||
<packaging>pom</packaging> |
||||
<prerequisites> |
||||
<maven>3.0.0</maven> |
||||
</prerequisites> |
||||
<properties> |
||||
<main.basedir>${basedir}/../..</main.basedir> |
||||
</properties> |
||||
<modules> |
||||
<module>../..</module> |
||||
<module>../../spring-boot-samples</module> |
||||
</modules> |
||||
</project> |
||||
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
if [ -z "$1" ]; then |
||||
echo "Specify the new version" |
||||
exit 1 |
||||
fi |
||||
cd ../../spring-boot-dependencies |
||||
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1 |
||||
cd .. |
||||
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1 |
||||
cd buildhelper/all |
||||
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1 |
||||
mvn -N versions:update-child-modules -DgenerateBackupPoms=false |
||||
cd ../../spring-boot-starters |
||||
mvn -N validate |
||||
cd ../buildhelper/all |
||||
@ -0,0 +1,589 @@
@@ -0,0 +1,589 @@
|
||||
<?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> |
||||
<parent> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-build</artifactId> |
||||
<version>0.5.0.BUILD-SNAPSHOT</version> |
||||
</parent> |
||||
<artifactId>spring-boot-parent</artifactId> |
||||
<packaging>pom</packaging> |
||||
<properties> |
||||
<java.version>1.6</java.version> |
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
||||
<maven.version>3.0.5</maven.version> |
||||
</properties> |
||||
<developers> |
||||
<developer> |
||||
<id>spring</id> |
||||
<name>SpringSource</name> |
||||
<url>http://www.springsource.org</url> |
||||
</developer> |
||||
</developers> |
||||
<prerequisites> |
||||
<maven>3.0.0</maven> |
||||
</prerequisites> |
||||
<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> |
||||
<dependencyManagement> |
||||
<dependencies> |
||||
<!-- Additional Dependencies the consumers of spring-boot-build |
||||
will generally not need --> |
||||
<dependency> |
||||
<groupId>net.sf.jopt-simple</groupId> |
||||
<artifactId>jopt-simple</artifactId> |
||||
<version>4.5</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.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.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.ow2.asm</groupId> |
||||
<artifactId>asm</artifactId> |
||||
<version>4.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.zeroturnaround</groupId> |
||||
<artifactId>zt-zip</artifactId> |
||||
<version>1.6</version> |
||||
</dependency> |
||||
</dependencies> |
||||
</dependencyManagement> |
||||
<dependencies> |
||||
<!-- Generally Useful Test 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> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
</dependencies> |
||||
<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-invoker-plugin</artifactId> |
||||
<version>1.8</version> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-plugin-plugin</artifactId> |
||||
<version>3.2</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.codehaus.mojo</groupId> |
||||
<artifactId>sonar-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> |
||||
<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-enforcer-plugin</artifactId> |
||||
<version>1.3.1</version> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-jar-plugin</artifactId> |
||||
<configuration> |
||||
<archive> |
||||
<manifest> |
||||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
||||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
||||
</manifest> |
||||
</archive> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<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> |
||||
<artifactId>maven-war-plugin</artifactId> |
||||
<configuration> |
||||
<failOnMissingWebXml>false</failOnMissingWebXml> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
|
||||
<profiles> |
||||
|
||||
<!-- Prepare profile is used to build the spring-boot-maven-plugin (required |
||||
before full profile can run --> |
||||
<profile> |
||||
<id>prepare</id> |
||||
<properties> |
||||
<skipTests>true</skipTests> |
||||
</properties> |
||||
<modules> |
||||
<module>../spring-boot-tools</module> |
||||
</modules> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-antrun-plugin</artifactId> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>ant-contrib</groupId> |
||||
<artifactId>ant-contrib</artifactId> |
||||
<version>1.0b3</version> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>ant</groupId> |
||||
<artifactId>ant</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.apache.ant</groupId> |
||||
<artifactId>ant-nodeps</artifactId> |
||||
<version>1.8.1</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.tigris.antelope</groupId> |
||||
<artifactId>antelopetasks</artifactId> |
||||
<version>3.2.10</version> |
||||
</dependency> |
||||
</dependencies> |
||||
<executions> |
||||
<execution> |
||||
<id>generate-settings.xml</id> |
||||
<phase>verify</phase> |
||||
<goals> |
||||
<goal>run</goal> |
||||
</goals> |
||||
<inherited>false</inherited> |
||||
<configuration> |
||||
<target> |
||||
<taskdef resource="net/sf/antcontrib/antcontrib.properties" /> |
||||
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" /> |
||||
<var name="version-type" value="${project.version}" /> |
||||
<propertyregex property="version-type" override="true" |
||||
input="${version-type}" regexp=".*\.(.*)" replace="\1" /> |
||||
<propertyregex property="version-type" override="true" |
||||
input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" /> |
||||
<propertyregex property="version-type" override="true" |
||||
input="${version-type}" regexp="BUILD-(.*)" replace="\1" /> |
||||
<stringutil string="${version-type}" property="profile"> |
||||
<lowercase /> |
||||
</stringutil> |
||||
<echo message="Writing settings for ${profile} profile" /> |
||||
<copy file="settings-template.xml" tofile="../settings.xml" |
||||
overwrite="true"> |
||||
<filterset> |
||||
<filter token="profile" value="${profile}" /> |
||||
</filterset> |
||||
</copy> |
||||
</target> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<configuration> |
||||
<skip>true</skip> |
||||
</configuration> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
|
||||
<!-- Default profile runs locally, samples are launched via integration |
||||
tests to save needing explicit prepare phase --> |
||||
<profile> |
||||
<id>default</id> |
||||
<activation> |
||||
<activeByDefault>true</activeByDefault> |
||||
</activation> |
||||
<modules> |
||||
<module>../spring-boot-tools</module> |
||||
<module>../spring-boot</module> |
||||
<module>../spring-boot-autoconfigure</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-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</repository> |
||||
<repository> |
||||
<id>spring-snapshots</id> |
||||
<name>Spring Snapshots</name> |
||||
<url>http://maven.springframework.org/snapshot</url> |
||||
<snapshots> |
||||
<enabled>true</enabled> |
||||
</snapshots> |
||||
</repository> |
||||
</repositories> |
||||
<pluginRepositories> |
||||
<pluginRepository> |
||||
<id>spring-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>spring-snapshots</id> |
||||
<name>Spring Snapshots</name> |
||||
<url>http://maven.springframework.org/snapshot</url> |
||||
<snapshots> |
||||
<enabled>true</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
</pluginRepositories> |
||||
|
||||
</profile> |
||||
|
||||
<!-- Full profile runs everything directly, used during a release to ensure |
||||
that all version numbers are updated --> |
||||
<profile> |
||||
<id>full</id> |
||||
<modules> |
||||
<module>../spring-boot-tools</module> |
||||
<module>../spring-boot</module> |
||||
<module>../spring-boot-autoconfigure</module> |
||||
<module>../spring-boot-actuator</module> |
||||
<module>../spring-boot-starters</module> |
||||
<module>../spring-boot-cli</module> |
||||
<module>../spring-boot-samples</module> |
||||
<module>../spring-boot-integration-tests</module> |
||||
</modules> |
||||
<build> |
||||
<plugins> |
||||
<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> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
|
||||
<!-- Profiles for release types --> |
||||
<profile> |
||||
<id>snapshot</id> |
||||
<repositories> |
||||
<repository> |
||||
<id>spring-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</repository> |
||||
<repository> |
||||
<id>spring-snapshots</id> |
||||
<name>Spring Snapshots</name> |
||||
<url>http://maven.springframework.org/snapshot</url> |
||||
<snapshots> |
||||
<enabled>true</enabled> |
||||
</snapshots> |
||||
</repository> |
||||
</repositories> |
||||
<pluginRepositories> |
||||
<pluginRepository> |
||||
<id>spring-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>spring-snapshots</id> |
||||
<name>Spring Snapshots</name> |
||||
<url>http://maven.springframework.org/snapshot</url> |
||||
<snapshots> |
||||
<enabled>true</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
</pluginRepositories> |
||||
</profile> |
||||
<profile> |
||||
<id>milestone</id> |
||||
<activation> |
||||
</activation> |
||||
<repositories> |
||||
<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-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
</pluginRepositories> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-enforcer-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>enforce-milestone-rules</id> |
||||
<goals> |
||||
<goal>enforce</goal> |
||||
</goals> |
||||
<configuration> |
||||
<rules> |
||||
<requireReleaseDeps /> |
||||
<requireReleaseVersion /> |
||||
</rules> |
||||
<fail>true</fail> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
<profile> |
||||
<id>release</id> |
||||
<activation> |
||||
</activation> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<artifactId>maven-enforcer-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>enforce-milestone-rules</id> |
||||
<goals> |
||||
<goal>enforce</goal> |
||||
</goals> |
||||
<configuration> |
||||
<rules> |
||||
<requireReleaseDeps /> |
||||
<requireReleaseVersion /> |
||||
</rules> |
||||
<fail>true</fail> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
</profile> |
||||
|
||||
<!-- JDK 8 Tweaks --> |
||||
<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> |
||||
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
<?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-full-build</artifactId> |
||||
<version>0.5.0.BUILD-SNAPSHOT</version> |
||||
<packaging>pom</packaging> |
||||
<modules> |
||||
<module>../</module> |
||||
<module>../spring-boot-dependencies</module> |
||||
<module>../spring-boot-parent</module> |
||||
<module>../spring-boot-tools</module> |
||||
<module>../spring-boot</module> |
||||
<module>../spring-boot-autoconfigure</module> |
||||
<module>../spring-boot-actuator</module> |
||||
<module>../spring-boot-starters</module> |
||||
<module>../spring-boot-cli</module> |
||||
<module>../spring-boot-samples</module> |
||||
<module>../spring-boot-integration-tests</module> |
||||
</modules> |
||||
<profiles> |
||||
<profile> |
||||
<id>full</id> |
||||
</profile> |
||||
</profiles> |
||||
</project> |
||||
@ -1,338 +0,0 @@
@@ -1,338 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
||||
<!-- This POM file that can be used as a parent for your own builds. It provides |
||||
generally useful dependencies and plugins. NOTE: If you are editing a local |
||||
checkout of this file, be sure to modify 'spring-boot-starter-parent/src/main/parent/pom.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/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-dependencies</artifactId> |
||||
<version>@{project.version}</version> |
||||
<relativePath>../../spring-boot-dependencies</relativePath> |
||||
</parent> |
||||
<artifactId>spring-boot-starter-parent</artifactId> |
||||
<packaging>pom</packaging> |
||||
<properties> |
||||
<spring.boot.version>@{project.version}</spring.boot.version> |
||||
<java.version>1.6</java.version> |
||||
</properties> |
||||
<dependencyManagement> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-core</artifactId> |
||||
<version>${spring.version}</version> |
||||
<exclusions> |
||||
<!-- Starters use SLF4J --> |
||||
<exclusion> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-actuator</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-actuator</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-web</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-tomcat</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-jetty</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-data-jpa</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-batch</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-integration</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-security</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-websocket</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
</dependencies> |
||||
</dependencyManagement> |
||||
<dependencies> |
||||
<!-- Generally Useful Test 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> |
||||
<exclusions> |
||||
<exclusion> |
||||
<groupId>commons-logging</groupId> |
||||
<artifactId>commons-logging</artifactId> |
||||
</exclusion> |
||||
</exclusions> |
||||
</dependency> |
||||
</dependencies> |
||||
<build> |
||||
<!-- Turn on filtering by default for application properties --> |
||||
<resources> |
||||
<resource> |
||||
<directory>src/main/resources</directory> |
||||
<filtering>true</filtering> |
||||
<includes> |
||||
<include>**/application.yml</include> |
||||
<include>**/application.propeties</include> |
||||
</includes> |
||||
</resource> |
||||
<resource> |
||||
<directory>src/main/resources</directory> |
||||
<excludes> |
||||
<exclude>**/application.yml</exclude> |
||||
<exclude>**/application.propeties</exclude> |
||||
</excludes> |
||||
</resource> |
||||
</resources> |
||||
<pluginManagement> |
||||
<plugins> |
||||
<!-- Apply more sensible defaults for user projects --> |
||||
<plugin> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<version>3.1</version> |
||||
<configuration> |
||||
<source>${java.version}</source> |
||||
<target>${java.version}</target> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-jar-plugin</artifactId> |
||||
<configuration> |
||||
<archive> |
||||
<manifest> |
||||
<mainClass>${start-class}</mainClass> |
||||
</manifest> |
||||
</archive> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-surefire-plugin</artifactId> |
||||
<version>2.15</version> |
||||
<configuration> |
||||
<includes> |
||||
<include>**/*Tests.java</include> |
||||
<include>**/*Test.java</include> |
||||
</includes> |
||||
<excludes> |
||||
<exclude>**/Abstract*.java</exclude> |
||||
</excludes> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<artifactId>maven-war-plugin</artifactId> |
||||
<configuration> |
||||
<failOnMissingWebXml>false</failOnMissingWebXml> |
||||
<archive> |
||||
<manifest> |
||||
<mainClass>${start-class}</mainClass> |
||||
</manifest> |
||||
</archive> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.codehaus.mojo</groupId> |
||||
<artifactId>exec-maven-plugin</artifactId> |
||||
<configuration> |
||||
<manifest> |
||||
<mainClass>${start-class}</mainClass> |
||||
</manifest> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>pl.project13.maven</groupId> |
||||
<artifactId>git-commit-id-plugin</artifactId> |
||||
<version>1.9</version> |
||||
<executions> |
||||
<execution> |
||||
<goals> |
||||
<goal>revision</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
<configuration> |
||||
<verbose>true</verbose> |
||||
<dateFormat>yyyy-MM-dd'T'HH:mm:ssZ</dateFormat> |
||||
<generateGitPropertiesFile>true</generateGitPropertiesFile> |
||||
<generateGitPropertiesFilename>src/main/resources/git.properties</generateGitPropertiesFilename> |
||||
</configuration> |
||||
</plugin> |
||||
<!-- Support our own plugin --> |
||||
<plugin> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
<executions> |
||||
<execution> |
||||
<goals> |
||||
<goal>repackage</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
<configuration> |
||||
<mainClass>${start-class}</mainClass> |
||||
</configuration> |
||||
</plugin> |
||||
<!-- Support shade packaging (if the user does not want to use our plugin --> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-shade-plugin</artifactId> |
||||
<version>2.1</version> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
<version>${spring.boot.version}</version> |
||||
</dependency> |
||||
</dependencies> |
||||
<configuration> |
||||
<keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> |
||||
<createDependencyReducedPom>true</createDependencyReducedPom> |
||||
<filters> |
||||
<filter> |
||||
<artifact>*:*</artifact> |
||||
<excludes> |
||||
<exclude>META-INF/*.SF</exclude> |
||||
<exclude>META-INF/*.DSA</exclude> |
||||
<exclude>META-INF/*.RSA</exclude> |
||||
</excludes> |
||||
</filter> |
||||
</filters> |
||||
</configuration> |
||||
<executions> |
||||
<execution> |
||||
<phase>package</phase> |
||||
<goals> |
||||
<goal>shade</goal> |
||||
</goals> |
||||
<configuration> |
||||
<transformers> |
||||
<transformer |
||||
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
||||
<resource>META-INF/spring.handlers</resource> |
||||
</transformer> |
||||
<transformer |
||||
implementation="org.springframework.maven.packaging.PropertiesMergingResourceTransformer"> |
||||
<resource>META-INF/spring.factories</resource> |
||||
</transformer> |
||||
<transformer |
||||
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> |
||||
<resource>META-INF/spring.schemas</resource> |
||||
</transformer> |
||||
<transformer |
||||
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> |
||||
<transformer |
||||
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
||||
<mainClass>${start-class}</mainClass> |
||||
</transformer> |
||||
</transformers> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
</pluginManagement> |
||||
</build> |
||||
<profiles> |
||||
<profile> |
||||
<id>spring-snapshot-build</id> |
||||
<activation> |
||||
<activeByDefault>@{spring-snapshot-build-profile-active}</activeByDefault> |
||||
</activation> |
||||
<repositories> |
||||
<repository> |
||||
<id>spring-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</repository> |
||||
<repository> |
||||
<id>spring-snapshots</id> |
||||
<name>Spring Snapshots</name> |
||||
<url>http://maven.springframework.org/snapshot</url> |
||||
<snapshots> |
||||
<enabled>true</enabled> |
||||
</snapshots> |
||||
</repository> |
||||
</repositories> |
||||
<pluginRepositories> |
||||
<pluginRepository> |
||||
<id>spring-milestones</id> |
||||
<name>Spring Milestones</name> |
||||
<url>http://maven.springframework.org/milestone</url> |
||||
<snapshots> |
||||
<enabled>false</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
<pluginRepository> |
||||
<id>spring-snapshots</id> |
||||
<name>Spring Snapshots</name> |
||||
<url>http://maven.springframework.org/snapshot</url> |
||||
<snapshots> |
||||
<enabled>true</enabled> |
||||
</snapshots> |
||||
</pluginRepository> |
||||
</pluginRepositories> |
||||
</profile> |
||||
</profiles> |
||||
</project> |
||||
Loading…
Reference in new issue