pom.xml 2.1 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-Gateway</artifactId>
M
ManongJu 已提交
12
	<version>2.0.0</version>
M
initial  
ManongJu 已提交
13 14
	<packaging>jar</packaging>

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

	<dependencies>
M
ManongJu 已提交
19 20
		<dependency>
			<groupId>org.springframework.cloud</groupId>
M
ManongJu 已提交
21 22 23 24 25
			<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
M
ManongJu 已提交
26
		</dependency>
M
initial  
ManongJu 已提交
27 28
		<dependency>
			<groupId>org.springframework.cloud</groupId>
M
ManongJu 已提交
29
			<artifactId>spring-cloud-starter-netflix-zuul</artifactId>
M
initial  
ManongJu 已提交
30
		</dependency>
M
ManongJu 已提交
31 32
		<dependency>
			<groupId>org.springframework.cloud</groupId>
M
ManongJu 已提交
33
			<artifactId>spring-cloud-starter-oauth2</artifactId>
M
ManongJu 已提交
34
		</dependency>
M
重构  
ManongJu 已提交
35 36 37 38 39
		<dependency>
			<groupId>org.springframework.security.oauth</groupId>
			<artifactId>spring-security-oauth2</artifactId>
			<version>${spring-security-oauth.version}</version>
		</dependency>
M
initial  
ManongJu 已提交
40
		<dependency>
M
ManongJu 已提交
41 42
			<groupId>org.springframework.retry</groupId>
			<artifactId>spring-retry</artifactId>
M
initial  
ManongJu 已提交
43
		</dependency>
M
SSO  
ManongJu 已提交
44
		<dependency>
M
ManongJu 已提交
45 46
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
M
SSO  
ManongJu 已提交
47
		</dependency>
M
ManongJu 已提交
48 49 50 51 52 53 54
		<dependency>
			<groupId>io.springfox</groupId>
			<artifactId>springfox-swagger2</artifactId>
		</dependency>
		<dependency>
			<groupId>io.springfox</groupId>
			<artifactId>springfox-swagger-ui</artifactId>
M
ManongJu 已提交
55
		</dependency>
M
initial  
ManongJu 已提交
56 57 58 59 60 61 62 63 64 65 66 67
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>


</project>