ifffff/pig-gateway/pom.xml

52 lines
1.7 KiB
XML
Raw Normal View History

2017-10-12 19:54:38 +08:00
<?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"
2017-10-15 12:43:57 +08:00
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>
2017-10-12 19:54:38 +08:00
2017-10-15 12:43:57 +08:00
<groupId>com.github.pig</groupId>
<artifactId>pig-gateway</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
2017-10-12 19:54:38 +08:00
2017-10-15 12:43:57 +08:00
<name>pig-gateway</name>
<description>服务网关</description>
2017-10-12 19:54:38 +08:00
2017-10-15 12:43:57 +08:00
<parent>
<groupId>com.github</groupId>
<artifactId>pig</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
2017-10-12 19:54:38 +08:00
2017-10-15 12:43:57 +08:00
<dependencies>
<dependency>
<groupId>com.github.pig</groupId>
<artifactId>pig-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
2017-10-28 18:29:48 +08:00
<!--zuul网关-->
2017-10-15 12:43:57 +08:00
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zuul</artifactId>
</dependency>
<!--oauth2.0-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-oauth2</artifactId>
</dependency>
2017-10-28 18:29:48 +08:00
<!--Redis-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2017-10-15 12:43:57 +08:00
</dependencies>
2017-10-12 19:54:38 +08:00
2017-10-15 12:43:57 +08:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
2017-10-12 19:54:38 +08:00
</project>