<?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>com.gridatek</groupId>
    <artifactId>spring-vault-ssl-bundle-parent-project</artifactId>
    <version>0.10.0</version>
  </parent>
  <groupId>com.gridatek</groupId>
  <artifactId>spring-vault-ssl-bundle</artifactId>
  <version>0.10.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>
  <url>${scm.url}</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://opensource.org/licenses/MIT</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>${scm.connection}</connection>
    <developerConnection>${scm.developerConnection}</developerConnection>
    <url>${scm.url}</url>
  </scm>
  <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>
