2017-10-16 18:55:42 +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-30 10:51:43 +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-16 18:55:42 +08:00
|
|
|
|
2017-10-30 10:51:43 +08:00
|
|
|
<groupId>com.github.pig</groupId>
|
|
|
|
<artifactId>pig-common</artifactId>
|
|
|
|
<version>${pig.version}</version>
|
|
|
|
<packaging>jar</packaging>
|
2017-10-16 18:55:42 +08:00
|
|
|
|
2017-10-30 10:51:43 +08:00
|
|
|
<name>pig-common</name>
|
|
|
|
<description>common</description>
|
2017-10-16 18:55:42 +08:00
|
|
|
|
2017-10-30 10:51:43 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.github</groupId>
|
|
|
|
<artifactId>pig</artifactId>
|
|
|
|
<version>${pig.version}</version>
|
|
|
|
</parent>
|
2017-10-16 18:55:42 +08:00
|
|
|
|
2017-10-30 10:51:43 +08:00
|
|
|
<dependencies>
|
|
|
|
<!--JWT-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
<version>0.7.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!--Redis-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--添加spring对cache的支持-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
|
|
</dependency>
|
2017-11-08 10:22:10 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>1.2.30</version>
|
|
|
|
</dependency>
|
2017-11-20 20:43:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.xiaoleilu</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
2017-10-30 10:51:43 +08:00
|
|
|
</dependencies>
|
2017-10-16 18:55:42 +08:00
|
|
|
|
|
|
|
|
2017-10-30 10:51:43 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-10-16 18:55:42 +08:00
|
|
|
|
|
|
|
</project>
|