platform-versions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.spring.platform</groupId> <artifactId>platform-versions</artifactId> <version>1.1.5.RELEASE</version> </dependency>
<?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>io.spring.platform</groupId> <artifactId>platform-build</artifactId> <version>1.1.5.RELEASE</version> </parent> <artifactId>platform-versions</artifactId> <packaging>pom</packaging> <name>Spring IO Platform versions</name> <description>Spring IO Platform versions</description> <url>http://platform.spring.io/platform/</url> <organization> <name>Pivotal Software, Inc.</name> <url>http://www.spring.io</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:git:https://github.com/spring-io/platform</connection> <url>https://github.com/spring-io/platform</url> </scm> <developers> <developer> <id>wilkinsona</id> <name>Andy Wilkinson</name> <email>awilkinson at pivotal.io</email> <organization>Pivotal Software, Inc.</organization> <organizationUrl>http://www.spring.io</organizationUrl> <roles> <role>Project lead</role> </roles> </developer> </developers> <dependencies> <dependency> <groupId>io.spring.platform</groupId> <artifactId>platform-bom</artifactId> <version>1.1.5.RELEASE</version> <type>pom</type> </dependency> </dependencies> <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> <version>2.8</version> <executions> <execution> <id>copy</id> <phase>generate-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>io.spring.platform</groupId> <artifactId>platform-bom</artifactId> <version>${project.version}</version> <type>properties</type> <overWrite>true</overWrite> <outputDirectory>${project.outputDirectory}</outputDirectory> </artifactItem> </artifactItems> <stripVersion>true</stripVersion> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <version>1.1</version> <executions> <execution> <goals> <goal>execute</goal> </goals> <phase>test</phase> </execution> </executions> <configuration> <scripts> <script>new File(project.build.directory, 'dependency/platform-bom.properties').append('\n')</script> </scripts> </configuration> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.3.8</version> </dependency> </dependencies> <inherited>false</inherited> </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}/dependency/platform-bom.properties</file> <type>properties</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>