Files
orion-visor/orion-visor-common/pom.xml

90 lines
2.8 KiB
XML
Raw Normal View History

2023-06-20 16:05:15 +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>
2024-10-29 09:59:50 +08:00
<groupId>org.dromara.visor</groupId>
2025-01-07 18:23:39 +08:00
<artifactId>orion-visor</artifactId>
2023-06-20 16:05:15 +08:00
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2025-01-07 18:23:39 +08:00
<artifactId>orion-visor-common</artifactId>
2023-06-20 16:05:15 +08:00
<name>${project.artifactId}</name>
<packaging>jar</packaging>
<description>项目公共基准包</description>
2024-06-12 15:13:07 +08:00
<url>https://github.com/dromara/orion-visor</url>
2023-06-20 16:05:15 +08:00
<dependencies>
<dependency>
2024-10-29 09:59:50 +08:00
<groupId>cn.orionsec.kit</groupId>
2023-06-20 16:05:15 +08:00
<artifactId>orion-all</artifactId>
</dependency>
2023-07-13 09:57:32 +08:00
<!-- lombok -->
2023-06-20 16:05:15 +08:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
2023-06-21 18:34:22 +08:00
2023-07-13 09:57:32 +08:00
<!-- aspectj -->
2023-07-04 12:17:17 +08:00
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
2023-06-21 18:34:22 +08:00
<!-- mapstruct -->
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
</dependency>
2023-07-07 10:50:57 +08:00
<!-- transmittable -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
</dependency>
2023-07-08 00:57:32 +08:00
<!-- validation -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
2023-07-07 10:50:57 +08:00
<!-- configuration -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- web -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<scope>provided</scope>
</dependency>
2023-07-13 09:57:32 +08:00
<!-- security -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
2023-06-21 18:34:22 +08:00
<!-- doc -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
</dependency>
2023-06-20 16:05:15 +08:00
</dependencies>
</project>