pom.xml 1.0 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
Y
Yiming Liu 已提交
2 3 4
<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">
	<parent>
5
		<groupId>com.ctrip.framework.apollo</groupId>
L
0.6.2  
lepdou 已提交
6
		<artifactId>apollo</artifactId>
N
nobodyiam 已提交
7
		<version>1.2.0</version>
Y
Yiming Liu 已提交
8 9 10 11 12
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<artifactId>apollo-biz</artifactId>
	<name>Apollo Biz</name>
	<packaging>jar</packaging>
Y
Yiming Liu 已提交
13 14 15
	<properties>
		<github.path>${project.artifactId}</github.path>
	</properties>
Y
Yiming Liu 已提交
16 17
	<dependencies>
		<dependency>
18
			<groupId>com.ctrip.framework.apollo</groupId>
Y
Yiming Liu 已提交
19
			<artifactId>apollo-common</artifactId>
Y
Yiming Liu 已提交
20
		</dependency>
21 22 23
		<!-- eureka -->
		<dependency>
			<groupId>org.springframework.cloud</groupId>
24
			<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
25 26
		</dependency>
		<!-- end of eureka -->
L
update  
lepdou 已提交
27 28 29 30 31
		<dependency>
			<groupId>com.h2database</groupId>
			<artifactId>h2</artifactId>
			<scope>test</scope>
		</dependency>
Y
Yiming Liu 已提交
32
	</dependencies>
33
</project>