mirror of https://gitee.com/maxjhandsome/pig
135 lines
4.9 KiB
XML
135 lines
4.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ 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)
|
|
-->
|
|
|
|
<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>1.3.2</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>pig-common</name>
|
|
<description>common</description>
|
|
|
|
<parent>
|
|
<groupId>com.github</groupId>
|
|
<artifactId>pig</artifactId>
|
|
<version>1.3.2</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<!--JWT-->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt</artifactId>
|
|
<version>${jjwt.version}</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>${fastjson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.xiaoleilu</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io.version}</version>
|
|
</dependency>
|
|
<!--配置属性加密工具-->
|
|
<dependency>
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
<version>${jasypt.version}</version>
|
|
</dependency>
|
|
<!--mybatis-plus-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
</dependency>
|
|
<!--retry start-->
|
|
<dependency>
|
|
<groupId>org.springframework.retry</groupId>
|
|
<artifactId>spring-retry</artifactId>
|
|
</dependency>
|
|
<!--retry end-->
|
|
<!--切面增强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>${hibernate-validator.version}</version>
|
|
</dependency>
|
|
<!-- okhttp -->
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-okhttp</artifactId>
|
|
</dependency>
|
|
<!--swagger-->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${swagger2.version}</version>
|
|
</dependency>
|
|
<!--FastDFS-->
|
|
<dependency>
|
|
<groupId>com.luhuiguo</groupId>
|
|
<artifactId>fastdfs-spring-boot-starter</artifactId>
|
|
<version>${fastdfs.version}</version>
|
|
</dependency>
|
|
<!-- TTL -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>transmittable-thread-local</artifactId>
|
|
<version>${ttl.version}</version>
|
|
</dependency>
|
|
<!--消息总线-->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bus-amqp</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|