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>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>kernel-s-dict</artifactId>
|
2024-11-11 14:44:24 +00:00
|
|
|
<version>8.3.2</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>dict-business</artifactId>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--字典模块api-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>dict-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-08-25 06:45:41 +00:00
|
|
|
<!--缓存的依赖-->
|
|
|
|
<!--字典缓存的使用-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2022-08-25 06:45:41 +00:00
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--资源api模块-->
|
|
|
|
<!--用在资源控制器,资源扫描上-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>scanner-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--参数校验模块-->
|
|
|
|
<!--用在控制器,参数校验-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2023-05-09 04:56:11 +00:00
|
|
|
<artifactId>validator-api-table-unique</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-26 14:58:02 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--数据库sdk-->
|
|
|
|
<!--数据库dao框架-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
<artifactId>db-sdk-mp</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-26 14:58:02 +00:00
|
|
|
<!--中文转首字母转化-->
|
|
|
|
<!--用户名称的首字母转换等-->
|
|
|
|
<dependency>
|
2024-06-29 16:41:59 +00:00
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2021-05-24 07:27:32 +00:00
|
|
|
<artifactId>pinyin-spring-boot-starter</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
<version>${roses.version}</version>
|
2020-12-26 14:58:02 +00:00
|
|
|
</dependency>
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
<!--web模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2022-06-20 01:36:08 +00:00
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|