Rename platform->cloud

This commit is contained in:
Dave Syer
2014-08-29 12:52:52 +01:00
parent 43b663c454
commit c8f3eea75d
13 changed files with 82 additions and 82 deletions

56
pom.xml
View File

@@ -7,12 +7,12 @@
<version>1.1.5.RELEASE</version>
<relativePath/>
</parent>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starters</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starters</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Platform Starters</name>
<description>Spring Platform Starters</description>
<name>Spring Cloud Starters</name>
<description>Spring Cloud Starters</description>
<url>http://projects.spring.io/spring-boot/</url>
<organization>
<name>Pivotal Software, Inc.</name>
@@ -22,62 +22,62 @@
<main.basedir>${basedir}/..</main.basedir>
</properties>
<modules>
<module>spring-platform-starter</module>
<module>spring-platform-starter-bus-amqp</module>
<module>spring-platform-starter-cloudfoundry</module>
<module>spring-platform-starter-eureka</module>
<module>spring-platform-starter-hystrix</module>
<module>spring-platform-starter-zuul</module>
<module>spring-cloud-starter</module>
<module>spring-cloud-starter-bus-amqp</module>
<module>spring-cloud-starter-cloudfoundry</module>
<module>spring-cloud-starter-eureka</module>
<module>spring-cloud-starter-hystrix</module>
<module>spring-cloud-starter-zuul</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-config</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-netflix</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-cloudfoundry</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-cloudfoundry</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-cloudfoundry</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-cloudfoundry</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-bus-amqp</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-eureka</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-hystrix</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-hystrix</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.platform</groupId>
<artifactId>spring-platform-starter-zuul</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zuul</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
</dependencies>