Files
spring-cloud/_includes/pom.xml
2014-05-15 12:44:49 -07:00

23 lines
862 B
XML

<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<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>spring-cloud-cloudfoundry-connector</artifactId>
<version>{@= version @}</version>
</dependency>
<!-- If you intend to deploy the app on Heroku, add the following -->
<!-- It is okay to add more than one cloud connector; the right one will
be picked during runtime -->
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-cloud-heroku-connector</artifactId>
<version>{@= version @}</version>
</dependency>
</dependencies>