Temporarily hard-code release labels

This commit is contained in:
Dave Syer
2015-06-25 16:14:15 +01:00
parent c303793fe5
commit b72bc5c5ab
2 changed files with 8 additions and 8 deletions

View File

@@ -8,11 +8,11 @@ apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom '{@= groupId @}:{@= artifactId @}:{@= version @}'
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Angel.SR3'
}
}
dependencies {
compile '{@= groupId @}:spring-cloud-starter-config'
compile '{@= groupId @}:spring-cloud-starter-eureka'
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-eureka'
}

View File

@@ -1,15 +1,15 @@
<dependencies>
<parent>
<groupId>{@= groupId @}</groupId>
<artifactId>{@= artifactId @}</artifactId>
<version>{@= version @}</version>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Angel.SR3</version>
</parent>
<dependency>
<groupId>{@= groupId @}</groupId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>{@= groupId @}</groupId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
</dependencies>