Skip to content

Commit 7c12be1

Browse files
committed
Updated
1 parent e11e423 commit 7c12be1

File tree

4 files changed

+48
-86
lines changed

4 files changed

+48
-86
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 84 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
java-version: ${{ matrix.Java }}
4242
distribution: 'adopt'
43-
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
43+
server-id: central
4444
server-username: MAVEN_USERNAME
4545
server-password: MAVEN_PASSWORD
4646

as2-server/findbugs-exclude.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!--
2+
3+
Copyright (C) 2015-2025 Philip Helger (www.helger.com)
4+
philip[at]helger[dot]com
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
18+
-->
19+
<FindBugsFilter>
20+
<!-- Docs: http://findbugs.sourceforge.net/manual/filter.html -->
21+
</FindBugsFilter>

pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.helger</groupId>
2424
<artifactId>parent-pom</artifactId>
25-
<version>2.0.8</version>
25+
<version>2.1.1</version>
2626
</parent>
2727
<groupId>com.helger.as2</groupId>
2828
<artifactId>as2-lib-parent-pom</artifactId>
@@ -204,6 +204,31 @@
204204
<source>8</source>
205205
</configuration>
206206
</plugin>
207+
<plugin>
208+
<groupId>org.cyclonedx</groupId>
209+
<artifactId>cyclonedx-maven-plugin</artifactId>
210+
<version>2.9.1</version>
211+
<executions>
212+
<execution>
213+
<id>default</id>
214+
<phase>package</phase>
215+
<goals>
216+
<goal>makeBom</goal>
217+
</goals>
218+
</execution>
219+
<execution>
220+
<id>aggregate</id>
221+
<inherited>false</inherited>
222+
<phase>package</phase>
223+
<goals>
224+
<goal>makeAggregateBom</goal>
225+
</goals>
226+
</execution>
227+
</executions>
228+
<configuration>
229+
<outputFormat>xml</outputFormat>
230+
</configuration>
231+
</plugin>
207232
</plugins>
208233
</build>
209234
</project>

0 commit comments

Comments
 (0)