Skip to content

Commit d1cd470

Browse files
committed
Convert patch to patchable format
1 parent 99dbb92 commit d1cd470

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
From 1296e08c2d202b6b6a4efc5da8670ecd07c7a66c Mon Sep 17 00:00:00 2001
2+
From: =?UTF-8?q?S=C3=B6nke=20Liebau?= <[email protected]>
3+
Date: Tue, 18 Mar 2025 21:37:35 +0100
4+
Subject: Add CycloneDX plugin
5+
6+
---
7+
pom.xml | 17 +++++++++++++++++
8+
1 file changed, 17 insertions(+)
9+
10+
diff --git a/pom.xml b/pom.xml
11+
index 9656bdbe..7a2b114f 100644
12+
--- a/pom.xml
13+
+++ b/pom.xml
14+
@@ -556,6 +556,23 @@
15+
</excludes>
16+
</configuration>
17+
</plugin>
18+
+ <plugin>
19+
+ <groupId>org.cyclonedx</groupId>
20+
+ <artifactId>cyclonedx-maven-plugin</artifactId>
21+
+ <version>2.8.0</version>
22+
+ <configuration>
23+
+ <projectType>application</projectType>
24+
+ <schemaVersion>1.5</schemaVersion>
25+
+ </configuration>
26+
+ <executions>
27+
+ <execution>
28+
+ <phase>package</phase>
29+
+ <goals>
30+
+ <goal>makeBom</goal>
31+
+ </goals>
32+
+ </execution>
33+
+ </executions>
34+
+ </plugin>
35+
36+
</plugins>
37+

0 commit comments

Comments
 (0)