Skip to content
Merged
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
42677ea
Add new checkstyle rule
AB-xdev Jun 1, 2026
b24deab
Update dependency com.puppycrawl.tools:checkstyle to v13.6.0
xdev-renovate Jun 15, 2026
47e6bea
Update dependency org.sonatype.central:central-publishing-maven-plugi…
xdev-renovate Jun 17, 2026
8a8b4cc
Update actions/checkout action to v7
xdev-renovate Jun 19, 2026
8304f63
Update actions/checkout action to v7
xdev-renovate Jun 19, 2026
e534b50
Update actions/cache action to v6
xdev-renovate Jun 24, 2026
b81315c
Bump IDEA checkstyle version
AB-xdev Jun 25, 2026
73c1717
Merge pull request #12 from xdev-software/checkstyle-13.5
AB-xdev Jun 25, 2026
68f9a0c
Merge pull request #68 from xdev-software/renovate/actions-checkout-7.x
AB-xdev Jun 25, 2026
bdb6ce3
Merge pull request #281 from xdev-software/renovate/org.sonatype.cent…
AB-xdev Jun 25, 2026
b37a301
Merge pull request #282 from xdev-software/renovate/actions-checkout-7.x
AB-xdev Jun 25, 2026
2cddeb1
Merge pull request #283 from xdev-software/renovate/actions-cache-6.x
AB-xdev Jun 25, 2026
9bbedab
Merge pull request #280 from xdev-software/renovate/com.puppycrawl.to…
AB-xdev Jun 25, 2026
ac48140
Merge branch 'master' into update-from-template-github_com_xdev-softw…
xdev-gh-bot Jun 25, 2026
d978852
Merge branch 'master' into update-from-template-github_com_xdev-softw…
xdev-gh-bot Jun 25, 2026
7287294
Merge branch 'master' into update-from-template-github_com_xdev-softw…
xdev-gh-bot Jun 25, 2026
4f29797
Merge branch 'develop' into update-from-template-github_com_xdev-soft…
xdev-gh-bot Jun 25, 2026
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
1 change: 1 addition & 0 deletions .config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
<module name="UnnecessarySemicolonInTryWithResources"/>
<module name="UnusedImports"/>
<module name="UnusedLocalVariable"/>
<module name="UnusedTryResourceShouldBeUnnamed"/>
<module name="UpperEll"/>
<module name="VisibilityModifier">
<property name="packageAllowed" value="true"/>
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/broken-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- run: mv .github/.lycheeignore .lycheeignore

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
java: [17, 21, 25]
distribution: [temurin]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v5
Expand All @@ -40,7 +40,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Cache Maven
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
java: [21]
distribution: [temurin]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v5
Expand All @@ -93,15 +93,15 @@ jobs:
java-version: ${{ matrix.java }}

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

- name: CheckStyle Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: '**/target/checkstyle-cachefile'
key: ${{ runner.os }}-checkstyle-${{ hashFiles('**/pom.xml') }}
Expand All @@ -120,7 +120,7 @@ jobs:
java: [17]
distribution: [temurin]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v5
Expand All @@ -129,15 +129,15 @@ jobs:
java-version: ${{ matrix.java }}

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

- name: PMD Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: '**/target/pmd/pmd.cache'
key: ${{ runner.os }}-pmd-${{ hashFiles('**/pom.xml') }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v5
Expand All @@ -28,7 +28,7 @@ jobs:

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

- name: Configure Git
run: |
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
needs: [prepare-release]
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Init Git and pull
run: |
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
needs: [prepare-release]
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Init Git and pull
run: |
Expand All @@ -179,7 +179,7 @@ jobs:

# Try to reuse existing cache from check-build
- name: Try restore Maven Cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
Expand All @@ -202,7 +202,7 @@ jobs:
needs: [publish-maven]
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Init Git and pull
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Only run this in our repos (Prevent notification spam by forks)
if: ${{ github.repository_owner == 'xdev-software' }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check
id: check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
sparse-checkout: .github/labels.yml

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up JDK
uses: actions/setup-java@v5
Expand Down
2 changes: 1 addition & 1 deletion .idea/checkstyle-idea.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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>13.5.0</version>
<version>13.6.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down
4 changes: 2 additions & 2 deletions sessionize-java-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>sonatype-central-portal</publishingServerId>
Expand Down Expand Up @@ -444,7 +444,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>13.5.0</version>
<version>13.6.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down