mirror of https://gitee.com/maxjhandsome/pig
101 lines
3.3 KiB
XML
101 lines
3.3 KiB
XML
<?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>
|
|
<artifactId>pig-common</artifactId>
|
|
<version>${pig.version}</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>pig-common</name>
|
|
<description>common</description>
|
|
|
|
<parent>
|
|
<groupId>com.github</groupId>
|
|
<artifactId>pig</artifactId>
|
|
<version>${pig.version}</version>
|
|
</parent>
|
|
|
|
<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>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.30</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.xiaoleilu</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>3.2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
<!--配置属性加密工具-->
|
|
<dependency>
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
<version>1.16</version>
|
|
</dependency>
|
|
<!--mybatis-plus-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>2.1.4</version>
|
|
</dependency>
|
|
<!--切面增强AOP-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-validator -->
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<version>5.4.1.Final</version>
|
|
</dependency>
|
|
<!-- okhttp -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
</dependency>
|
|
<!--swagger-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>2.7.0</version>
|
|
</dependency>
|
|
<!--FastDFS-->
|
|
<dependency>
|
|
<groupId>com.luhuiguo</groupId>
|
|
<artifactId>fastdfs-spring-boot-starter</artifactId>
|
|
<version>0.2.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|