pom.xml 1.5 KB
Newer Older
Y
Yiming Liu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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>
		<groupId>com.ctrip.apollo</groupId>
		<artifactId>apollo</artifactId>
		<version>0.0.1</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<artifactId>apollo-portal</artifactId>
	<name>Apollo Portal</name>
	<dependencies>
		<dependency>
			<groupId>com.ctrip.apollo</groupId>
			<artifactId>apollo-core</artifactId>
		</dependency>
Y
Yiming 已提交
18 19 20 21 22 23
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
Y
Yiming Liu 已提交
24 25
			<artifactId>spring-boot-devtools</artifactId>
			<optional>true</optional>
Y
Yiming 已提交
26
		</dependency>
Y
Yiming 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-jpa</artifactId>
		</dependency>
		<dependency>
			<groupId>com.h2database</groupId>
			<artifactId>h2</artifactId>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<scope>runtime</scope>
		</dependency>
Y
Yiming Liu 已提交
40
	</dependencies>
Y
Yiming Liu 已提交
41 42 43 44 45 46 47 48
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>
Y
Yiming Liu 已提交
49
</project>