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.
115 lines
3.5 KiB
115 lines
3.5 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> |
|
<parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-netflix</artifactId> |
|
<version>1.2.0.BUILD-SNAPSHOT</version> |
|
<relativePath>..</relativePath> <!-- lookup parent from repository --> |
|
</parent> |
|
<artifactId>spring-cloud-netflix-turbine-stream</artifactId> |
|
<packaging>jar</packaging> |
|
<name>Spring Cloud Netflix Turbine Stream</name> |
|
<description>Spring Cloud Netflix Turbine Stream</description> |
|
<properties> |
|
<main.basedir>${basedir}/..</main.basedir> |
|
<turbine.version>2.0.0-DP.2</turbine.version> |
|
</properties> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</target> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.netflix.turbine</groupId> |
|
<artifactId>turbine-core</artifactId> |
|
<version>${turbine.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>com.netflix.rxjava</groupId> |
|
<artifactId>rxjava-core</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-simple</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-commons</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.integration</groupId> |
|
<artifactId>spring-integration-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-netflix-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-stream</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.netflix.turbine</groupId> |
|
<artifactId>turbine-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.reactivex</groupId> |
|
<artifactId>rxjava</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<!-- Only needed at compile time --> |
|
<scope>compile</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<optional>true</optional> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
<groupId>org.springframework.boot</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-stream-binder-rabbit</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|