spring-boot-starter-runtime-metadata
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.cftoolsuite.actuator</groupId> <artifactId>spring-boot-starter-runtime-metadata</artifactId> <version>0.6.0</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.3.5</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>org.cftoolsuite.actuator</groupId> <artifactId>spring-boot-starter-runtime-metadata</artifactId> <version>0.6.0</version> <name>spring-boot-starter-runtime-metadata</name> <description>Adds custom actuator endpoints that share details on the dependencies the application requires at runtime</description> <scm> <connection>scm:git:git://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata.git</connection> <developerConnection>scm:git:ssh://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata.git</developerConnection> <url>https://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata</url> </scm> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>cphillipson</id> <name>Chris Phillipson</name> <email>cphillipson@cftoolsuite.org</email> <roles> <role>architect</role> <role>developer</role> </roles> <organization>Cloud Foundry Tool Suite</organization> <organizationUrl>https://github.com/cf-toolsuite</organizationUrl> <timezone>America/Seattle</timezone> </developer> </developers> <issueManagement> <url>https://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata/issues</url> <system>GitHub Issues</system> </issueManagement> <properties> <java.version>21</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.cyclonedx</groupId> <artifactId>cyclonedx-core-java</artifactId> <version>9.1.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <skip>false</skip> <doclint>none</doclint> <additionalOptions>-Xdoclint:all -Xdoclint:-missing</additionalOptions> <!-- Default configuration for all reports --> <failOnError>false</failOnError> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.43.0</version> <configuration> <java> <excludes> <exclude>**/_*.java</exclude> </excludes> <googleJavaFormat> <version>1.19.1</version> <style>AOSP</style> <reflowLongStrings>true</reflowLongStrings> <formatJavadoc>false</formatJavadoc> </googleJavaFormat> <removeUnusedImports/> </java> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>github</id> <distributionManagement> <site> <id>github</id> <name>Deployment through Maven's SCM Publish Plugin</name> <url>scm:git:git@github.com:cf-toolsuite/spring-boot-starter-runtime-metadata.git</url> </site> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/cf-toolsuite/spring-boot-starter-runtime-metadata</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</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> <profile> <id>maven-central</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</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> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>