Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cyclonedx plugin to generate sboms for release
Browse files Browse the repository at this point in the history
LogFlames committed Jan 24, 2025

Verified

This commit was signed with the committer’s verified signature.
LogFlames Elias Lundell
1 parent 60597a0 commit d8a6bdb
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -257,6 +257,19 @@
</java>
</configuration>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<goals>
<goal>makeAggregateBom</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
13 changes: 13 additions & 0 deletions spoon-javadoc/pom.xml
Original file line number Diff line number Diff line change
@@ -56,6 +56,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<goals>
<goal>makeAggregateBom</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>

0 comments on commit d8a6bdb

Please sign in to comment.