Adjusted artifact ids to add spring-cloud- prefix

This commit is contained in:
Ramnivas Laddad
2014-05-15 12:44:49 -07:00
parent 2bb14f31a8
commit 7df958a6a3
2 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
dependencies {
compile '{@= groupId @}:spring-service-connector:{@= version @}'
compile '{@= groupId @}:spring-cloud-spring-service-connector:{@= version @}'
// If you intend to deploy the app on Cloud Foundry, add the following
compile '{@= groupId @}:cloudfoundry-connector:{@= version @}'
compile '{@= groupId @}:spring-cloud-cloudfoundry-connector:{@= version @}'
// If you intend to deploy the app on Heroku, add the following
compile '{@= groupId @}:heroku-connector:{@= version @}'
compile '{@= groupId @}:spring-cloud-heroku-connector:{@= version @}'
// It is okay to add more than one cloud connector; the right one will
// be picked during runtime

View File

@@ -1,13 +1,13 @@
<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-service-connector</artifactId>
<artifactId>spring-cloud-spring-service-connector</artifactId>
<version>{@= version @}</version>
</dependency>
<!-- If you intend to deploy the app on Cloud Foundry, add the following -->
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>cloudfoundry-connector</artifactId>
<artifactId>spring-cloud-cloudfoundry-connector</artifactId>
<version>{@= version @}</version>
</dependency>
<!-- If you intend to deploy the app on Heroku, add the following -->
@@ -15,7 +15,7 @@
be picked during runtime -->
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>heroku-connector</artifactId>
<artifactId>spring-cloud-heroku-connector</artifactId>
<version>{@= version @}</version>
</dependency>
</dependencies>