Files
orion-visor/orion-ops-module-asset/orion-ops-module-asset-service/pom.xml

87 lines
2.8 KiB
XML
Raw Normal View History

2023-08-17 14:36:31 +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>
2023-08-21 18:42:15 +08:00
<artifactId>orion-ops-module-asset</artifactId>
2023-08-17 14:36:31 +08:00
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2023-08-21 18:42:15 +08:00
<artifactId>orion-ops-module-asset-service</artifactId>
2023-08-17 14:36:31 +08:00
<packaging>jar</packaging>
2023-08-21 18:42:15 +08:00
<description>项目资产模块</description>
2023-08-17 14:36:31 +08:00
<url>https://github.com/lijiahangmax/orion-ops-pro</url>
<dependencies>
<dependency>
<groupId>com.orion.ops</groupId>
2023-10-09 17:35:36 +08:00
<artifactId>orion-ops-framework-common</artifactId>
2023-08-17 14:36:31 +08:00
</dependency>
<!-- infra provider -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-module-infra-provider</artifactId>
<version>${revision}</version>
</dependency>
2023-10-09 16:25:19 +08:00
<!-- asset provider -->
2023-08-17 14:36:31 +08:00
<dependency>
<groupId>com.orion.ops</groupId>
2023-08-21 18:42:15 +08:00
<artifactId>orion-ops-module-asset-provider</artifactId>
2023-08-17 14:36:31 +08:00
<version>${revision}</version>
</dependency>
2023-10-09 17:35:36 +08:00
<!-- web -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-web</artifactId>
</dependency>
<!-- log -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-log</artifactId>
</dependency>
<!-- operator-log -->
2023-10-09 18:48:18 +08:00
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-biz-operator-log</artifactId>
</dependency>
2023-10-09 17:35:36 +08:00
<!-- desensitize -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-desensitize</artifactId>
</dependency>
2023-08-17 14:36:31 +08:00
<!-- security -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-security</artifactId>
</dependency>
<!-- redis -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-redis</artifactId>
</dependency>
<!-- mybatis -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-mybatis</artifactId>
</dependency>
<!-- storage -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-spring-boot-starter-storage</artifactId>
</dependency>
</dependencies>
</project>