Skip to content

Commit 9bbe81c

Browse files
committed
Merge remote-tracking branch 'origin/update-from-template' into develop
2 parents e692d96 + 447f71d commit 9bbe81c

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.config/pmd/java/ruleset.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<ruleset name="Default"
33
xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
5+
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.github.io/ruleset_2_0_0.xsd">
66

77
<description>
88
This ruleset checks the code for discouraged programming constructs.

.github/workflows/broken-links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Find already existing issue
2727
id: find-issue
2828
run: |
29-
echo "number=$(gh issue list -l 'bug' -l 'automated' -L 1 -S 'in:title \"Link Checker Report\"' -s 'open' --json 'number' --jq '.[].number')" >> $GITHUB_OUTPUT
29+
echo "number=$(gh issue list -l 'bug' -l 'automated' -L 1 -S 'in:title "Link Checker Report"' -s 'open' --json 'number' --jq '.[].number')" >> $GITHUB_OUTPUT
3030
env:
3131
GH_TOKEN: ${{ github.token }}
3232

@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Create Issue From File
4040
if: steps.lychee.outputs.exit_code != 0
41-
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5
41+
uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6
4242
with:
4343
issue-number: ${{ steps.find-issue.outputs.number }}
4444
title: Link Checker Report

.github/workflows/check-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
timeout-minutes: 30
2626
strategy:
2727
matrix:
28-
java: [17, 21]
28+
java: [17, 21, 25]
2929
distribution: [temurin]
3030
steps:
3131
- uses: actions/checkout@v5

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We also encourage you to read the [contribution instructions by GitHub](https://
1919
### Software Requirements
2020
You should have the following things installed:
2121
* Git
22-
* Java 21 - should be as unmodified as possible (Recommended: [Eclipse Adoptium](https://adoptium.net/temurin/releases/))
22+
* Java 25 - should be as unmodified as possible (Recommended: [Eclipse Adoptium](https://adoptium.net/temurin/releases/))
2323
* Maven (Note that the [Maven Wrapper](https://maven.apache.org/wrapper/) is shipped with the repo)
2424

2525
### Recommended setup

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>com.puppycrawl.tools</groupId>
4646
<artifactId>checkstyle</artifactId>
47-
<version>11.0.1</version>
47+
<version>11.1.0</version>
4848
</dependency>
4949
</dependencies>
5050
<configuration>

selenium-elements/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
<plugin>
174174
<groupId>org.apache.maven.plugins</groupId>
175175
<artifactId>maven-compiler-plugin</artifactId>
176-
<version>3.14.0</version>
176+
<version>3.14.1</version>
177177
<configuration>
178178
<release>${maven.compiler.release}</release>
179179
<compilerArgs>
@@ -184,7 +184,7 @@
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-javadoc-plugin</artifactId>
187-
<version>3.11.3</version>
187+
<version>3.12.0</version>
188188
<executions>
189189
<execution>
190190
<id>attach-javadocs</id>
@@ -223,7 +223,7 @@
223223
<plugin>
224224
<groupId>org.codehaus.mojo</groupId>
225225
<artifactId>flatten-maven-plugin</artifactId>
226-
<version>1.7.2</version>
226+
<version>1.7.3</version>
227227
<configuration>
228228
<flattenMode>ossrh</flattenMode>
229229
</configuration>
@@ -269,7 +269,7 @@
269269
<plugin>
270270
<groupId>org.sonatype.central</groupId>
271271
<artifactId>central-publishing-maven-plugin</artifactId>
272-
<version>0.8.0</version>
272+
<version>0.9.0</version>
273273
<extensions>true</extensions>
274274
<configuration>
275275
<publishingServerId>sonatype-central-portal</publishingServerId>
@@ -291,7 +291,7 @@
291291
<dependency>
292292
<groupId>com.puppycrawl.tools</groupId>
293293
<artifactId>checkstyle</artifactId>
294-
<version>11.0.1</version>
294+
<version>11.1.0</version>
295295
</dependency>
296296
</dependencies>
297297
<configuration>

0 commit comments

Comments
 (0)