Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a9b4edb
Update actions/upload-artifact action to v5
xdev-renovate Oct 25, 2025
0f07ec7
Update dependency com.puppycrawl.tools:checkstyle to v12.1.1
xdev-renovate Oct 27, 2025
a762aff
Merge pull request #218 from xdev-software/renovate/actions-upload-ar…
AB-xdev Oct 27, 2025
ca9a75f
Merge pull request #219 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Oct 27, 2025
1ebe470
Add `UnnecessaryWarningSuppression`
AB-xdev Oct 29, 2025
8083575
Formatting
AB-xdev Oct 29, 2025
6b3fcb8
Merge branch 'master' into update-from-template-xdev-software/java-se…
xdev-gh-bot Oct 29, 2025
6bf0ba8
Merge branch 'master' into update-from-template-xdev-software/java-te…
xdev-gh-bot Oct 29, 2025
f0350dd
Update lycheeverse/lychee-action digest to a8c4c7c
xdev-renovate Oct 30, 2025
f5923ef
Update net.sourceforge.pmd to v7.18.0
xdev-renovate Nov 1, 2025
e39176b
Merge pull request #10 from xdev-software/renovate/lycheeverse-lychee…
AB-xdev Nov 3, 2025
4ebf84d
Updated to PMD 7.18
AB-xdev Nov 3, 2025
52e2773
Merge pull request #222 from xdev-software/renovate/net.sourceforge.pmd
AB-xdev Nov 3, 2025
53e5c31
Don't allow TODO comments
AB-xdev Nov 3, 2025
039ed9b
Merge branch 'master' into update-from-template-xdev-software/base-te…
xdev-gh-bot Nov 3, 2025
0bdf14a
Merge branch 'master' into update-from-template-xdev-software/java-se…
xdev-gh-bot Nov 3, 2025
1ca46a8
Merge branch 'master' into update-from-template-xdev-software/java-te…
xdev-gh-bot Nov 3, 2025
4342c35
Small descriptive improvements
AB-xdev Nov 7, 2025
e59f3a0
Merge branch 'master' into update-from-template-xdev-software/java-se…
xdev-gh-bot Nov 7, 2025
47db532
Merge branch 'master' into update-from-template-xdev-software/java-te…
xdev-gh-bot Nov 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,7 @@
<module name="StaticVariableName"/>
<module name="StringLiteralEquality"/>
<module name="SuppressWarningsHolder"/>
<module name="TodoComment">
<property name="severity" value="info"/>
</module>
<module name="TodoComment"/>
<module name="TypecastParenPad"/>
<module name="TypeName"/>
<module name="UnnecessaryParentheses"/>
Expand Down
186 changes: 97 additions & 89 deletions .config/pmd/java/ruleset.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/workflows/broken-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@885c65f3dc543b57c898c8099f4e08c8afd178a2 # v2
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2
with:
fail: false # Don't fail on broken links, create an issue instead

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
fi

- name: Upload demo files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: demo-files-java-${{ matrix.java }}
path: ${{ env.DEMO_MAVEN_MODULE }}/target/${{ env.DEMO_MAVEN_MODULE }}.jar
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Upload report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pmd-report
if-no-files-found: ignore
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>12.1.0</version>
<version>12.1.1</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -83,12 +83,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down
6 changes: 3 additions & 3 deletions template-placeholder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>12.1.0</version>
<version>12.1.1</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -253,12 +253,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down