mirror of https://gitee.com/xiaonuobase/snowy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
5.7 KiB
170 lines
5.7 KiB
<?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>
|
|
|
|
<parent>
|
|
<groupId>vip.xiaonuo</groupId>
|
|
<artifactId>snowy</artifactId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>snowy-common</artifactId>
|
|
<packaging>jar</packaging>
|
|
<description>基础通用模块</description>
|
|
|
|
<properties>
|
|
<lombok.versin>1.18.22</lombok.versin>
|
|
<druid.version>1.2.8</druid.version>
|
|
<mybatis.plus.version>3.5.2</mybatis.plus.version>
|
|
<easy.trans.version>2.0.3</easy.trans.version>
|
|
<commons.pool2.version>2.11.1</commons.pool2.version>
|
|
<hutool.version>5.8.8</hutool.version>
|
|
<pinyin.version>2.5.1</pinyin.version>
|
|
<ip2region.version>2.6.3</ip2region.version>
|
|
<knife4j.version>2.0.9</knife4j.version>
|
|
<easypoi.version>4.3.0</easypoi.version>
|
|
<smcrypto.version>0.3.2</smcrypto.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- validation -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<!-- web -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- aop -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<!-- processor -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
</dependency>
|
|
|
|
<!-- redis -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
<!-- lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.versin}</version>
|
|
</dependency>
|
|
|
|
<!-- druid -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
<!-- mybatis-plus -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatis.plus.version}</version>
|
|
</dependency>
|
|
|
|
<!-- easy-trans 排除自带MP版本使用最新版本 -->
|
|
<dependency>
|
|
<groupId>com.fhs-opensource</groupId>
|
|
<artifactId>easy-trans-spring-boot-starter</artifactId>
|
|
<version>${easy.trans.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>mybatis-plus-annotation</artifactId>
|
|
<groupId>com.baomidou</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-schema</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fhs-opensource</groupId>
|
|
<artifactId>easy-trans-mybatis-plus-extend</artifactId>
|
|
<version>${easy.trans.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>mybatis-plus-core</artifactId>
|
|
<groupId>com.baomidou</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
<groupId>com.baomidou</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-schema</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- redis -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
<version>${commons.pool2.version}</version>
|
|
</dependency>
|
|
|
|
<!-- hutool -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
<!-- pinyin4j -->
|
|
<dependency>
|
|
<groupId>com.belerweb</groupId>
|
|
<artifactId>pinyin4j</artifactId>
|
|
<version>${pinyin.version}</version>
|
|
</dependency>
|
|
|
|
<!-- ip2region -->
|
|
<dependency>
|
|
<groupId>org.lionsoul</groupId>
|
|
<artifactId>ip2region</artifactId>
|
|
<version>${ip2region.version}</version>
|
|
</dependency>
|
|
|
|
<!-- knife4j -->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
<version>${knife4j.version}</version>
|
|
</dependency>
|
|
|
|
<!-- easy-poi -->
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-spring-boot-starter</artifactId>
|
|
<version>${easypoi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- sm-crypto -->
|
|
<dependency>
|
|
<groupId>com.antherd</groupId>
|
|
<artifactId>sm-crypto</artifactId>
|
|
<version>${smcrypto.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|