项目初始化
This commit is contained in:
94
pom.xml
94
pom.xml
@@ -4,16 +4,15 @@
|
||||
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>
|
||||
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-flowable-plus</artifactId>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-oa</artifactId>
|
||||
<version>0.8.3</version>
|
||||
|
||||
<name>RuoYi-Flowable-Plus</name>
|
||||
<url>https://gitee.com/KonBAI-Q/ruoyi-flowable-plus</url>
|
||||
<description>RuoYi-Flowable-Plus后台管理系统</description>
|
||||
<name>klp-oa</name>
|
||||
<description>klp后台管理系统</description>
|
||||
|
||||
<properties>
|
||||
<ruoyi-flowable-plus.version>0.8.3</ruoyi-flowable-plus.version>
|
||||
<klp-flowable-plus.version>0.8.3</klp-flowable-plus.version>
|
||||
<spring-boot.version>2.7.11</spring-boot.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
@@ -291,82 +290,89 @@
|
||||
|
||||
<!-- 定时任务 -->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-job</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-job</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 代码生成-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-generator</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-generator</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 核心模块-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-framework</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-framework</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 系统模块-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-system</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-system</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 通用工具-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-common</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-common</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 工作流模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-flowable</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-flowable</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- OSS对象存储模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-oss</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-oss</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- SMS短信模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-sms</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-sms</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- demo模块 -->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-demo</artifactId>
|
||||
<version>${ruoyi-flowable-plus.version}</version>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-demo</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
<!-- demo模块 -->
|
||||
<dependency>
|
||||
<groupId>com.klp</groupId>
|
||||
<artifactId>klp-wms</artifactId>
|
||||
<version>${klp-flowable-plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<modules>
|
||||
<module>ruoyi-admin</module>
|
||||
<module>ruoyi-common</module>
|
||||
<module>ruoyi-demo</module>
|
||||
<module>ruoyi-extend</module>
|
||||
<module>ruoyi-flowable</module>
|
||||
<module>ruoyi-framework</module>
|
||||
<module>ruoyi-generator</module>
|
||||
<module>ruoyi-job</module>
|
||||
<module>ruoyi-oss</module>
|
||||
<module>ruoyi-sms</module>
|
||||
<module>ruoyi-system</module>
|
||||
<module>klp-admin</module>
|
||||
<module>klp-common</module>
|
||||
<module>klp-demo</module>
|
||||
<module>klp-extend</module>
|
||||
<module>klp-flowable</module>
|
||||
<module>klp-framework</module>
|
||||
<module>klp-generator</module>
|
||||
<module>klp-job</module>
|
||||
<module>klp-oss</module>
|
||||
<module>klp-sms</module>
|
||||
<module>klp-system</module>
|
||||
<module>klp-wms</module>
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user