Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
edf902f
Add more common numbers
AB-xdev Dec 2, 2025
5d2f7a5
Merge branch 'master' into update-from-template-xdev-software/java-se…
xdev-gh-bot Dec 2, 2025
17bfb34
Merge branch 'master' into update-from-template-xdev-software/java-te…
xdev-gh-bot Dec 2, 2025
c8756b9
Update dependency com.puppycrawl.tools:checkstyle to v12.2.0
xdev-renovate Dec 3, 2025
df64139
Update dependency org.apache.maven.plugins:maven-assembly-plugin to v…
xdev-renovate Dec 3, 2025
1f1983a
Update dependency org.apache.maven.plugins:maven-source-plugin to v3.4.0
xdev-renovate Dec 3, 2025
3fcab42
Update net.sourceforge.pmd to v7.19.0
xdev-renovate Dec 3, 2025
ba39de4
Merge pull request #232 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Dec 3, 2025
2d7d0fc
Merge pull request #231 from xdev-software/renovate/net.sourceforge.pmd
AB-xdev Dec 3, 2025
69e5711
Merge pull request #230 from xdev-software/renovate/org.apache.maven.…
AB-xdev Dec 3, 2025
68e98c9
Merge pull request #229 from xdev-software/renovate/org.apache.maven.…
AB-xdev Dec 3, 2025
b7be80a
Update actions/cache action to v5
xdev-renovate Dec 12, 2025
94faaa8
Update actions/upload-artifact action to v6
xdev-renovate Dec 13, 2025
9d0fc14
Update dependency com.puppycrawl.tools:checkstyle to v12.3.0
xdev-renovate Dec 14, 2025
40bb69d
Merge pull request #234 from xdev-software/renovate/actions-cache-5.x
AB-xdev Dec 16, 2025
ebf5fc7
Merge pull request #235 from xdev-software/renovate/actions-upload-ar…
AB-xdev Dec 16, 2025
b0fc165
Merge pull request #236 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Dec 16, 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
2 changes: 1 addition & 1 deletion .config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<property name="ignoreFieldDeclaration" value="true"/>
<property name="ignoreHashCodeMethod" value="true"/>
<!-- Defaults + other common constant values (e.g. time) -->
<property name="ignoreNumbers" value="-1, 0, 1, 2, 3, 4, 5, 10, 12, 24, 31, 60, 100, 1000"/>
<property name="ignoreNumbers" value="-1, 0, 1, 2, 3, 4, 5, 8, 10, 12, 16, 24, 25, 31, 32, 50, 60, 64, 100, 128, 200, 256, 500, 512, 1000, 1024, 2000, 2048, 4000, 4096, 8000, 8192"/>
</module>
<module name="MemberName"/>
<module name="MethodLength"/>
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Cache Maven
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
fi

- name: Upload demo files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: demo-files-java-${{ matrix.java }}
path: ${{ env.DEMO_MAVEN_MODULE }}/target/${{ env.DEMO_MAVEN_MODULE }}.jar
Expand All @@ -93,15 +93,15 @@ jobs:
java-version: ${{ matrix.java }}

- name: Cache Maven
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-checkstyle-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-mvn-checkstyle-

- name: CheckStyle Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: '**/target/checkstyle-cachefile'
key: ${{ runner.os }}-checkstyle-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -129,15 +129,15 @@ jobs:
java-version: ${{ matrix.java }}

- name: Cache Maven
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-pmd-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-mvn-pmd-

- name: PMD Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: '**/target/pmd/pmd.cache'
key: ${{ runner.os }}-pmd-${{ hashFiles('**/pom.xml') }}
Expand All @@ -152,7 +152,7 @@ jobs:

- name: Upload report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pmd-report
if-no-files-found: ignore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

# Try to reuse existing cache from check-build
- name: Try restore Maven Cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:

# Try to reuse existing cache from check-build
- name: Try restore Maven Cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
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.2</version>
<version>12.3.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -83,12 +83,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.18.0</version>
<version>7.19.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.18.0</version>
<version>7.19.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion template-placeholder-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<version>3.8.0</version>
<configuration>
<archive>
<manifest>
Expand Down
8 changes: 4 additions & 4 deletions template-placeholder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -215,7 +215,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>12.1.2</version>
<version>12.3.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down Expand Up @@ -253,12 +253,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.18.0</version>
<version>7.19.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.18.0</version>
<version>7.19.0</version>
</dependency>
</dependencies>
</plugin>
Expand Down