|
@ -0,0 +1,161 @@
|
|
|
<?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.yihu.base</groupId>
|
|
|
<artifactId>common-lib-parent-pom</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
<relativePath>../../common-lib-parent-pom/pom.xml</relativePath>
|
|
|
</parent>
|
|
|
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-fegin</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-exception</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-request-mapping</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.jw</groupId>
|
|
|
<artifactId>common-rest-model</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.yihu.base</groupId>
|
|
|
<artifactId>common-swagger</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>com.yihu.base</groupId>-->
|
|
|
<!--<artifactId>common-security</artifactId>-->
|
|
|
<!--</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
<version>3.1.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
|
|
<version>8.5.28</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
</dependency>-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
<!--<artifactId>spring-boot-starter-security</artifactId>-->
|
|
|
<!--</dependency>-->
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>-->
|
|
|
|
|
|
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-oauth2</artifactId>
|
|
|
</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-eureka</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-config</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-feign</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-hystrix</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-zuul</artifactId>
|
|
|
</dependency>
|
|
|
<!--zipkin支持分布式追踪系统-->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-starter-sleuth</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.json</groupId>
|
|
|
<artifactId>json</artifactId>
|
|
|
</dependency>
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
<version>RELEASE</version>
|
|
|
</dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>commons-collections</groupId>
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.sun.jna</groupId>
|
|
|
<artifactId>jna</artifactId>
|
|
|
<version>3.0.9</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</project>
|