
add 新增 modules 模块, 包含 demo, generator, job, system 模块 ; update 更新模块包名 rateLimiter => ratelimiter ; refactor 重构 ratelimiter 模块, 参考幂等模块加入自动装配相关配置 ; fix 修正 AsyncConfig 实现接口 ; fix 修正 SwaggerConfig 注解写法 ; fix 修正 ruoyi-common-doc pom 描述 ; delete LogAspect 去掉无用注解 ;
28 lines
840 B
XML
28 lines
840 B
XML
<?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>ruoyi-vue-plus</artifactId>
|
|
<groupId>com.ruoyi</groupId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<modules>
|
|
<module>ruoyi-demo</module>
|
|
<module>ruoyi-generator</module>
|
|
<module>ruoyi-job</module>
|
|
<module>ruoyi-system</module>
|
|
</modules>
|
|
|
|
<artifactId>ruoyi-modules</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<description>
|
|
ruoyi-modules 业务模块
|
|
</description>
|
|
|
|
</project>
|