You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
287 lines
11 KiB
287 lines
11 KiB
<?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> |
|
|
|
<scm> |
|
<url>https://github.com/spring-cloud/spring-cloud-netflix</url> |
|
<connection>scm:git:git://github.com/spring-cloud/spring-cloud-netflix.git</connection> |
|
<developerConnection>scm:git:ssh://git@github.com/spring-cloud/spring-cloud-netflix.git</developerConnection> |
|
<tag>HEAD</tag> |
|
</scm> |
|
|
|
<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-sidecar</module> |
|
<module>docs</module> |
|
</modules> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-commons</artifactId> |
|
<version>1.0.0.BUILD-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-config-client</artifactId> |
|
<version>1.0.0.BUILD-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-config-server</artifactId> |
|
<version>1.0.0.BUILD-SNAPSHOT</version> |
|
</dependency> |
|
<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>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-netflix-zuul-server</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> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>com.netflix.ribbon</groupId> |
|
<artifactId>ribbon-loadbalancer</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</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</artifactId> |
|
<version>${ribbon.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.rxjava</groupId> |
|
<artifactId>rxjava-core</artifactId> |
|
<version>${netflix.rxjava.version}</version> |
|
</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> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>groovy-all</artifactId> |
|
<groupId>org.codehaus.groovy</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.12.6</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.google.guava</groupId> |
|
<artifactId>guava</artifactId> |
|
<version>18.0</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.3</archaius.version> |
|
<eureka.version>1.1.145</eureka.version> |
|
<feign.version>6.1.3</feign.version> |
|
<hystrix.version>1.4.0-RC5</hystrix.version> |
|
<ribbon.version>2.0-RC13</ribbon.version> |
|
<turbine.version>1.0.0</turbine.version> |
|
<zuul.version>1.0.28</zuul.version> |
|
<netflix.rxjava.version>0.20.7</netflix.rxjava.version> |
|
<java.version>1.7</java.version> |
|
</properties> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>1.7</source> |
|
<target>1.7</target> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|