Files
orion-visor/orion-ops-framework/orion-ops-spring-boot-starter-security/pom.xml

38 lines
1.3 KiB
XML
Raw Normal View History

2023-07-06 15:01:36 +08: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">
<parent>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-framework</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>orion-ops-spring-boot-starter-security</artifactId>
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<description>项目 security 配置包</description>
<url>https://github.com/lijiahangmax/orion-ops-pro</url>
<dependencies>
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-common</artifactId>
</dependency>
2023-07-07 17:02:09 +08:00
<!-- security -->
2023-07-06 15:01:36 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2023-07-07 17:02:09 +08:00
<artifactId>spring-boot-starter-security</artifactId>
2023-07-06 15:01:36 +08:00
</dependency>
2023-07-07 17:02:09 +08:00
<!-- web -->
2023-07-06 15:01:36 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
2023-07-07 17:02:09 +08:00
<artifactId>spring-boot-starter-web</artifactId>
2023-07-06 15:01:36 +08:00
</dependency>
</dependencies>
</project>