初始化 项目机器资源模块.

This commit is contained in:
lijiahang
2023-08-17 14:36:31 +08:00
parent 2521c856e2
commit df5949dbd6
5 changed files with 115 additions and 0 deletions

View File

@@ -146,6 +146,9 @@ orion:
infra:
group: "infra - 基建模块"
path: "infra"
machine:
group: "machine - 机器资源模块"
path: "machine"
logging:
# 全局日志打印

View File

@@ -0,0 +1,25 @@
<?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-module-machine</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>orion-ops-module-machine-provider</artifactId>
<packaging>jar</packaging>
<description>项目机器资源模块</description>
<url>https://github.com/lijiahangmax/orion-ops-pro</url>
<dependencies>
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-common</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,63 @@
<?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-module-machine</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>orion-ops-module-infra-service</artifactId>
<packaging>jar</packaging>
<description>项目机器资源模块</description>
<url>https://github.com/lijiahangmax/orion-ops-pro</url>
<dependencies>
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-common</artifactId>
</dependency>
<!-- infra provider -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-module-infra-provider</artifactId>
<version>${revision}</version>
</dependency>
<!-- machine provider -->
<dependency>
<groupId>com.orion.ops</groupId>
<artifactId>orion-ops-module-machine-provider</artifactId>
<version>${revision}</version>
</dependency>
<!-- 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>

View File

@@ -0,0 +1,23 @@
<?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-pro</artifactId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>orion-ops-module-machine</artifactId>
<packaging>pom</packaging>
<description>项目机器资源模块</description>
<url>https://github.com/lijiahangmax/orion-ops-pro</url>
<modules>
<module>orion-ops-module-machine-provider</module>
<module>orion-ops-module-machine-service</module>
</modules>
</project>

View File

@@ -18,6 +18,7 @@
<module>orion-ops-framework</module>
<module>orion-ops-launch</module>
<module>orion-ops-module-infra</module>
<module>orion-ops-module-machine</module>
</modules>
<properties>