pom.xml 1.4 KB
Newer Older
M
initial  
ManongJu 已提交
1 2 3 4 5 6 7 8
<?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>com.microservice.skeleton</groupId>
		<artifactId>Micro-Service-Skeleton-Parent</artifactId>
M
ManongJu 已提交
9
		<version>2.0.0</version>
M
initial  
ManongJu 已提交
10 11
	</parent>
	<artifactId>Micro-Service-Skeleton-Register</artifactId>
M
ManongJu 已提交
12
	<version>2.0.0</version>
M
initial  
ManongJu 已提交
13 14
	<packaging>jar</packaging>

M
ManongJu 已提交
15
	<name>mss-eureka</name>
M
initial  
ManongJu 已提交
16 17 18 19 20
	<description>Demo project for Spring Boot</description>

	<dependencies>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
M
ManongJu 已提交
21
			<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
M
initial  
ManongJu 已提交
22
		</dependency>
23 24 25 26
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
M
initial  
ManongJu 已提交
27 28 29 30 31 32 33 34 35 36 37 38
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
M
ManongJu 已提交
39 40 41 42 43 44 45
				<executions>
					<execution>
						<goals>
							<goal>build-info</goal>
						</goals>
					</execution>
				</executions>
M
initial  
ManongJu 已提交
46 47 48 49 50 51
			</plugin>
		</plugins>
	</build>


</project>