This commit is contained in:
liujiangtao
2020-07-24 15:17:48 +08:00
parent 388e36ed4d
commit b5b78b4fff
517 changed files with 3833 additions and 3833 deletions

52
pom.xml
View File

@ -4,16 +4,16 @@
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</artifactId>
<groupId>com.muster</groupId>
<artifactId>muster</artifactId>
<version>3.0.0</version>
<name>ruoyi</name>
<url>http://www.ruoyi.vip</url>
<name>muster</name>
<url>http://www.muster.vip</url>
<description>若依管理系统</description>
<properties>
<ruoyi.version>3.0.0</ruoyi.version>
<muster.version>3.0.0</muster.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
@ -148,49 +148,49 @@
<!-- 定时任务-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-quartz</artifactId>
<version>${ruoyi.version}</version>
<groupId>com.muster</groupId>
<artifactId>muster-quartz</artifactId>
<version>${muster.version}</version>
</dependency>
<!-- 代码生成-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-generator</artifactId>
<version>${ruoyi.version}</version>
<groupId>com.muster</groupId>
<artifactId>muster-generator</artifactId>
<version>${muster.version}</version>
</dependency>
<!-- 核心模块-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-framework</artifactId>
<version>${ruoyi.version}</version>
<groupId>com.muster</groupId>
<artifactId>muster-framework</artifactId>
<version>${muster.version}</version>
</dependency>
<!-- 系统模块-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-system</artifactId>
<version>${ruoyi.version}</version>
<groupId>com.muster</groupId>
<artifactId>muster-system</artifactId>
<version>${muster.version}</version>
</dependency>
<!-- 通用工具-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-common</artifactId>
<version>${ruoyi.version}</version>
<groupId>com.muster</groupId>
<artifactId>muster-common</artifactId>
<version>${muster.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>ruoyi-admin</module>
<module>ruoyi-framework</module>
<module>ruoyi-system</module>
<module>ruoyi-quartz</module>
<module>ruoyi-generator</module>
<module>ruoyi-common</module>
<module>muster-admin</module>
<module>muster-framework</module>
<module>muster-system</module>
<module>muster-quartz</module>
<module>muster-generator</module>
<module>muster-common</module>
</modules>
<packaging>pom</packaging>