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.
97 lines
3.0 KiB
97 lines
3.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-dependencies</artifactId> |
|
<version>1.1.13.BUILD-SNAPSHOT</version> |
|
<relativePath>../spring-boot-dependencies</relativePath> |
|
</parent> |
|
<artifactId>spring-boot-versions</artifactId> |
|
<packaging>pom</packaging> |
|
<name>Spring Boot Versions</name> |
|
<description>Spring Boot Versions Property File</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> |
|
</properties> |
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>${project.build.directory}/generated-resources</directory> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-help-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>generate-effective-dependencies-pom</id> |
|
<phase>generate-resources</phase> |
|
<goals> |
|
<goal>effective-pom</goal> |
|
</goals> |
|
<configuration> |
|
<output>${project.build.directory}/effective-pom/spring-boot-versions.xml</output> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>xml-maven-plugin</artifactId> |
|
<version>1.0</version> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>transform</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<transformationSets> |
|
<transformationSet> |
|
<dir>${project.build.directory}/effective-pom</dir> |
|
<stylesheet>src/main/xslt/dependency-management-to-versions.xsl</stylesheet> |
|
<fileMappers> |
|
<fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper"> |
|
<targetExtension>.properties</targetExtension> |
|
</fileMapper> |
|
</fileMappers> |
|
<outputDir>${project.build.directory}/generated-resources</outputDir> |
|
</transformationSet> |
|
</transformationSets> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>build-helper-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-artifacts</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>attach-artifact</goal> |
|
</goals> |
|
<configuration> |
|
<artifacts> |
|
<artifact> |
|
<file>${project.build.directory}/generated-resources/spring-boot-versions.properties</file> |
|
<type>properties</type> |
|
</artifact> |
|
<artifact> |
|
<file>${project.build.directory}/effective-pom/spring-boot-versions.xml</file> |
|
<type>effective-pom</type> |
|
</artifact> |
|
</artifacts> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|