|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?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>
- <dependency>
- <groupId>com.auth0</groupId>
- <artifactId>java-jwt</artifactId>
- <version>3.4.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
-
- <dependency>
- <groupId>com.github.docker-java</groupId>
- <artifactId>docker-java</artifactId>
- <version>3.2.11</version>
- </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>
|