pom.xml 2.15 KB
Newer Older
Spencer Gibb committed
1
<?xml version="1.0" encoding="UTF-8"?>
Phillip Webb committed
2 3 4 5 6
<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>
	<artifactId>spring-cloud-netflix-hystrix-dashboard</artifactId>
	<name>Spring Cloud Netflix Hystrix</name>
Dave Syer committed
7
	<url>https://projects.spring.io/spring-cloud/</url>
Phillip Webb committed
8 9 10
	<parent>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-netflix</artifactId>
11
		<version>1.4.0.BUILD-SNAPSHOT</version>
12
		<relativePath>..</relativePath> <!-- lookup parent from repository -->
Phillip Webb committed
13 14
	</parent>
	<properties>
15
		<main.basedir>${basedir}/..</main.basedir>
Phillip Webb committed
16 17
	</properties>
	<dependencies>
Dave Syer committed
18 19 20 21 22
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
Phillip Webb committed
23 24 25 26
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
27 28 29 30
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-freemarker</artifactId>
		</dependency>
Phillip Webb committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-commons</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-core</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
		</dependency>
		<dependency>
			<groupId>com.netflix.hystrix</groupId>
			<artifactId>hystrix-core</artifactId>
		</dependency>
		<dependency>
			<groupId>com.netflix.hystrix</groupId>
			<artifactId>hystrix-metrics-event-stream</artifactId>
		</dependency>
51 52 53 54 55 56 57 58
		<dependency>
			<groupId>org.webjars</groupId>
			<artifactId>jquery</artifactId>
		</dependency>
		<dependency>
			<groupId>org.webjars</groupId>
			<artifactId>d3js</artifactId>
		</dependency>
59 60 61 62 63
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
Phillip Webb committed
64
	</dependencies>
Spencer Gibb committed
65
</project>