mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-24 11:22:48 +00:00
Including CycloneDX for SBOM generation
This commit is contained in:
parent
fa8f6836bd
commit
308f7ec783
2 changed files with 9 additions and 2 deletions
|
@ -3,6 +3,7 @@ plugins {
|
|||
id 'org.springframework.boot' version '3.3.0'
|
||||
id 'io.spring.dependency-management' version '1.1.5'
|
||||
id 'org.graalvm.buildtools.native' version '0.10.2'
|
||||
id 'org.cyclonedx.bom' version '1.8.2'
|
||||
id 'io.spring.javaformat' version '0.0.41'
|
||||
id "io.spring.nohttp" version "0.0.11"
|
||||
}
|
||||
|
|
10
pom.xml
10
pom.xml
|
@ -257,8 +257,8 @@
|
|||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Spring Boot Actuator displays build-related information if a git.properties
|
||||
file is present at the classpath -->
|
||||
<!-- Spring Boot Actuator displays build-related information if a git.properties file is
|
||||
present at the classpath -->
|
||||
<plugin>
|
||||
<groupId>io.github.git-commit-id</groupId>
|
||||
<artifactId>git-commit-id-maven-plugin</artifactId>
|
||||
|
@ -267,6 +267,12 @@
|
|||
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- Spring Boot Actuator displays sbom-related information if a CycloneDX SBOM file is
|
||||
present at the classpath -->
|
||||
<plugin>
|
||||
<groupId>org.cyclonedx</groupId>
|
||||
<artifactId>cyclonedx-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
|
Loading…
Reference in a new issue