mirror of https://gitee.com/stylefeng/roses
【7.6.0】【框架改造】【auth】调整依赖顺序
parent
7f3fc64772
commit
8bc09638cf
|
@ -17,6 +17,13 @@
|
|||
|
||||
<dependencies>
|
||||
|
||||
<!--auth本模块的api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- 多数据源操作的api -->
|
||||
<!-- 获取当前登录用户之前需要切数据源 -->
|
||||
<dependency>
|
||||
|
@ -32,13 +39,6 @@
|
|||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--auth本模块的api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>auth-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--定时任务的api-->
|
||||
<!--用来自动清理过期的登录用户缓存-->
|
||||
<dependency>
|
||||
|
@ -55,14 +55,6 @@
|
|||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源模块的api-->
|
||||
<!--权限校验等功能,需要用到资源模块的接口-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--安全模块的api-->
|
||||
<!--需要用到校验验证码的接口-->
|
||||
<dependency>
|
||||
|
@ -79,6 +71,14 @@
|
|||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--系统消息业务模块的api-->
|
||||
<!--获取当前登录用户的ws-url-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>message-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--jwt模块的api-->
|
||||
<!--token用的jwt token-->
|
||||
<dependency>
|
||||
|
@ -87,17 +87,6 @@
|
|||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
<!--web获取token的操作需要从http header中取-->
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>javax.servlet-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!--缓存的依赖-->
|
||||
<!--session manager可以用redis,可以用内存的-->
|
||||
<dependency>
|
||||
|
@ -118,14 +107,6 @@
|
|||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<!--系统消息业务模块的api-->
|
||||
<!--获取当前登录用户的ws-url-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>message-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue