pom.xml 3.65 KB
Newer Older
1 2 3 4 5 6 7
<?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>
buildmaster committed
8
		<version>2.0.0.BUILD-SNAPSHOT</version>
9 10
		<relativePath>..</relativePath> <!-- lookup parent from repository -->
	</parent>
11
	<artifactId>spring-cloud-netflix-turbine-stream</artifactId>
Phillip Webb committed
12
	<packaging>jar</packaging>
13 14
	<name>Spring Cloud Netflix Turbine Stream</name>
	<description>Spring Cloud Netflix Turbine Stream</description>
Phillip Webb committed
15
	<properties>
16
		<main.basedir>${basedir}/..</main.basedir>
Phillip Webb committed
17 18 19 20 21 22 23 24 25 26 27 28
		<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>
29 30 31 32 33 34 35 36 37 38
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.20</version>
				<configuration>
					<systemPropertyVariables>
						<projectVersion>${project.version}</projectVersion>
					</systemPropertyVariables>
				</configuration>
			</plugin>
Phillip Webb committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
		</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>
60
	<dependencies>
Dave Syer committed
61 62 63 64 65
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
66 67 68 69 70
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-commons</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
71 72
		<dependency>
			<groupId>org.springframework.integration</groupId>
73
			<artifactId>spring-integration-core</artifactId>
Phillip Webb committed
74 75
		</dependency>
		<dependency>
76 77
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-core</artifactId>
Phillip Webb committed
78 79
		</dependency>
		<dependency>
80 81
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-stream</artifactId>
Phillip Webb committed
82 83 84 85 86 87 88 89 90 91 92 93
		</dependency>
		<dependency>
			<groupId>com.netflix.turbine</groupId>
			<artifactId>turbine-core</artifactId>
		</dependency>
		<dependency>
			<groupId>io.reactivex</groupId>
			<artifactId>rxjava</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
94
			<optional>true</optional>
Phillip Webb committed
95
		</dependency>
96 97 98 99 100
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-stream-binder-rabbit</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
101 102 103 104 105
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
106 107 108 109 110
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-contract-stub-runner</artifactId>
			<scope>test</scope>
		</dependency>
111 112 113 114 115
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-hystrix-contract</artifactId>
			<scope>test</scope>
		</dependency>
116 117
	</dependencies>
</project>