rax-remote-2/common/common-security/pom.xml

58 lines
2.0 KiB
XML
Raw Permalink Normal View History

2024-01-31 16:31:50 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common</artifactId>
2024-01-31 16:31:50 +08:00
<version>3.7.3</version>
</parent>
2024-02-21 11:47:40 +08:00
<artifactId>common-security</artifactId>
2024-01-31 16:31:50 +08:00
<packaging>jar</packaging>
2024-02-21 11:47:40 +08:00
<description>安全工具类</description>
2024-01-31 16:31:50 +08:00
<dependencies>
<!--工具类核心包-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-core</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-extra</artifactId>
</dependency>
<!--UPMS API-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>upms-api</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<!--common utils-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
</dependency>
<!--feign 工具类-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-jose</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-authorization-server</artifactId>
<version>${spring.authorization.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
</dependencies>
</project>