mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 00:03:51 +08:00 
			
		
		
		
	add 新增 modules 模块, 包含 demo, generator, job, system 模块 ; update 更新模块包名 rateLimiter => ratelimiter ; refactor 重构 ratelimiter 模块, 参考幂等模块加入自动装配相关配置 ; fix 修正 AsyncConfig 实现接口 ; fix 修正 SwaggerConfig 注解写法 ; fix 修正 ruoyi-common-doc pom 描述 ; delete LogAspect 去掉无用注解 ;
		
			
				
	
	
		
			32 lines
		
	
	
		
			969 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			969 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>
 | 
						|
        <groupId>com.ruoyi</groupId>
 | 
						|
        <artifactId>ruoyi-common</artifactId>
 | 
						|
        <version>${revision}</version>
 | 
						|
        <relativePath>../pom.xml</relativePath>
 | 
						|
    </parent>
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <artifactId>ruoyi-common-ratelimiter</artifactId>
 | 
						|
 | 
						|
    <description>
 | 
						|
        ruoyi-common-ratelimiter 限流功能
 | 
						|
    </description>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.ruoyi</groupId>
 | 
						|
            <artifactId>ruoyi-common-core</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.ruoyi</groupId>
 | 
						|
            <artifactId>ruoyi-common-redis</artifactId>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
</project>
 |