roses/kernel-d-auth/auth-sdk/pom.xml

117 lines
3.7 KiB
XML
Raw Normal View History

2020-12-11 10:18:48 +00:00
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-d-auth</artifactId>
<version>7.0.3</version>
2020-12-11 10:18:48 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>auth-sdk</artifactId>
<packaging>jar</packaging>
<dependencies>
<!--auth本模块的api-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>auth-api</artifactId>
<version>7.0.3</version>
2020-12-11 10:18:48 +00:00
</dependency>
<!--定时任务的api-->
<!--用来自动清理过期的登录用户缓存-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>timer-api</artifactId>
<version>7.0.3</version>
</dependency>
2021-03-17 08:29:25 +00:00
<!--日志记录模块的api-->
<!--记录登录日志用-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>log-api</artifactId>
<version>7.0.3</version>
2021-03-17 08:29:25 +00:00
</dependency>
2020-12-11 10:18:48 +00:00
<!--资源模块的api-->
<!--权限校验等功能,需要用到资源模块的接口-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>scanner-api</artifactId>
<version>7.0.3</version>
2020-12-11 10:18:48 +00:00
</dependency>
<!--安全模块的api-->
<!--需要用到校验验证码的接口-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>security-api</artifactId>
<version>7.0.3</version>
</dependency>
2020-12-11 10:18:48 +00:00
<!--system业务模块的api-->
<!--登录和鉴权需要用到用户相关的接口-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>system-api</artifactId>
<version>7.0.3</version>
2020-12-11 10:18:48 +00:00
</dependency>
<!--jwt模块的api-->
<!--token用的jwt token-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>jwt-api</artifactId>
<version>7.0.3</version>
2020-12-11 10:18:48 +00:00
</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>
2020-12-25 05:52:36 +00:00
<!--缓存的依赖-->
2020-12-11 10:18:48 +00:00
<!--session manager可以用redis可以用内存的-->
<dependency>
2020-12-26 03:12:41 +00:00
<groupId>cn.stylefeng.roses</groupId>
2020-12-25 05:52:36 +00:00
<artifactId>cache-api</artifactId>
<version>7.0.3</version>
2020-12-25 05:52:36 +00:00
</dependency>
<dependency>
2020-12-26 03:12:41 +00:00
<groupId>cn.stylefeng.roses</groupId>
2020-12-25 05:52:36 +00:00
<artifactId>cache-sdk-memory</artifactId>
<version>7.0.3</version>
2020-12-25 05:52:36 +00:00
<scope>provided</scope>
</dependency>
<dependency>
2020-12-26 03:12:41 +00:00
<groupId>cn.stylefeng.roses</groupId>
2020-12-25 05:52:36 +00:00
<artifactId>cache-sdk-redis</artifactId>
<version>7.0.3</version>
2020-12-25 05:52:36 +00:00
<scope>provided</scope>
2020-12-11 10:18:48 +00:00
</dependency>
<!--系统消息业务模块的api-->
<!--获取当前登录用户的ws-url-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>message-api</artifactId>
<version>7.0.3</version>
</dependency>
2020-12-11 10:18:48 +00:00
</dependencies>
</project>