2017-10-16 18:55:42 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-06-05 23:23:11 +08:00
|
|
|
<!--
|
|
|
|
~ Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
|
|
~
|
|
|
|
~ Redistribution and use in source and binary forms, with or without
|
|
|
|
~ modification, are permitted provided that the following conditions are met:
|
|
|
|
~
|
|
|
|
~ Redistributions of source code must retain the above copyright notice,
|
|
|
|
~ this list of conditions and the following disclaimer.
|
|
|
|
~ Redistributions in binary form must reproduce the above copyright
|
|
|
|
~ notice, this list of conditions and the following disclaimer in the
|
|
|
|
~ documentation and/or other materials provided with the distribution.
|
|
|
|
~ Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
|
~ contributors may be used to endorse or promote products derived from
|
|
|
|
~ this software without specific prior written permission.
|
|
|
|
~ Author: lengleng (wangiegie@gmail.com)
|
|
|
|
-->
|
|
|
|
|
2017-10-16 18:55:42 +08:00
|
|
|
<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>
|
2019-01-24 14:55:41 +08:00
|
|
|
<version>1.3.2</version>
|
2017-10-30 10:51:43 +08:00
|
|
|
<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>
|
2019-01-24 14:55:41 +08:00
|
|
|
<version>1.3.2</version>
|
2017-10-30 10:51:43 +08:00
|
|
|
</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>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${jjwt.version}</version>
|
2017-10-30 10:51:43 +08:00
|
|
|
</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>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${fastjson.version}</version>
|
2017-11-08 10:22:10 +08:00
|
|
|
</dependency>
|
2017-11-20 20:43:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.xiaoleilu</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${hutool.version}</version>
|
2017-11-20 20:43:37 +08:00
|
|
|
</dependency>
|
2017-11-22 21:32:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${commons-io.version}</version>
|
2017-11-22 21:32:15 +08:00
|
|
|
</dependency>
|
2017-12-07 17:33:59 +08:00
|
|
|
<!--配置属性加密工具-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${jasypt.version}</version>
|
2017-12-07 17:33:59 +08:00
|
|
|
</dependency>
|
2017-12-11 00:14:08 +08:00
|
|
|
<!--mybatis-plus-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${mybatis-plus.version}</version>
|
2017-12-11 00:14:08 +08:00
|
|
|
</dependency>
|
2018-04-20 06:26:12 +08:00
|
|
|
<!--retry start-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.retry</groupId>
|
|
|
|
<artifactId>spring-retry</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--retry end-->
|
2017-12-15 14:34:55 +08:00
|
|
|
<!--切面增强AOP-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2017-12-16 17:11:24 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-validator -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${hibernate-validator.version}</version>
|
2017-12-16 17:11:24 +08:00
|
|
|
</dependency>
|
2017-12-22 18:01:54 +08:00
|
|
|
<!-- okhttp -->
|
|
|
|
<dependency>
|
2018-04-06 17:32:37 +08:00
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-okhttp</artifactId>
|
2017-12-22 18:01:54 +08:00
|
|
|
</dependency>
|
2017-12-28 17:28:50 +08:00
|
|
|
<!--swagger-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${swagger2.version}</version>
|
2017-12-28 17:28:50 +08:00
|
|
|
</dependency>
|
2018-01-14 20:24:29 +08:00
|
|
|
<!--FastDFS-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.luhuiguo</groupId>
|
|
|
|
<artifactId>fastdfs-spring-boot-starter</artifactId>
|
2018-03-06 09:58:09 +08:00
|
|
|
<version>${fastdfs.version}</version>
|
2018-01-14 20:24:29 +08:00
|
|
|
</dependency>
|
2018-03-28 11:34:54 +08:00
|
|
|
<!-- TTL -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>transmittable-thread-local</artifactId>
|
|
|
|
<version>${ttl.version}</version>
|
|
|
|
</dependency>
|
2018-04-27 13:55:22 +08:00
|
|
|
<!--消息总线-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
|
|
|
|
</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>
|