Skip to content

chore(deps): bump the all-maven-dependencies group across 4 directories with 10 updates#105

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/all-maven-dependencies-79ebd85d86
Closed

chore(deps): bump the all-maven-dependencies group across 4 directories with 10 updates#105
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/all-maven-dependencies-79ebd85d86

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Bumps the all-maven-dependencies group with 9 updates in the / directory:

Package From To
org.junit:junit-bom 6.0.3 6.1.0
com.puppycrawl.tools:checkstyle 13.4.2 13.5.0
net.sourceforge.pmd:pmd-core 7.24.0 7.25.0
net.sourceforge.pmd:pmd-java 7.24.0 7.25.0
org.apache.maven.plugins:maven-surefire-plugin 3.5.5 3.5.6
org.apache.maven.plugins:maven-failsafe-plugin 3.5.5 3.5.6
org.apache.maven.plugins:maven-enforcer-plugin 3.6.2 3.6.3
org.sonarsource.scanner.maven:sonar-maven-plugin 5.6.0.6792 5.7.0.6970
org.slf4j:slf4j-simple 2.0.17 2.0.18

Bumps the all-maven-dependencies group with 1 update in the /nameprep/src/it/jpms-nameprep directory: org.junit.jupiter:junit-jupiter.
Bumps the all-maven-dependencies group with 1 update in the /saslprep/src/it/jpms-saslprep directory: org.junit.jupiter:junit-jupiter.
Bumps the all-maven-dependencies group with 1 update in the /stringprep/src/it/jpms-stringprep directory: org.junit.jupiter:junit-jupiter.

Updates org.junit:junit-bom from 6.0.3 to 6.1.0

Release notes

Sourced from org.junit:junit-bom's releases.

JUnit 6.1.0 = Platform 6.1.0 + Jupiter 6.1.0 + Vintage 6.1.0

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.0.3...r6.1.0

JUnit 6.1.0-RC1 = Platform 6.1.0-RC1 + Jupiter 6.1.0-RC1 + Vintage 6.1.0-RC1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.1.0-M1...r6.1.0-RC1

JUnit 6.1.0-M1 = Platform 6.1.0-M1 + Jupiter 6.1.0-M1 + Vintage 6.1.0-M1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.0.0...r6.1.0-M1

Commits

Updates com.puppycrawl.tools:checkstyle from 13.4.2 to 13.5.0

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-13.5.0

Checkstyle 13.5.0 - https://checkstyle.org/releasenotes.html#Release_13.5.0

New:

#19496 - AvoidStarImport: new property maxAllowedStarImports to allow atmost one star import in a file. #14782 - LITERAL_DEFAULT token support in RightCurlyCheck. #15484 - New Check UnusedTryResourceShouldBeUnnamed.

Bug fixes:

#17697 - Google style: Disallow comments enclosed in boxes. #19641 - Add checks for OpenJDK Style §3.10 - Variable Declarations. #19640 - Add checks for OpenJDK Style §4.1 - Package Names. #18227 - Extend TextBlockGoogleStyleFormatting to check indentation of each line in the blocks. #19770 - JavadocTypeCheck incorrectly matches record component @param tags using prefix instead of exact match. #17052 - Add support for flexible constructor bodies (JEP 513) targeted for JDK25. #17464 - RequireThis false positive inside annotation definition. #19623 - Add checks for OpenJDK Style §3.3 - Import statements. #17203 - PatternVariableAssignment check false negative when pattern variable extends beyond the statement of introduction. #19716 - False Negative: SimplifyBooleanExpression does not report with paranthesized boolean literals in ternary operators. #19617 - Add checks for OpenJDK Style §2 - Java Source Files. #17253 - Google-style: Illegal to break the line before or after the lambda arrow. #19149 - update MissingJavadocTypeCheck to use AST of javadoc. #2629 - IndentationCheck: incorrect validation for class definition. #5685 - Indentation: false positive for try child on the same line. #11822 - RequireThisCheck giving multiple violation for classes nested in lambdas. #19622 - Add checks for OpenJDK Style §3.2 - Package declaration.

... (truncated)

Commits
  • 110e63e [maven-release-plugin] prepare release checkstyle-13.5.0
  • 47d9268 doc: release notes for 13.5.0
  • 2ae101f Issue #19793: Anchor IndentationCheck regex in google_checks.xml SuppressWith...
  • fb3c9e9 Issue #19827: Complete removal of chapter numbers
  • e2b0411 Issue #18435: Fix xdocs Examples AST Consistency Test - nowhitespacebefore
  • 096df1d Issue #19764: Move violation comment out of Javadoc
  • 4d69a3f Issue #19993: Regexp check for unnecessary // ok comments is configured under...
  • 035297e dependency: bump org.pitest:pitest-maven from 1.25.2 to 1.25.3
  • 6b82789 supplemental: Fixes Overloaded Methods Order
  • d9306da Issue #18435: Fix xdocs Examples AST Consistency Test - linelength
  • Additional commits viewable in compare view

Updates net.sourceforge.pmd:pmd-core from 7.24.0 to 7.25.0

Release notes

Sourced from net.sourceforge.pmd:pmd-core's releases.

PMD 7.25.0 (29-May-2026)

29-May-2026 - 7.25.0

The PMD team is pleased to announce PMD 7.25.0.

This is a minor release.

Table Of Contents

🚀️ New and noteworthy

Updated ANTLR library to 4.13.2

We have updated the ANTLR library (parser generator) from 4.9.3 to the latest version 4.13.2, in order to be able to use the latest version of Apex parser library.

This is an incompatible update: In case you use custom language modules based on ANTLR, you need to make sure to regenerate all of your lexers and parsers with the new ANTLR version.

For the ANTLR based language modules, that PMD ships (kotlin and swift and various CPD modules), this is already done.

🌟️ New and Changed Rules

New Rules

  • The new Java rule JUnitJupiterTestNoPrivateModifier find JUnit test classes and methods that are private. Test classes, test methods, and lifecycle methods are not required to be public, but they must not be private. Otherwise, they won’t be found by the test framework.
  • The new Java rule UnnecessaryBlock reports blocks that are unnecessary as they don't introduce a new scope. This rule helps simplify code structure by identifying and flagging redundant blocks that can make code harder to read and may be misleading.
  • The new Java rule VariableDeclarationUsageDistance flags local variables that are declared far from their usage, which can make code harder to read. The rule has a property maxDistance that allows to configure the maximum allowed distance between declaration and usage.
  • The new Java rule AssertStatementInTest detects usages of assert statement in tests. These should be replaced by framework assertion methods such as assertEquals.

... (truncated)

Commits
  • 418f8b7 [release] prepare release pmd_releases/7.25.0
  • ba31ce2 Prepare pmd release 7.25.0
  • ced4fdc Update contributors for 7.25.0
  • 3c65361 chore(deps-dev): bump build-tools from 37 to 38 (#6729)
  • f60c490 chore(deps-dev): bump build-tools from 37 to 38
  • 6736c60 [java] UnnecessaryBooleanAssertion: Use InvocationMatcher to find assertions ...
  • 3f1de35 [doc] Update release notes (#6712)
  • 25f30fe [java] Fix #4350: Fix ClassNamingConventions by teaching TestFrameworkUtil ab...
  • f306438 [java] Part of #4841: Deprecate unnecessary public methods in FieldDeclaratio...
  • ca5bfe4 [java] Fix #6719: UseStandardCharsets UTF-32 on Java >= 22 (#6726)
  • Additional commits viewable in compare view

Updates net.sourceforge.pmd:pmd-java from 7.24.0 to 7.25.0

Release notes

Sourced from net.sourceforge.pmd:pmd-java's releases.

PMD 7.25.0 (29-May-2026)

29-May-2026 - 7.25.0

The PMD team is pleased to announce PMD 7.25.0.

This is a minor release.

Table Of Contents

🚀️ New and noteworthy

Updated ANTLR library to 4.13.2

We have updated the ANTLR library (parser generator) from 4.9.3 to the latest version 4.13.2, in order to be able to use the latest version of Apex parser library.

This is an incompatible update: In case you use custom language modules based on ANTLR, you need to make sure to regenerate all of your lexers and parsers with the new ANTLR version.

For the ANTLR based language modules, that PMD ships (kotlin and swift and various CPD modules), this is already done.

🌟️ New and Changed Rules

New Rules

  • The new Java rule JUnitJupiterTestNoPrivateModifier find JUnit test classes and methods that are private. Test classes, test methods, and lifecycle methods are not required to be public, but they must not be private. Otherwise, they won’t be found by the test framework.
  • The new Java rule UnnecessaryBlock reports blocks that are unnecessary as they don't introduce a new scope. This rule helps simplify code structure by identifying and flagging redundant blocks that can make code harder to read and may be misleading.
  • The new Java rule VariableDeclarationUsageDistance flags local variables that are declared far from their usage, which can make code harder to read. The rule has a property maxDistance that allows to configure the maximum allowed distance between declaration and usage.
  • The new Java rule AssertStatementInTest detects usages of assert statement in tests. These should be replaced by framework assertion methods such as assertEquals.

... (truncated)

Commits
  • 418f8b7 [release] prepare release pmd_releases/7.25.0
  • ba31ce2 Prepare pmd release 7.25.0
  • ced4fdc Update contributors for 7.25.0
  • 3c65361 chore(deps-dev): bump build-tools from 37 to 38 (#6729)
  • f60c490 chore(deps-dev): bump build-tools from 37 to 38
  • 6736c60 [java] UnnecessaryBooleanAssertion: Use InvocationMatcher to find assertions ...
  • 3f1de35 [doc] Update release notes (#6712)
  • 25f30fe [java] Fix #4350: Fix ClassNamingConventions by teaching TestFrameworkUtil ab...
  • f306438 [java] Part of #4841: Deprecate unnecessary public methods in FieldDeclaratio...
  • ca5bfe4 [java] Fix #6719: UseStandardCharsets UTF-32 on Java >= 22 (#6726)
  • Additional commits viewable in compare view

Updates net.sourceforge.pmd:pmd-java from 7.24.0 to 7.25.0

Release notes

Sourced from net.sourceforge.pmd:pmd-java's releases.

PMD 7.25.0 (29-May-2026)

29-May-2026 - 7.25.0

The PMD team is pleased to announce PMD 7.25.0.

This is a minor release.

Table Of Contents

🚀️ New and noteworthy

Updated ANTLR library to 4.13.2

We have updated the ANTLR library (parser generator) from 4.9.3 to the latest version 4.13.2, in order to be able to use the latest version of Apex parser library.

This is an incompatible update: In case you use custom language modules based on ANTLR, you need to make sure to regenerate all of your lexers and parsers with the new ANTLR version.

For the ANTLR based language modules, that PMD ships (kotlin and swift and various CPD modules), this is already done.

🌟️ New and Changed Rules

New Rules

  • The new Java rule JUnitJupiterTestNoPrivateModifier find JUnit test classes and methods that are private. Test classes, test methods, and lifecycle methods are not required to be public, but they must not be private. Otherwise, they won’t be found by the test framework.
  • The new Java rule UnnecessaryBlock reports blocks that are unnecessary as they don't introduce a new scope. This rule helps simplify code structure by identifying and flagging redundant blocks that can make code harder to read and may be misleading.
  • The new Java rule VariableDeclarationUsageDistance flags local variables that are declared far from their usage, which can make code harder to read. The rule has a property maxDistance that allows to configure the maximum allowed distance between declaration and usage.
  • The new Java rule AssertStatementInTest detects usages of assert statement in tests. These should be replaced by framework assertion methods such as assertEquals.

... (truncated)

Commits
  • 418f8b7 [release] prepare release pmd_releases/7.25.0
  • ba31ce2 Prepare pmd release 7.25.0
  • ced4fdc Update contributors for 7.25.0
  • 3c65361 chore(deps-dev): bump build-tools from 37 to 38 (#6729)
  • f60c490 chore(deps-dev): bump build-tools from 37 to 38
  • 6736c60 [java] UnnecessaryBooleanAssertion: Use InvocationMatcher to find assertions ...
  • 3f1de35 [doc] Update release notes (#6712)
  • 25f30fe [java] Fix #4350: Fix ClassNamingConventions by teaching TestFrameworkUtil ab...
  • f306438 [java] Part of #4841: Deprecate unnecessary public methods in FieldDeclaratio...
  • ca5bfe4 [java] Fix #6719: UseStandardCharsets UTF-32 on Java >= 22 (#6726)
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-surefire-plugin from 3.5.5 to 3.5.6

Release notes

Sourced from org.apache.maven.plugins:maven-surefire-plugin's releases.

3.5.6

🚀 New features and improvements

  • Introduce reportTestTimestamp option and include timestamp for test sets and test cases (#3261) (#3302) @​olamy

🐛 Bug Fixes

👻 Maintenance

📦 Dependency updates

Commits
  • 25ea054 [maven-release-plugin] prepare release surefire-3.5.6
  • e5f374c Bump org.fusesource.jansi:jansi from 2.4.2 to 2.4.3
  • dadd55b Issue #2613 Debugging failsafe tests: Message 'Listening for transport dt_soc...
  • 39dd250 Bump commons-io:commons-io from 2.21.0 to 2.22.0
  • 2774273 Ensure that the statistics filename is calculated only once. (#3326) (#3327)
  • 0d5df8a 3.5.x/bug/cherry pick embedded mode its (#3328)
  • 04ad9a2 Use surefire 3.5.5 by project itself for testing
  • 37e8f69 Add flakes attribute to use in testsuite report (#3306) (#3308)
  • a970fef Introduce reportTestTimestamp option and include timestamp for test sets and ...
  • e838393 deploy 3.5.x branch to nexus
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-failsafe-plugin from 3.5.5 to 3.5.6

Release notes

Sourced from org.apache.maven.plugins:maven-failsafe-plugin's releases.

3.5.6

🚀 New features and improvements

  • Introduce reportTestTimestamp option and include timestamp for test sets and test cases (#3261) (#3302) @​olamy

🐛 Bug Fixes

👻 Maintenance

📦 Dependency updates

Commits
  • 25ea054 [maven-release-plugin] prepare release surefire-3.5.6
  • e5f374c Bump org.fusesource.jansi:jansi from 2.4.2 to 2.4.3
  • dadd55b Issue #2613 Debugging failsafe tests: Message 'Listening for transport dt_soc...
  • 39dd250 Bump commons-io:commons-io from 2.21.0 to 2.22.0
  • 2774273 Ensure that the statistics filename is calculated only once. (#3326) (#3327)
  • 0d5df8a 3.5.x/bug/cherry pick embedded mode its (#3328)
  • 04ad9a2 Use surefire 3.5.5 by project itself for testing
  • 37e8f69 Add flakes attribute to use in testsuite report (#3306) (#3308)
  • a970fef Introduce reportTestTimestamp option and include timestamp for test sets and ...
  • e838393 deploy 3.5.x branch to nexus
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-enforcer-plugin from 3.6.2 to 3.6.3

Release notes

Sourced from org.apache.maven.plugins:maven-enforcer-plugin's releases.

3.6.3

🚀 New features and improvements

  • Make bannedDependencies report root and transitive dependency in case both are banned. (#940) @​hvoynov
  • Add enforceBytecodeVersion rule based on mojohaus (#968) @​cstamas
  • Improve formatting of deprecated API warning (#951) @​mthmulders

🐛 Bug Fixes

📝 Documentation updates

  • Document the banMavenDefaults option for the requirePluginVersions rule. (#936) @​rpkrajewski

👻 Maintenance

📦 Dependency updates

Commits
  • c7daff3 [maven-release-plugin] prepare release enforcer-3.6.3
  • ee46e78 Make bannedDependencies report root and transitive dependency in case both ar...
  • 0806924 Document the banMavenDefaults option for the requirePluginVersions rule. (#936)
  • 8e4f5b9 Add better enforceBytecodeVersion rule based on mojohaus (#968)
  • fd4b148 Add fix for 21.0.10.0.1 issue (#967)
  • f32d597 Deps: Parent POM 48 and align deps (#979)
  • df0f2a6 Bump commons-codec:commons-codec from 1.21.0 to 1.22.0 (#976)
  • 2da7a68 Add null checks for modelId in PluginWrapper
  • 91eb4d9 Bump commons-io:commons-io from 2.21.0 to 2.22.0 (#975)
  • b622245 Bump mavenVersion from 3.9.14 to 3.9.15 (#973)
  • Additional commits viewable in compare view

Updates org.sonarsource.scanner.maven:sonar-maven-plugin from 5.6.0.6792 to 5.7.0.6970

Release notes

Sourced from org.sonarsource.scanner.maven:sonar-maven-plugin's releases.

5.7.0.6970

Release notes - Sonar Scanner for Maven - 5.7

Feature

SCANMAVEN-317 Support encryption of sonar.token, and other new secure properties SCANMAVEN-332 support modular-jar artifact type SCANMAVEN-341 Rework the support of encrypted properties

Maintenance

SCANMAVEN-370 Prepare next development iteration 5.7.0 SCANMAVEN-372 Configure Renovate for sonar-scanner-maven SCANMAVEN-373 SubmitReview: Use Vault token SCANMAVEN-374 Unpin internal GitHub actions SCANMAVEN-376 Use SonarSource/.../sonar-update-center-release@v1 instead of @​master SCANMAVEN-377 Update dependency org.assertj:assertj-core to v3.27.7 [SECURITY]

Commits
  • 9e114d7 SCANMAVEN-332 Support modular-jar (#402)
  • 7424fe5 SCANMAVEN-317 - Support encryption of sonar.token, and other new secure prope...
  • b8ff39f SCANMAVEN-341 Fix regex for encrypted property filtering for mvn4 and add tes...
  • b4c0b4a SCANMAVEN-377 Update dependency org.assertj:assertj-core to v3.27.7 [SECURITY...
  • cd19506 SCANMAVEN-372 Configure Renovate (#393)
  • 944f552 SCANMAVEN-376 Use SonarSource/.../sonar-update-center-release@v1 instead of @...
  • 2832b8a SCANMAVEN-374 Unpin internal GitHub actions (#396)
  • 81caeeb SCANMAVEN-373 SubmitReview: Use Vault token (#395)
  • c62dd74 SCANMAVEN-370 Prepare next development iteration 5.7.0 (#392)
  • See full diff in compare view

Updates org.slf4j:slf4j-simple from 2.0.17 to 2.0.18

Updates org.junit.jupiter:junit-jupiter from 6.0.3 to 6.1.0

Release notes

Sourced from org.junit.jupiter:junit-jupiter's releases.

JUnit 6.1.0 = Platform 6.1.0 + Jupiter 6.1.0 + Vintage 6.1.0

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.0.3...r6.1.0

JUnit 6.1.0-RC1 = Platform 6.1.0-RC1 + Jupiter 6.1.0-RC1 + Vintage 6.1.0-RC1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.1.0-M1...r6.1.0-RC1

JUnit 6.1.0-M1 = Platform 6.1.0-M1 + Jupiter 6.1.0-M1 + Vintage 6.1.0-M1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r6.0.0...r6.1.0-M1

Commits

…es with 10 updates

Bumps the all-maven-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.junit:junit-bom](https://github.com/junit-team/junit-framework) | `6.0.3` | `6.1.0` |
| [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) | `13.4.2` | `13.5.0` |
| [net.sourceforge.pmd:pmd-core](https://github.com/pmd/pmd) | `7.24.0` | `7.25.0` |
| [net.sourceforge.pmd:pmd-java](https://github.com/pmd/pmd) | `7.24.0` | `7.25.0` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.5.5` | `3.5.6` |
| [org.apache.maven.plugins:maven-failsafe-plugin](https://github.com/apache/maven-surefire) | `3.5.5` | `3.5.6` |
| [org.apache.maven.plugins:maven-enforcer-plugin](https://github.com/apache/maven-enforcer) | `3.6.2` | `3.6.3` |
| [org.sonarsource.scanner.maven:sonar-maven-plugin](https://github.com/SonarSource/sonar-scanner-maven) | `5.6.0.6792` | `5.7.0.6970` |
| org.slf4j:slf4j-simple | `2.0.17` | `2.0.18` |

Bumps the all-maven-dependencies group with 1 update in the /nameprep/src/it/jpms-nameprep directory: [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework).
Bumps the all-maven-dependencies group with 1 update in the /saslprep/src/it/jpms-saslprep directory: [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework).
Bumps the all-maven-dependencies group with 1 update in the /stringprep/src/it/jpms-stringprep directory: [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework).


Updates `org.junit:junit-bom` from 6.0.3 to 6.1.0
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.3...r6.1.0)

Updates `com.puppycrawl.tools:checkstyle` from 13.4.2 to 13.5.0
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-13.4.2...checkstyle-13.5.0)

Updates `net.sourceforge.pmd:pmd-core` from 7.24.0 to 7.25.0
- [Release notes](https://github.com/pmd/pmd/releases)
- [Commits](pmd/pmd@pmd_releases/7.24.0...pmd_releases/7.25.0)

Updates `net.sourceforge.pmd:pmd-java` from 7.24.0 to 7.25.0
- [Release notes](https://github.com/pmd/pmd/releases)
- [Commits](pmd/pmd@pmd_releases/7.24.0...pmd_releases/7.25.0)

Updates `net.sourceforge.pmd:pmd-java` from 7.24.0 to 7.25.0
- [Release notes](https://github.com/pmd/pmd/releases)
- [Commits](pmd/pmd@pmd_releases/7.24.0...pmd_releases/7.25.0)

Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.5.5 to 3.5.6
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.5.5...surefire-3.5.6)

Updates `org.apache.maven.plugins:maven-failsafe-plugin` from 3.5.5 to 3.5.6
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.5.5...surefire-3.5.6)

Updates `org.apache.maven.plugins:maven-enforcer-plugin` from 3.6.2 to 3.6.3
- [Release notes](https://github.com/apache/maven-enforcer/releases)
- [Commits](apache/maven-enforcer@enforcer-3.6.2...enforcer-3.6.3)

Updates `org.sonarsource.scanner.maven:sonar-maven-plugin` from 5.6.0.6792 to 5.7.0.6970
- [Release notes](https://github.com/SonarSource/sonar-scanner-maven/releases)
- [Commits](SonarSource/sonar-scanner-maven@5.6.0.6792...5.7.0.6970)

Updates `org.slf4j:slf4j-simple` from 2.0.17 to 2.0.18

Updates `org.junit.jupiter:junit-jupiter` from 6.0.3 to 6.1.0
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.3...r6.1.0)

Updates `org.junit.jupiter:junit-jupiter` from 6.0.3 to 6.1.0
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.3...r6.1.0)

Updates `org.junit.jupiter:junit-jupiter` from 6.0.3 to 6.1.0
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.0.3...r6.1.0)

---
updated-dependencies:
- dependency-name: org.junit:junit-bom
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-version: 13.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: net.sourceforge.pmd:pmd-core
  dependency-version: 7.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: net.sourceforge.pmd:pmd-java
  dependency-version: 7.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: net.sourceforge.pmd:pmd-java
  dependency-version: 7.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-version: 3.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-maven-dependencies
- dependency-name: org.apache.maven.plugins:maven-failsafe-plugin
  dependency-version: 3.5.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-maven-dependencies
- dependency-name: org.apache.maven.plugins:maven-enforcer-plugin
  dependency-version: 3.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-maven-dependencies
- dependency-name: org.sonarsource.scanner.maven:sonar-maven-plugin
  dependency-version: 5.7.0.6970
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: org.slf4j:slf4j-simple
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 3, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Jun 4, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 4, 2026
@dependabot dependabot Bot deleted the dependabot/maven/all-maven-dependencies-79ebd85d86 branch June 4, 2026 14:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants