spring-vault-ssl-bundle-parent-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.gridadev</groupId> <artifactId>spring-vault-ssl-bundle-parent-project</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> <groupId>io.github.gridadev</groupId> <artifactId>spring-vault-ssl-bundle-parent-project</artifactId> <version>0.2.0</version> <packaging>pom</packaging> <name>Spring Vault SSL Bundle - Parent Project</name> <description>A parent POM for the Spring Boot integration that enables SSL bundle support with HashiCorp Vault for secure certificate management and rotation.</description> <url>https://github.com/GridaDev/spring-vault-ssl-bundle</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>GridaDev</id> <name>GridaDev</name> <email>khalil.lagrida@gmail.com</email> <organization>GridaDev</organization> <organizationUrl>https://github.com/GridaDev</organizationUrl> </developer> </developers> <modules> <module>spring-vault-ssl-bundle</module> <module>spring-vault-ssl-bundle-test-app</module> </modules> <scm> <connection>scm:git:git://github.com/GridaDev/spring-vault-ssl-bundle.git</connection> <developerConnection>scm:git:ssh://github.com/GridaDev/spring-vault-ssl-bundle.git</developerConnection> <url>https://github.com/GridaDev/spring-vault-ssl-bundle</url> </scm> <properties> <java.version>17</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <spring-boot.version>3.5.4</spring-boot.version> <spring-cloud.version>2025.0.0</spring-cloud.version> <revision>0.2.0</revision> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring-boot.version}</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.43.0</version> <executions> <execution> <id>spotless-check</id> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <java> <palantirJavaFormat /> <removeUnusedImports /> </java> <pom> <includes> <include>pom.xml</include> </includes> <sortPom> <expandEmptyElements>false</expandEmptyElements> <nrOfIndentSpace>4</nrOfIndentSpace> <sortDependencies>scope,groupId,artifactId</sortDependencies> </sortPom> </pom> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-profile</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>