项目初始化

This commit is contained in:
2025-07-17 18:07:48 +08:00
parent c74ce366c7
commit 6550a64884
1179 changed files with 3407 additions and 3447 deletions

46
klp-system/pom.xml Normal file
View File

@@ -0,0 +1,46 @@
<?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>klp-oa</artifactId>
<groupId>com.klp</groupId>
<version>0.8.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>klp-system</artifactId>
<description>
system系统模块
</description>
<dependencies>
<!-- 通用工具-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-common</artifactId>
</dependency>
<!-- Flowable功能模块 -->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-flowable</artifactId>
</dependency>
<!-- OSS功能模块 -->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-oss</artifactId>
</dependency>
<!-- SMS功能模块 -->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-sms</artifactId>
</dependency>
</dependencies>
</project>