2022-01-26 01:39:19 +00: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">
|
2022-03-07 08:25:46 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-01-26 01:39:19 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2022-03-07 08:25:46 +00:00
|
|
|
<artifactId>kernel-s-system</artifactId>
|
2023-04-26 09:21:15 +00:00
|
|
|
<version>7.6.0</version>
|
2022-10-22 11:44:47 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2022-01-26 01:39:19 +00:00
|
|
|
</parent>
|
|
|
|
|
2023-05-08 07:56:23 +00:00
|
|
|
<artifactId>system-business-permission</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
2022-01-26 01:39:19 +00:00
|
|
|
|
|
|
|
<dependencies>
|
2023-05-08 07:56:23 +00:00
|
|
|
|
|
|
|
<!--系统管理的api-->
|
2022-01-26 01:39:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>system-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-08 07:56:23 +00:00
|
|
|
<!--包装器模块-->
|
|
|
|
<!--包装结果-->
|
2022-01-26 01:39:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-08 07:56:23 +00:00
|
|
|
<artifactId>wrapper-api</artifactId>
|
2022-01-26 01:39:19 +00:00
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!--日志Api-->
|
2022-01-26 01:39:19 +00:00
|
|
|
<dependency>
|
2023-05-09 10:48:16 +00:00
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>log-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
2022-01-26 01:39:19 +00:00
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!--定时任务-->
|
2022-01-26 01:39:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 10:48:16 +00:00
|
|
|
<artifactId>timer-api</artifactId>
|
2022-01-26 01:39:19 +00:00
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!--多语言翻译api模块-->
|
|
|
|
<!--用在菜单翻译上-->
|
2022-01-26 01:39:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 10:48:16 +00:00
|
|
|
<artifactId>i18n-api</artifactId>
|
2022-01-26 01:39:19 +00:00
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
2022-02-10 06:04:35 +00:00
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!--jwt相关参数-->
|
2022-02-10 06:04:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 10:48:16 +00:00
|
|
|
<artifactId>jwt-sdk</artifactId>
|
2022-02-10 06:04:35 +00:00
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-02-11 13:39:42 +00:00
|
|
|
<!--首页信息缓存-->
|
2023-05-08 07:56:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
2022-02-10 06:04:35 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2022-02-11 13:39:42 +00:00
|
|
|
<artifactId>cache-sdk-memory</artifactId>
|
2022-02-10 06:04:35 +00:00
|
|
|
<version>${roses.version}</version>
|
2022-02-11 13:39:42 +00:00
|
|
|
<optional>true</optional>
|
2022-02-10 06:04:35 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2022-02-11 13:39:42 +00:00
|
|
|
<artifactId>cache-sdk-redis</artifactId>
|
2022-02-10 06:04:35 +00:00
|
|
|
<version>${roses.version}</version>
|
2022-02-11 13:39:42 +00:00
|
|
|
<optional>true</optional>
|
2022-02-10 06:04:35 +00:00
|
|
|
</dependency>
|
2022-02-11 13:39:42 +00:00
|
|
|
|
2023-05-09 11:04:26 +00:00
|
|
|
<!--消息模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>message-spring-boot-starter</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!--数据库sdk-->
|
|
|
|
<!--数据库dao框架-->
|
2023-05-08 07:56:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 10:48:16 +00:00
|
|
|
<artifactId>db-sdk-mp</artifactId>
|
2023-05-08 07:56:23 +00:00
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!--web模块-->
|
2023-05-08 07:56:23 +00:00
|
|
|
<dependency>
|
2023-05-09 10:48:16 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2023-05-08 07:56:23 +00:00
|
|
|
</dependency>
|
|
|
|
|
2023-05-09 10:48:16 +00:00
|
|
|
<!-- 拦截接口,记录常用功能 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2023-05-08 07:56:23 +00:00
|
|
|
|
2022-01-26 01:39:19 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2022-02-11 13:39:42 +00:00
|
|
|
</project>
|