2024-01-04 16:58:19 +08:00
|
|
|
<?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">
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<version>3.8.6</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-system</artifactId>
|
|
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
system系统模块
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>pay</artifactId>
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.tencentyun</groupId>
|
|
|
|
|
<artifactId>tls-sig-api-v2</artifactId>
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
</dependency>
|
2024-01-05 11:54:46 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
2024-01-05 15:03:06 +08:00
|
|
|
<!--通用mapper-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>tk.mybatis</groupId>
|
|
|
|
|
<artifactId>mapper-spring-boot-starter</artifactId>
|
|
|
|
|
<version>2.1.5</version>
|
|
|
|
|
</dependency>
|
2024-01-04 16:58:19 +08:00
|
|
|
</dependencies>
|
2024-01-05 15:03:06 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2024-01-04 16:58:19 +08:00
|
|
|
</project>
|