You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.dubhe</groupId>
- <artifactId>server</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>common-k8s</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>k8s 通用模块</name>
- <description>Dubhe K8s Common</description>
-
- <dependencies>
- <!-- Biz 通用配置 -->
- <dependency>
- <groupId>org.dubhe.biz</groupId>
- <artifactId>file</artifactId>
- <version>${org.dubhe.biz.file.version}</version>
- </dependency>
- <dependency>
- <groupId>org.dubhe.biz</groupId>
- <artifactId>redis</artifactId>
- <version>${org.dubhe.biz.redis.version}</version>
- </dependency>
- <dependency>
- <groupId>org.dubhe.biz</groupId>
- <artifactId>db</artifactId>
- <version>${org.dubhe.biz.db.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.dubhe.cloud</groupId>
- <artifactId>swagger</artifactId>
- <version>${org.dubhe.cloud.swagger.version}</version>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
-
- <!-- fabric8 -->
- <dependency>
- <groupId>io.fabric8</groupId>
- <artifactId>kubernetes-client</artifactId>
- <version>${fabric.io.version}</version>
- </dependency>
-
- <!-- gson -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>elasticsearch-rest-high-level-client</artifactId>
- </dependency>
- <dependency>
- <groupId>org.elasticsearch</groupId>
- <artifactId>elasticsearch</artifactId>
- </dependency>
- <!-- https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api -->
- <dependency>
- <groupId>jakarta.validation</groupId>
- <artifactId>jakarta.validation-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.dubhe.biz</groupId>
- <artifactId>data-permission</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <filtering>true</filtering>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- </build>
-
- </project>
|