52 lines
2.1 KiB
XML
52 lines
2.1 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<!-- 此处修改,继承自父模块 -->
|
|
<parent>
|
|
<groupId>com.zxdmy.excite</groupId>
|
|
<artifactId>shensong</artifactId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>ss-common</artifactId>
|
|
<version>2.0.0</version>
|
|
<!-- 以下两项可选 -->
|
|
<name>ss-common</name>
|
|
<description>
|
|
此模块主要继承公共的工具类。
|
|
</description>
|
|
|
|
<!-- 放置只有此模块用到的依赖项,其他模块用到的是本模块实现的工具类或服务 -->
|
|
<dependencies>
|
|
|
|
<!-- Redis https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- Sa-Token 整合 Redis (使用jackson序列化方式) -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-dao-redis-jackson</artifactId>
|
|
<version>1.28.0</version>
|
|
</dependency>
|
|
<!-- 对象池,使用redis时必须引入 -->
|
|
<!-- 使用对象池,每次创建的对象并不实际销毁,而是缓存在对象池中,下次使用的时候,不用再重新创建,直接从对象池的缓存中取即可-->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 图片验证码 https://mvnrepository.com/artifact/com.github.penggle/kaptcha -->
|
|
<dependency>
|
|
<groupId>com.github.penggle</groupId>
|
|
<artifactId>kaptcha</artifactId>
|
|
<version>2.3.2</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|