Files
spring-cloud/_includes/pom.xml
2014-05-14 21:36:04 +02:00

23 lines
823 B
XML

<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>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>
<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>heroku-connector</artifactId>
<version>{@= version @}</version>
</dependency>
</dependencies>