2023-06-10 12:53:21 +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>
|
2023-07-12 02:20:16 +00:00
|
|
|
<artifactId>kernel-s-system</artifactId>
|
2023-07-07 06:02:33 +00:00
|
|
|
<version>8.0.0</version>
|
2023-06-10 12:53:21 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2023-07-12 02:25:19 +00:00
|
|
|
<artifactId>system-business-hr</artifactId>
|
2023-06-10 12:53:21 +00:00
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2023-07-14 07:43:06 +00:00
|
|
|
<!-- 事件模块 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>event-spring-boot-starter</artifactId>
|
2023-07-14 08:43:23 +00:00
|
|
|
<version>${roses.version}</version>
|
2023-07-14 07:43:06 +00:00
|
|
|
</dependency>
|
|
|
|
|
2023-06-09 13:03:24 +00:00
|
|
|
<!--基础核心业务api-->
|
2023-06-10 12:53:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
2023-07-12 02:22:03 +00:00
|
|
|
<artifactId>system-api</artifactId>
|
2023-06-10 12:53:21 +00:00
|
|
|
<version>${roses.version}</version>
|
2023-06-11 07:03:42 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--字典的api-->
|
|
|
|
<!--获取审批人类型查询-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>dict-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
2023-06-11 14:34:33 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--文件api-->
|
|
|
|
<!--用户头像相关的操作-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>file-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
2023-06-12 09:15:09 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--数据库便捷操作api-->
|
|
|
|
<!--查询组织机构的子公司的子公司-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>db-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
2023-06-10 12:53:21 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--资源api模块-->
|
|
|
|
<!--用在资源控制器,资源扫描上-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>scanner-api</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--数据库sdk-->
|
|
|
|
<!--数据库dao框架-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>db-sdk-mp</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--web模块-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-11 05:34:53 +00:00
|
|
|
<!--参数校验模块的api-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>validator-api-table-unique</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-07-13 17:08:56 +00:00
|
|
|
<!--内存或者redis的缓存-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-sdk-memory</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
<artifactId>cache-sdk-redis</artifactId>
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-10 12:53:21 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|