Skip to content

Commit 74b93ab

Browse files
authored
Merge pull request #32 from karelmaxa/upgrade
Fix project build
2 parents a72b88c + 30d2af0 commit 74b93ab

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ jobs:
1010
java: [11, 17]
1111
name: "Java ${{ matrix.java }} build"
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Set up JDK
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v3
1616
with:
1717
java-version: ${{ matrix.java }}
18+
distribution: 'temurin'
1819
- name: Cache Maven packages
19-
uses: actions/cache@v2
20+
uses: actions/cache@v3
2021
with:
2122
path: ~/.m2
2223
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

bundle-parent/pom.xml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
information: "Portions copyright [year] [name of copyright owner]".
1414
1515
Copyright (c) 2010-2015 ForgeRock AS. All rights reserved.
16-
Portions Copyright 2017-2022 Wren Security.
16+
Portions Copyright 2017-2025 Wren Security.
1717
-->
1818
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1919
<modelVersion>4.0.0</modelVersion>
@@ -167,14 +167,6 @@
167167
<plugin>
168168
<groupId>org.apache.maven.plugins</groupId>
169169
<artifactId>maven-javadoc-plugin</artifactId>
170-
171-
<configuration>
172-
<links>
173-
<link>http://download.oracle.com/javase/8/docs/api/</link>
174-
<link>http://docs.groovy-lang.org/latest/html/api/</link>
175-
<link>http://openicf.forgerock.org/apidocs/</link>
176-
</links>
177-
</configuration>
178170
</plugin>
179171

180172
<!-- XXX FIXME

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
information: "Portions copyright [year] [name of copyright owner]".
1414
1515
Copyright (c) 2010-2015 ForgeRock AS. All rights reserved.
16-
Portions Copyright 2017-2022 Wren Security.
16+
Portions Copyright 2017-2025 Wren Security.
1717
-->
1818
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1919
<modelVersion>4.0.0</modelVersion>
2020

2121
<parent>
2222
<groupId>org.wrensecurity</groupId>
2323
<artifactId>wrensec-parent</artifactId>
24-
<version>3.4.0</version>
24+
<version>4.0.2</version>
2525
</parent>
2626

2727
<groupId>org.wrensecurity.wrenicf</groupId>

0 commit comments

Comments
 (0)