sol-cloud/cloud/plugin/plugin-discovery/plugin-discovery-k8s/pom.xml
smile 9c91fcfb10 feat(build): add startup build metadata banner and unify module revision
- add Spring Boot banner with build and git metadata
- import build-info and git properties for gateway and web services
- add build info environment post processor
- align docker startup commands with build-info location
- unify internal Maven module versions with revision/project.version
2026-04-02 15:42:12 +08:00

29 lines
No EOL
1.1 KiB
XML

<?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>
<artifactId>plugin-discovery</artifactId>
<version>${revision}</version>
</parent>
<artifactId>plugin-discovery-k8s</artifactId>
<dependencies>
<dependency>
<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>
</dependency>
<dependency>
<groupId>com.bgasol</groupId>
<artifactId>plugin-redis</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>