Commit 7c67fe28 by Dave Syer

Remove references to starters in spring-cloud-netflix

Fixes gh-46
parent 83ed3969
...@@ -15,17 +15,6 @@ ...@@ -15,17 +15,6 @@
<spring-cloud.version>1.0.0.BUILD-SNAPSHOT</spring-cloud.version> <spring-cloud.version>1.0.0.BUILD-SNAPSHOT</spring-cloud.version>
</properties> </properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starters</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>spring-cloud-netflix-turbine</artifactId> <modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging> <artifactId>spring-cloud-netflix-turbine</artifactId>
<name>Spring Cloud Netflix Turbine</name> <packaging>jar</packaging>
<url>http://projects.spring.io/spring-cloud/</url> <name>Spring Cloud Netflix Turbine</name>
<parent> <url>http://projects.spring.io/spring-cloud/</url>
<groupId>org.springframework.cloud</groupId> <parent>
<artifactId>spring-cloud-netflix</artifactId> <groupId>org.springframework.cloud</groupId>
<version>1.0.0.BUILD-SNAPSHOT</version> <artifactId>spring-cloud-netflix</artifactId>
<relativePath>..</relativePath> <version>1.0.0.BUILD-SNAPSHOT</version>
</parent> <relativePath>..</relativePath>
</parent>
<build> <build>
<plugins> <plugins>
</plugins> </plugins>
</build> </build>
<properties> <properties>
</properties> </properties>
<dependencyManagement> <dependencies>
<dependencies> <dependency>
<dependency> <groupId>org.springframework.cloud</groupId>
<groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-netflix-core</artifactId>
<artifactId>spring-cloud-starters</artifactId> </dependency>
<version>1.0.0.BUILD-SNAPSHOT</version> <dependency>
<type>pom</type> <groupId>com.netflix.eureka</groupId>
<scope>import</scope> <artifactId>eureka-client</artifactId>
</dependency> </dependency>
</dependencies> <dependency>
</dependencyManagement> <groupId>org.apache.httpcomponents</groupId>
<dependencies> <artifactId>httpclient</artifactId>
<dependency> </dependency>
<groupId>org.springframework.cloud</groupId> <dependency>
<artifactId>spring-cloud-starter</artifactId> <groupId>com.netflix.turbine</groupId>
</dependency> <artifactId>turbine-core</artifactId>
<dependency> </dependency>
<groupId>org.springframework.cloud</groupId> </dependencies>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>com.netflix.turbine</groupId>
<artifactId>turbine-core</artifactId>
</dependency>
</dependencies>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment