|
@@ -1,164 +0,0 @@
|
|
|
-<?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>
|
|
|
- <artifactId>simulation-cloud</artifactId>
|
|
|
- <groupId>com.css</groupId>
|
|
|
- <version>1.0</version>
|
|
|
- </parent>
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
-
|
|
|
- <artifactId>simulation-resource-scheduler-agent</artifactId>
|
|
|
-
|
|
|
- <properties>
|
|
|
- <maven.compiler.source>8</maven.compiler.source>
|
|
|
- <maven.compiler.target>8</maven.compiler.target>
|
|
|
- </properties>
|
|
|
-
|
|
|
- <dependencies>
|
|
|
-
|
|
|
-
|
|
|
- <!-- minio - 开始 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.squareup.okhttp3</groupId>
|
|
|
- <artifactId>okhttp</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.minio</groupId>
|
|
|
- <artifactId>minio</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- minio - 结束 -->
|
|
|
-
|
|
|
- <!-- 缓存 - 开始-->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
- <artifactId>commons-pool2</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- 缓存 - 结束-->
|
|
|
-
|
|
|
- <!-- docker 客户端 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.docker-java</groupId>
|
|
|
- <artifactId>docker-java</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- kubernetes 客户端 -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.kubernetes</groupId>
|
|
|
- <artifactId>client-java</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
-
|
|
|
- <!-- apache kafka - 开始 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.kafka</groupId>
|
|
|
- <artifactId>kafka-clients</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.kafka</groupId>
|
|
|
- <artifactId>spring-kafka</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- apache kafka - 结束 -->
|
|
|
-
|
|
|
- <!-- 数据库 - 开始 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.pagehelper</groupId>
|
|
|
- <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.mybatis.spring.boot</groupId>
|
|
|
- <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
- <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- 数据库 - 结束 -->
|
|
|
-
|
|
|
- <!-- nacos - 开始 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- nacos - 结束 -->
|
|
|
-
|
|
|
- <!-- api-common -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.css</groupId>
|
|
|
- <artifactId>api-common</artifactId>
|
|
|
- <version>${project.version}</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 基础 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-loadbalancer</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-validation</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <version>${spring-boot.version}</version>
|
|
|
- <configuration>
|
|
|
- <fork>true</fork>
|
|
|
- <addResources>true</addResources>
|
|
|
- </configuration>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <goals>
|
|
|
- <goal>repackage</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-</project>
|