Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 41ab613

Browse files
dependabot[bot]Weltraumschaf
authored andcommitted
Bump the gradle-version-updates group
Bumps the gradle-version-updates group in /hooks/persistence-defectdojo/hook with 8 updates: | Package | From | To | | --- | --- | --- | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.0` | `5.11.1` | | [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) | `2.17.2` | `2.18.0` | | [com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson) | `2.17.2` | `2.18.0` | | [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.17.2` | `2.18.0` | | com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.17.2` | `2.18.0` | | [org.mockito:mockito-core](https://github.com/mockito/mockito) | `5.13.0` | `5.14.0` | | [org.mockito:mockito-junit-jupiter](https://github.com/mockito/mockito) | `5.13.0` | `5.14.0` | | [uk.org.webcompere:system-stubs-jupiter](https://github.com/webcompere/system-stubs) | `2.1.6` | `2.1.7` | Updates `org.junit:junit-bom` from 5.11.0 to 5.11.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.11.0...r5.11.1) Updates `com.fasterxml.jackson.core:jackson-core` from 2.17.2 to 2.18.0 - [Commits](FasterXML/jackson-core@jackson-core-2.17.2...jackson-core-2.18.0) Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.17.2 to 2.18.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.17.2 to 2.18.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.17.2 to 2.18.0 Updates `org.mockito:mockito-core` from 5.13.0 to 5.14.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v5.13.0...v5.14.0) Updates `org.mockito:mockito-junit-jupiter` from 5.13.0 to 5.14.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](mockito/mockito@v5.13.0...v5.14.0) Updates `uk.org.webcompere:system-stubs-jupiter` from 2.1.6 to 2.1.7 - [Release notes](https://github.com/webcompere/system-stubs/releases) - [Changelog](https://github.com/webcompere/system-stubs/blob/main/History.md) - [Commits](webcompere/system-stubs@system-stubs-parent-2.1.6...system-stubs-parent-2.1.7) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-version-updates - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-version-updates - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-version-updates - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-version-updates - dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-version-updates - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-version-updates - dependency-name: org.mockito:mockito-junit-jupiter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-version-updates - dependency-name: uk.org.webcompere:system-stubs-jupiter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-version-updates ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7635925 commit 41ab613

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

hooks/persistence-defectdojo/hook/build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ dependencies {
2626
implementation group: "io.securecodebox", name: "defectdojo-client", version: "3.0.0"
2727
implementation group: "io.kubernetes", name: "client-java", version: "20.0.1"
2828
implementation group: "org.springframework", name: "spring-web", version: "6.1.13"
29-
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.17.2"
30-
implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.17.2"
31-
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.17.2"
32-
implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jsr310", version: "2.17.2"
29+
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.18.0"
30+
implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.18.0"
31+
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.18.0"
32+
implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jsr310", version: "2.18.0"
3333
implementation group: "org.slf4j", name: "slf4j-api", version: "2.0.16"
3434
implementation group: "org.slf4j", name: "slf4j-log4j12", version: "2.0.16"
3535
// If I try to notate this like the others (with separate strings) I got errors. No idea why sh... Gradle
3636
// want it like this. It is the official documented example:
3737
// https://github.com/junit-team/junit5-samples/blob/r5.10.0/junit5-jupiter-starter-gradle/build.gradle
38-
testImplementation(platform("org.junit:junit-bom:5.11.0"))
38+
testImplementation(platform("org.junit:junit-bom:5.11.1"))
3939
testImplementation("org.junit.jupiter:junit-jupiter")
40-
testImplementation group: "org.mockito", name: "mockito-core", version: "5.13.0"
41-
testImplementation group: "org.mockito", name: "mockito-junit-jupiter", version: "5.13.0"
40+
testImplementation group: "org.mockito", name: "mockito-core", version: "5.14.0"
41+
testImplementation group: "org.mockito", name: "mockito-junit-jupiter", version: "5.14.0"
4242
testImplementation group: 'org.hamcrest', name: 'java-hamcrest', version: '2.0.0.0'
43-
testImplementation group: 'uk.org.webcompere', name: 'system-stubs-jupiter', version: '2.1.6'
43+
testImplementation group: 'uk.org.webcompere', name: 'system-stubs-jupiter', version: '2.1.7'
4444
}
4545

4646
test {

0 commit comments

Comments
 (0)