pom.xml 1.4 KB
Newer Older
1 2 3 4
<?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/maven-v4_0_0.xsd">
	<parent>
5
		<groupId>com.ctrip.framework.apollo</groupId>
6
		<artifactId>apollo</artifactId>
N
nobodyiam 已提交
7
		<version>1.1.1</version>
8 9 10 11 12 13 14 15 16 17 18
		<relativePath>../pom.xml</relativePath>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<artifactId>apollo-assembly</artifactId>
	<name>Apollo Assembly</name>
	<properties>
		<github.path>${project.artifactId}</github.path>
	</properties>
	<dependencies>
		<!-- apollo -->
		<dependency>
19
			<groupId>com.ctrip.framework.apollo</groupId>
20 21 22
			<artifactId>apollo-configservice</artifactId>
		</dependency>
		<dependency>
23
			<groupId>com.ctrip.framework.apollo</groupId>
24 25 26
			<artifactId>apollo-adminservice</artifactId>
		</dependency>
		<dependency>
27
			<groupId>com.ctrip.framework.apollo</groupId>
28 29 30 31 32 33 34 35
			<artifactId>apollo-portal</artifactId>
		</dependency>
		<dependency>
			<groupId>com.h2database</groupId>
			<artifactId>h2</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
J
Jason Song 已提交
36 37 38 39 40 41 42 43 44 45 46
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<executable>true</executable>
				</configuration>
			</plugin>
		</plugins>
	</build>
47
</project>