spring-vault-ssl-bundle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.gridadev</groupId> <artifactId>spring-vault-ssl-bundle</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.gridadev</groupId> <artifactId>spring-vault-ssl-bundle-parent-project</artifactId> <version>0.2.0</version> </parent> <groupId>io.github.gridadev</groupId> <artifactId>spring-vault-ssl-bundle</artifactId> <version>0.2.0</version> <name>Spring Vault SSL Bundle Starter</name> <description>A Spring Boot starter that enables secure loading and automatic reloading of SSL bundles (certificates, keys, trust stores) from HashiCorp Vault using Spring Boot's SSL Bundle support.</description> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-vault-config</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>