Skip to content

Commit 1cd9d3b

Browse files
Bump the gradle-deps group with 3 updates
Bumps the gradle-deps group with 3 updates: [org.junit:junit-bom](https://github.com/junit-team/junit-framework), [org.mockito:mockito-core](https://github.com/mockito/mockito) and [com.google.code.gson:gson](https://github.com/google/gson). Updates `org.junit:junit-bom` from 5.13.4 to 6.0.0 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](junit-team/junit-framework@r5.13.4...r6.0.0) Updates `org.mockito:mockito-core` from 5.19.0 to 5.20.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v5.19.0...v5.20.0) Updates `com.google.code.gson:gson` from 2.13.1 to 2.13.2 - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md) - [Commits](google/gson@gson-parent-2.13.1...gson-parent-2.13.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle-deps - dependency-name: org.mockito:mockito-core dependency-version: 5.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-deps - dependency-name: com.google.code.gson:gson dependency-version: 2.13.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fa51766 commit 1cd9d3b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ subprojects {
5656
mavenLocal()
5757
}
5858
dependencies {
59-
testImplementation platform('org.junit:junit-bom:5.13.4')
59+
testImplementation platform('org.junit:junit-bom:6.0.0')
6060
}
6161
}

gocd-filebased-authentication-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ ext {
2424

2525
dependencies {
2626
compileOnly project.deps.gocdPluginApi
27-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.1'
27+
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
2828
implementation project(':bcrypt')
2929

3030
testImplementation project.deps.gocdPluginApi
3131
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api'
3232
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
3333
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
3434
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher'
35-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.19.0'
35+
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0'
3636
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '3.0'
3737
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.3'
3838
}

gocdpasswd/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
2424
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher'
2525
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '3.0'
26-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.19.0'
26+
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0'
2727
}
2828

2929
test {

0 commit comments

Comments
 (0)