pom.xml 2.89 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>
Spencer Gibb committed
8
		<version>2.0.0.BUILD-SNAPSHOT</version>
9 10
		<relativePath>..</relativePath> <!-- lookup parent from repository -->
	</parent>
11
	<artifactId>spring-cloud-netflix-hystrix-stream</artifactId>
Phillip Webb committed
12
	<packaging>jar</packaging>
13 14
	<name>Spring Cloud Netflix Hystrix Stream</name>
	<description>Spring Cloud Netflix Hystrix Stream</description>
15 16 17
	<properties>
		<main.basedir>${basedir}/..</main.basedir>
	</properties>
18
	<dependencies>
Dave Syer committed
19 20 21 22 23
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
24 25
		<dependency>
			<groupId>org.springframework.boot</groupId>
26
			<artifactId>spring-boot-starter-logging</artifactId>
Phillip Webb committed
27 28 29
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
30
			<artifactId>spring-cloud-commons</artifactId>
Phillip Webb committed
31 32
		</dependency>
		<dependency>
33 34
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-core</artifactId>
Phillip Webb committed
35 36
		</dependency>
		<dependency>
37 38
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-stream</artifactId>
Phillip Webb committed
39 40 41 42 43 44 45 46 47
		</dependency>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
		</dependency>
		<dependency>
			<groupId>com.netflix.hystrix</groupId>
			<artifactId>hystrix-core</artifactId>
		</dependency>
Spencer Gibb committed
48 49 50 51 52
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<scope>test</scope>
		</dependency>
Phillip Webb committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
		<dependency>
			<groupId>com.netflix.hystrix</groupId>
			<artifactId>hystrix-metrics-event-stream</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.netflix.hystrix</groupId>
			<artifactId>hystrix-javanica</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.netflix.eureka</groupId>
			<artifactId>eureka-client</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
			<scope>test</scope>
		</dependency>
83 84
		<dependency>
			<groupId>org.springframework.cloud</groupId>
85
			<artifactId>spring-cloud-stream-test-support</artifactId>
86 87
			<scope>test</scope>
		</dependency>
88 89
	</dependencies>
</project>