Fix pom/gradle extracts to have the right artifactId

This commit is contained in:
Dave Syer
2015-06-26 13:30:17 +01:00
parent b2d193c535
commit 484bcbd468
3 changed files with 8 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom '{@= groupId @}:{@= artifactId @}:{@= version @}'
mavenBom '{@= groupId @}:spring-cloud-starter-parent:{@= version @}'
}
}

View File

@@ -1,6 +1,6 @@
<parent>
<groupId>{@= groupId @}</groupId>
<artifactId>{@= artifactId @}</artifactId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>{@= version @}</version>
</parent>
<dependencies>