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.
56 lines
1.9 KiB
56 lines
1.9 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>1.2.9.BUILD-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>spring-boot-dependency-tools</artifactId> |
|
<name>Spring Boot Dependency Tools</name> |
|
<description>Spring Boot Dependency Tools</description> |
|
<url>http://projects.spring.io/spring-boot/</url> |
|
<organization> |
|
<name>Pivotal Software, Inc.</name> |
|
<url>http://www.spring.io</url> |
|
</organization> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
<generated.pom.dir>${project.build.directory}/generated-resources/org/springframework/boot/dependency/tools</generated.pom.dir> |
|
</properties> |
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>${project.build.directory}/generated-resources</directory> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-dependency-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>copy-effective-pom</id> |
|
<phase>generate-resources</phase> |
|
<goals> |
|
<goal>copy</goal> |
|
</goals> |
|
<configuration> |
|
<artifactItems> |
|
<artifactItem> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-versions</artifactId> |
|
<version>${project.version}</version> |
|
<type>effective-pom</type> |
|
<overWrite>true</overWrite> |
|
<outputDirectory>${generated.pom.dir}</outputDirectory> |
|
<destFileName>effective-pom.xml</destFileName> |
|
</artifactItem> |
|
</artifactItems> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|