|
@@ -118,6 +118,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
|
|
|
<spotbugs-maven-plugin.version>4.2.0</spotbugs-maven-plugin.version>
|
|
|
<jsonschema2pojo-maven-plugin.version>1.1.1</jsonschema2pojo-maven-plugin.version>
|
|
|
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
|
|
|
+ <cyclonedx.version>2.7.3</cyclonedx.version>
|
|
|
|
|
|
<shell-executable>bash</shell-executable>
|
|
|
|
|
@@ -484,6 +485,19 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.cyclonedx</groupId>
|
|
|
+ <artifactId>cyclonedx-maven-plugin</artifactId>
|
|
|
+ <version>${cyclonedx.version}</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>makeBom</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
|
|
@@ -592,6 +606,10 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.cyclonedx</groupId>
|
|
|
+ <artifactId>cyclonedx-maven-plugin</artifactId>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|