chore: 项目结构调整优化

This commit is contained in:
Ray Hao 2024-02-28 18:31:34 +08:00
parent 95835d19a1
commit 6e6fb721a8
4 changed files with 7 additions and 35 deletions

13
pom.xml
View File

@ -189,13 +189,6 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-log</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-security</artifactId>
@ -214,6 +207,12 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-sms</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>

View File

@ -1,22 +0,0 @@
package com.youlai.common.constant;
/**
* OAuth2 常量
*
* @author haoxr
* @since 3.1.0
*/
public interface OAuth2Constants {
/**
* 验证码唯一标识, 用于从Redis获取验证码Code和输入的验证码进行比对
*/
String CAPTCHA_ID = "captchaId";
/**
* 验证码 Code
*/
String CAPTCHA_CODE = "captchaCode";
}

View File

@ -18,11 +18,6 @@
<artifactId>common-core</artifactId>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-log</artifactId>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-redis</artifactId>

View File

@ -20,8 +20,8 @@
<module>common-web</module>
<module>common-mybatis</module>
<module>common-rabbitmq</module>
<module>common-log</module>
<module>common-security</module>
<module>common-seata</module>
<module>common-sms</module>
</modules>
</project>