pom.xml 3.53 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>
8
		<version>1.3.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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
		<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>
50
	<dependencies>
Dave Syer committed
51 52 53 54 55
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
56 57 58 59 60
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-commons</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
61 62
		<dependency>
			<groupId>org.springframework.integration</groupId>
63
			<artifactId>spring-integration-core</artifactId>
Phillip Webb committed
64 65
		</dependency>
		<dependency>
66 67
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-core</artifactId>
Phillip Webb committed
68 69
		</dependency>
		<dependency>
70 71
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-stream</artifactId>
Phillip Webb committed
72 73 74 75 76 77 78 79 80 81 82 83
		</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>
84
			<!-- Only needed at compile time -->
85 86
			<scope>compile</scope>
			<optional>true</optional>
Phillip Webb committed
87
		</dependency>
88 89 90 91 92
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-tomcat</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
93 94 95
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
96 97 98 99 100 101 102
			<optional>true</optional>
			<exclusions>
				<exclusion>
					<artifactId>spring-boot-starter-tomcat</artifactId>
					<groupId>org.springframework.boot</groupId>
				</exclusion>
			</exclusions>
Phillip Webb committed
103
		</dependency>
104 105 106 107 108
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-stream-binder-rabbit</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
109 110 111 112 113
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
114 115
	</dependencies>
</project>