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.
142 lines
4.0 KiB
142 lines
4.0 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> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-tools</artifactId> |
|
<version>0.5.0.M2</version> |
|
</parent> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<packaging>maven-plugin</packaging> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-boot-loader-tools</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-archiver</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-artifact</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-model</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-plugin-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-settings</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.plexus</groupId> |
|
<artifactId>plexus-archiver</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.codehaus.plexus</groupId> |
|
<artifactId>plexus-container-default</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.codehaus.plexus</groupId> |
|
<artifactId>plexus-component-api</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.plexus</groupId> |
|
<artifactId>plexus-utils</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.ow2.asm</groupId> |
|
<artifactId>asm</artifactId> |
|
</dependency> |
|
<!-- Optional --> |
|
<dependency> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<optional>true</optional> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>asm</artifactId> |
|
<groupId>asm</groupId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>asm-commons</artifactId> |
|
<groupId>asm</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<!-- Provided --> |
|
<dependency> |
|
<groupId>org.apache.maven.plugin-tools</groupId> |
|
<artifactId>maven-plugin-annotations</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-plugin-plugin</artifactId> |
|
<configuration> |
|
<goalPrefix>spring-boot</goalPrefix> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>default-descriptor</id> |
|
<goals> |
|
<goal>descriptor</goal> |
|
</goals> |
|
<phase>process-classes</phase> |
|
</execution> |
|
<execution> |
|
<id>help-descriptor</id> |
|
<goals> |
|
<goal>helpmojo</goal> |
|
</goals> |
|
<phase>process-classes</phase> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-invoker-plugin</artifactId> |
|
<configuration> |
|
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
|
<settingsFile>src/it/settings.xml</settingsFile> |
|
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> |
|
<postBuildHookScript>verify</postBuildHookScript> |
|
<addTestClassPath>true</addTestClassPath> |
|
<skipInvocation>${skipTests}</skipInvocation> |
|
<streamLogs>true</streamLogs> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>integration-test</id> |
|
<goals> |
|
<goal>install</goal> |
|
<goal>run</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|