2025-02-12 09:22:25 +00: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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.bgasol</groupId>
|
2026-01-08 06:47:32 +00:00
|
|
|
<artifactId>plugin-discovery</artifactId>
|
2025-02-12 09:22:25 +00:00
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
2026-01-08 06:47:32 +00:00
|
|
|
<artifactId>plugin-discovery-k8s</artifactId>
|
2025-02-12 09:22:25 +00:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2026-01-08 06:15:04 +00:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-kubernetes-fabric8</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- BouncyCastle - 解决 EC Key 问题 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
|
|
|
<version>1.78.1</version>
|
2025-02-12 09:22:25 +00:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|