pom.xml 1.13 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.4.0.BUILD-SNAPSHOT</version>
9
		<relativePath>..</relativePath> <!-- lookup parent from repository -->
10 11 12
	</parent>
	<artifactId>spring-cloud-starter-eureka</artifactId>
	<name>spring-cloud-starter-eureka</name>
13
	<description>Spring Cloud Starter Eureka (deprecated, please use spring-cloud-starter-netflix-eureka-client</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
	</organization>
	<properties>
		<main.basedir>${basedir}/../..</main.basedir>
	</properties>
	<dependencies>
23 24
		<dependency>
			<groupId>org.springframework.cloud</groupId>
25
			<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
26 27 28
		</dependency>
	</dependencies>
</project>