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>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor</artifactId>
|
2023-06-20 16:05:15 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-launch</artifactId>
|
2023-06-20 16:05:15 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2024-05-16 00:03:30 +08:00
|
|
|
<description>后端服务主项目容器 按需引用 orion-visor-module-xxx 依赖</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>
|
|
|
|
|
<!-- spring boot 配置所需依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2025-01-08 11:40:42 +08:00
|
|
|
|
2025-06-25 18:57:05 +08:00
|
|
|
<!-- spring boot starter -->
|
2023-07-07 17:02:09 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
2023-06-20 16:05:15 +08:00
|
|
|
|
2025-06-25 18:57:05 +08:00
|
|
|
<!-- common -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- module common -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-module-common</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- module service -->
|
2025-01-08 11:40:42 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-module-infra-service</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-module-asset-service</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2025-06-25 18:57:05 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-module-exec-service</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-module-terminal-service</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2025-01-08 11:40:42 +08:00
|
|
|
|
|
|
|
|
<!-- framework starter -->
|
2023-06-20 16:05:15 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-banner</artifactId>
|
2023-06-20 16:05:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-web</artifactId>
|
2023-06-20 16:05:15 +08:00
|
|
|
</dependency>
|
2023-06-21 18:34:22 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-swagger</artifactId>
|
2023-06-21 18:34:22 +08:00
|
|
|
</dependency>
|
2023-06-23 18:25:49 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-datasource</artifactId>
|
2023-06-23 18:25:49 +08:00
|
|
|
</dependency>
|
2023-06-20 16:05:15 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-mybatis</artifactId>
|
2023-06-20 16:05:15 +08:00
|
|
|
</dependency>
|
2025-01-08 11:40:42 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-spring-boot-starter-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara.visor</groupId>
|
|
|
|
|
<artifactId>orion-visor-spring-boot-starter-encrypt</artifactId>
|
|
|
|
|
</dependency>
|
2023-06-25 20:30:56 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-job</artifactId>
|
2023-06-25 20:30:56 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-websocket</artifactId>
|
2023-06-25 20:30:56 +08:00
|
|
|
</dependency>
|
2023-06-28 16:08:08 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-redis</artifactId>
|
2023-06-28 16:08:08 +08:00
|
|
|
</dependency>
|
2023-06-30 11:12:42 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-desensitize</artifactId>
|
2023-06-30 11:12:42 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-log</artifactId>
|
2023-06-30 11:12:42 +08:00
|
|
|
</dependency>
|
2023-07-03 11:09:29 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-storage</artifactId>
|
2023-07-06 15:01:36 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-security</artifactId>
|
2023-07-03 11:09:29 +08:00
|
|
|
</dependency>
|
2023-07-11 16:00:06 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-monitor</artifactId>
|
2023-07-11 16:00:06 +08:00
|
|
|
</dependency>
|
2023-10-09 18:48:18 +08:00
|
|
|
<dependency>
|
2024-10-29 09:59:50 +08:00
|
|
|
<groupId>org.dromara.visor</groupId>
|
2024-05-16 00:03:30 +08:00
|
|
|
<artifactId>orion-visor-spring-boot-starter-biz-operator-log</artifactId>
|
2023-10-09 18:48:18 +08:00
|
|
|
</dependency>
|
2023-06-20 16:05:15 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<!-- 设置构建的 jar 包名 -->
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<resources>
|
2025-03-26 01:42:14 +08:00
|
|
|
<!-- 应用配置过滤 -->
|
2023-06-20 16:05:15 +08:00
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
2025-03-26 01:42:14 +08:00
|
|
|
<includes>
|
|
|
|
|
<include>*.yaml</include>
|
|
|
|
|
</includes>
|
2023-06-20 16:05:15 +08:00
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- 打包 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<!-- 如果 spring.boot.version 版本修改, 则这里也要跟着修改 -->
|
2023-12-28 00:26:46 +08:00
|
|
|
<version>2.7.17</version>
|
2023-06-20 16:05:15 +08:00
|
|
|
<configuration>
|
|
|
|
|
<fork>true</fork>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<!-- 将引入的 jar 打入其中 -->
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 资源打包 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<version>2.7</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<delimiters>
|
|
|
|
|
<delimiter>@</delimiter>
|
|
|
|
|
</delimiters>
|
|
|
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-10-29 09:59:50 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>8</source>
|
|
|
|
|
<target>8</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2023-06-20 16:05:15 +08:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|