pom.xml 1.47 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.1.BUILD-SNAPSHOT</version>
9
		<relativePath>..</relativePath> <!-- lookup parent from repository -->
10 11 12 13
	</parent>
	<artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
	<name>spring-cloud-starter-hystrix-dashboard</name>
	<description>Spring Cloud Hystrix Dashboard</description>
Dave Syer committed
14
	<url>https://projects.spring.io/spring-cloud</url>
15 16
	<organization>
		<name>Pivotal Software, Inc.</name>
Dave Syer committed
17
		<url>https://www.spring.io</url>
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
	</organization>
	<properties>
		<main.basedir>${basedir}/../..</main.basedir>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-netflix-hystrix-dashboard</artifactId>
		</dependency>
35 36 37 38
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-archaius</artifactId>
		</dependency>
39 40
	</dependencies>
</project>