2020-12-11 10:18:48 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>kernel-d-config</artifactId>
|
2023-07-07 06:02:33 +00:00
|
|
|
|
<version>8.0.0</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>config-business</artifactId>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2023-06-28 09:19:17 +00:00
|
|
|
|
<!--字典相关的api-->
|
|
|
|
|
<!--配置分类需要调用字典相关的接口-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>dict-api</artifactId>
|
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<!--资源api模块-->
|
|
|
|
|
<!--用在资源控制器,资源扫描上-->
|
2022-03-03 06:46:01 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<artifactId>scanner-api</artifactId>
|
2022-03-03 06:46:01 +00:00
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<!--参数校验模块-->
|
|
|
|
|
<!--用在控制器,参数校验-->
|
2021-10-03 15:13:53 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<artifactId>validator-api</artifactId>
|
2021-10-03 15:13:53 +00:00
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<!--系统配置表的缓存,使用redis还是map,Redis用在将系统部署在分布式环境-->
|
|
|
|
|
<!--默认使用Map,如果分布式环境,则在项目依赖中切换-->
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2021-03-27 13:42:02 +00:00
|
|
|
|
<artifactId>config-sdk-map</artifactId>
|
2021-05-14 14:07:41 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<optional>true</optional>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<artifactId>config-sdk-redis</artifactId>
|
2021-05-14 14:07:41 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2023-05-09 03:10:56 +00:00
|
|
|
|
<optional>true</optional>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--数据库sdk-->
|
|
|
|
|
<!--数据库dao框架-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>db-sdk-mp</artifactId>
|
2021-05-14 14:07:41 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--web模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|