2017-10-27 14:22:12 +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"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<groupId>com.github.pig</groupId>
|
2018-01-14 23:08:45 +08:00
|
|
|
<artifactId>pig-upms-service</artifactId>
|
2017-10-30 10:51:43 +08:00
|
|
|
<version>${pig.version}</version>
|
2017-10-27 14:22:12 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2018-01-14 23:08:45 +08:00
|
|
|
<name>pig-upms-service</name>
|
|
|
|
<description>pig-upms-service</description>
|
2017-10-27 14:22:12 +08:00
|
|
|
|
|
|
|
<parent>
|
2018-01-14 23:08:45 +08:00
|
|
|
<groupId>com.github.pig</groupId>
|
|
|
|
<artifactId>pig-modules</artifactId>
|
2017-10-30 10:51:43 +08:00
|
|
|
<version>${pig.version}</version>
|
2017-10-27 14:22:12 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2017-10-28 17:55:13 +08:00
|
|
|
<groupId>com.github.pig</groupId>
|
|
|
|
<artifactId>pig-common</artifactId>
|
2017-10-30 10:51:43 +08:00
|
|
|
<version>${pig.version}</version>
|
2017-10-27 14:22:12 +08:00
|
|
|
</dependency>
|
2017-11-01 17:09:15 +08:00
|
|
|
<!--MySQL-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- mybatis-plus start -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatisplus-spring-boot-starter</artifactId>
|
|
|
|
<version>1.0.5</version>
|
2017-12-07 14:18:41 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-jdbc</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-11-01 17:09:15 +08:00
|
|
|
</dependency>
|
2017-12-07 17:33:59 +08:00
|
|
|
<!--HikariCP连接池-->
|
2017-12-07 14:18:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
</dependency>
|
2018-02-05 23:39:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.shardingjdbc</groupId>
|
|
|
|
<artifactId>sharding-jdbc-core-spring-boot-starter</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
2017-11-01 17:09:15 +08:00
|
|
|
<!--myabtis-plus 代码生成依赖-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!--mybatis-plus end -->
|
2017-11-17 09:36:04 +08:00
|
|
|
<!--rabbitMQ-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
</dependency>
|
2017-12-05 22:45:07 +08:00
|
|
|
<!--七牛-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
<version>[7.2.0, 7.2.99]</version>
|
|
|
|
</dependency>
|
2017-12-16 17:11:24 +08:00
|
|
|
<dependency>
|
2017-12-21 22:48:23 +08:00
|
|
|
<groupId>com.github.axet</groupId>
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
<version>0.0.9</version>
|
2017-12-16 17:11:24 +08:00
|
|
|
</dependency>
|
2018-01-24 15:35:27 +08:00
|
|
|
<!--zipkin-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-zipkin</artifactId>
|
|
|
|
</dependency>
|
2017-10-27 14:22:12 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2017-12-24 17:03:01 +08:00
|
|
|
<configuration>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
</configuration>
|
2017-10-27 14:22:12 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|