|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Cloud Netflix</name>
|
|
|
|
<description>Spring Cloud Netflix</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-build</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
<relativePath/>
|
|
|
|
<!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>spring-cloud-netflix-core</module>
|
|
|
|
<module>spring-cloud-netflix-hystrix-dashboard</module>
|
|
|
|
<module>spring-cloud-netflix-eureka-server</module>
|
|
|
|
<module>spring-cloud-netflix-turbine</module>
|
|
|
|
<module>spring-cloud-netflix-zuul</module>
|
|
|
|
<module>docs</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix-core</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix-eureka-server</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix-hystrix-dashboard</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-netflix-turbine</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.archaius</groupId>
|
|
|
|
<artifactId>archaius-core</artifactId>
|
|
|
|
<version>${archaius.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.eureka</groupId>
|
|
|
|
<artifactId>eureka-client</artifactId>
|
|
|
|
<version>${eureka.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.eureka</groupId>
|
|
|
|
<artifactId>eureka-core</artifactId>
|
|
|
|
<version>${eureka.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
<artifactId>feign-core</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
<artifactId>feign-ribbon</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
<artifactId>feign-slf4j</artifactId>
|
|
|
|
<version>${feign.version}</version>
|
|
|
|
</dependency>-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.hystrix</groupId>
|
|
|
|
<artifactId>hystrix-core</artifactId>
|
|
|
|
<version>${hystrix.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.hystrix</groupId>
|
|
|
|
<artifactId>hystrix-metrics-event-stream</artifactId>
|
|
|
|
<version>${hystrix.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.hystrix</groupId>
|
|
|
|
<artifactId>hystrix-javanica</artifactId>
|
|
|
|
<version>${hystrix.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.ribbon</groupId>
|
|
|
|
<artifactId>ribbon-core</artifactId>
|
|
|
|
<version>${ribbon.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.ribbon</groupId>
|
|
|
|
<artifactId>ribbon-httpclient</artifactId>
|
|
|
|
<version>${ribbon.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.ribbon</groupId>
|
|
|
|
<artifactId>ribbon-eureka</artifactId>
|
|
|
|
<version>${ribbon.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.turbine</groupId>
|
|
|
|
<artifactId>turbine-core</artifactId>
|
|
|
|
<version>${turbine.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.zuul</groupId>
|
|
|
|
<artifactId>zuul-core</artifactId>
|
|
|
|
<version>${zuul.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.12.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-servlet</artifactId>
|
|
|
|
<version>1.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
<version>1.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
<version>1.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
<version>1.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>d3js</artifactId>
|
|
|
|
<version>3.4.11</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>jquery</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>bootstrap</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<archaius.version>0.6.0</archaius.version>
|
|
|
|
<eureka.version>1.1.135</eureka.version>
|
|
|
|
<feign.version>6.1.2</feign.version>
|
|
|
|
<hystrix.version>1.4.0-RC4</hystrix.version>
|
|
|
|
<ribbon.version>0.3.13</ribbon.version>
|
|
|
|
<turbine.version>0.4</turbine.version>
|
|
|
|
<zuul.version>1.0.24</zuul.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|