Skip to content

Commit e54c466

Browse files
Bump the gradle-deps group across 1 directory with 8 updates
Bumps the gradle-deps group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | org.slf4j:slf4j-api | `2.0.17` | `2.0.18` | | [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.32` | `1.5.34` | | [org.junit:junit-bom](https://github.com/junit-team/junit-framework) | `6.0.3` | `6.1.0` | | [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) | `2.21.3` | `2.21.4` | | com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.21.3` | `2.22.0` | | com.diffplug.spotless | `8.4.0` | `8.6.0` | | [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `9.4.1` | `9.4.2` | | [gradle-wrapper](https://github.com/gradle/gradle) | `9.5.0` | `9.5.1` | Updates `org.slf4j:slf4j-api` from 2.0.17 to 2.0.18 Updates `ch.qos.logback:logback-classic` from 1.5.32 to 1.5.34 - [Release notes](https://github.com/qos-ch/logback/releases) - [Commits](qos-ch/logback@v_1.5.32...v_1.5.34) 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.fasterxml.jackson.dataformat:jackson-dataformat-yaml` from 2.21.3 to 2.21.4 - [Commits](FasterXML/jackson-dataformats-text@jackson-dataformats-text-2.21.3...jackson-dataformats-text-2.21.4) Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.21.3 to 2.22.0 Updates `com.diffplug.spotless` from 8.4.0 to 8.6.0 Updates `com.gradleup.shadow` from 9.4.1 to 9.4.2 - [Release notes](https://github.com/GradleUp/shadow/releases) - [Commits](GradleUp/shadow@9.4.1...9.4.2) Updates `gradle-wrapper` from 9.5.0 to 9.5.1 - [Release notes](https://github.com/gradle/gradle/releases) - [Commits](gradle/gradle@v9.5.0...v9.5.1) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-version: 1.5.34 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-deps - dependency-name: com.diffplug.spotless dependency-version: 8.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-deps - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml dependency-version: 2.22.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-deps - dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310 dependency-version: 2.22.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-deps - dependency-name: com.gradleup.shadow dependency-version: 9.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-deps - dependency-name: gradle-wrapper dependency-version: 9.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-deps - dependency-name: org.junit:junit-bom dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-deps - dependency-name: org.slf4j:slf4j-api dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 95d8f7d commit e54c466

10 files changed

Lines changed: 34 additions & 43 deletions

File tree

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id("eclipse") //support for Eclipse
99

1010
// Code formatting
11-
id "com.diffplug.spotless" version "8.4.0"
11+
id "com.diffplug.spotless" version "8.6.0"
1212

1313
// EISOP Checker Framework
1414
id "org.checkerframework" version "0.6.61"
@@ -63,8 +63,8 @@ subprojects {
6363
}
6464

6565
dependencies {
66-
implementation("org.slf4j:slf4j-api:2.0.17")
67-
testImplementation("ch.qos.logback:logback-classic:1.5.32")
66+
implementation("org.slf4j:slf4j-api:2.0.18")
67+
testImplementation("ch.qos.logback:logback-classic:1.5.34")
6868

6969

7070
compileOnly("org.jspecify:jspecify:1.0.0")
@@ -76,11 +76,11 @@ subprojects {
7676
checkerFramework "io.github.eisop:checker-qual:$eisop_version"
7777
checkerFramework "io.github.eisop:checker:$eisop_version"
7878

79-
testImplementation("ch.qos.logback:logback-classic:1.5.32")
79+
testImplementation("ch.qos.logback:logback-classic:1.5.34")
8080
testImplementation("org.assertj:assertj-core:3.27.7")
81-
testImplementation("ch.qos.logback:logback-classic:1.5.32")
81+
testImplementation("ch.qos.logback:logback-classic:1.5.34")
8282

83-
testImplementation(platform("org.junit:junit-bom:6.0.3"))
83+
testImplementation(platform("org.junit:junit-bom:6.1.0"))
8484
testImplementation ("org.junit.jupiter:junit-jupiter-api")
8585
testImplementation ("org.junit.jupiter:junit-jupiter-params")
8686
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine")
@@ -90,8 +90,8 @@ subprojects {
9090
testImplementation (testFixtures(project(":key.util")))
9191

9292
// test fixtures
93-
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.3")
94-
testImplementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.3")
93+
testImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.4")
94+
testImplementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0")
9595

9696
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
9797
}
@@ -438,9 +438,9 @@ tasks.register('alldoc', Javadoc){
438438
bottom = "Copyright &copy; 2003-2026 <a href=\"http://key-project.org\">The KeY-Project</a>."
439439
use = true
440440
links += "https://docs.oracle.com/en/java/javase/21/docs/api/"
441-
links += "https://www.javadoc.io/doc/org.slf4j/slf4j-api/2.0.17/"
441+
links += "https://www.javadoc.io/doc/org.slf4j/slf4j-api/2.0.18/"
442442
links += "https://www.javadoc.io/doc/org.antlr/antlr4-runtime/4.13.2/"
443-
links +="https://www.javadoc.io/doc/ch.qos.logback/logback-classic/1.5.32/"
443+
links +="https://www.javadoc.io/doc/ch.qos.logback/logback-classic/1.5.34/"
444444
links +="https://www.javadoc.io/doc/com.formdev/flatlaf/3.7/"
445445
links +="https://www.javadoc.io/doc/com.miglayout/miglayout-swing/11.4.3/"
446446
links +="https://www.javadoc.io/doc/com.squareup/javapoet/1.13.0/"
@@ -449,7 +449,7 @@ tasks.register('alldoc', Javadoc){
449449
links +="https://www.javadoc.io/doc/org.antlr/ST4/4.3.4/"
450450
links +="https://www.javadoc.io/doc/org.antlr/antlr4-runtime/4.13.2/"
451451
links +="https://www.javadoc.io/doc/org.jspecify/jspecify/1.0.0/"
452-
links +="https://www.javadoc.io/doc/org.slf4j/slf4j-api/2.0.17/"
452+
links +="https://www.javadoc.io/doc/org.slf4j/slf4j-api/2.0.18/"
453453

454454
linkSource()
455455
author()

gradle/wrapper/gradle-wrapper.jar

-504 Bytes
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
44
networkTimeout=10000
5+
retries=0
6+
retryBackOffMs=500
57
validateDistributionUrl=true
68
zipStoreBase=GRADLE_USER_HOME
79
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

100755100644
Lines changed: 10 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

key.core.example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ application {
1010

1111
dependencies {
1212
implementation project(":key.core")
13-
implementation 'ch.qos.logback:logback-classic:1.5.32'
13+
implementation 'ch.qos.logback:logback-classic:1.5.34'
1414
}

key.core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
testImplementation(project(":key.core"))
2626

2727
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
28-
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.3'
28+
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.4'
2929

3030
// test fixtures
3131
testFixturesApi(testFixtures(project(":key.util")))

key.ui/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
// Used to create a single executable jar file with all dependencies
99
// see task "shadowJar" below
1010
// https://github.com/GradleUp/shadow
11-
id 'com.gradleup.shadow' version "9.4.1"
11+
id 'com.gradleup.shadow' version "9.4.2"
1212
}
1313

1414
description = "User interface for the deductive verification of Java programs"
@@ -31,7 +31,7 @@ dependencies {
3131
implementation("info.picocli:picocli:4.7.7")
3232

3333
//logging implementation used by the slf4j
34-
implementation 'ch.qos.logback:logback-classic:1.5.32'
34+
implementation 'ch.qos.logback:logback-classic:1.5.34'
3535

3636
api 'org.key-project:docking-frames-common:1.1.3p1'
3737
api 'org.key-project:docking-frames-core:1.1.3p1'

key.util/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ dependencies {
1010
// we also export these dependency into src/test/java.
1111
testFixturesApi(project(':key.util'))
1212

13-
testFixturesApi(platform("org.junit:junit-bom:6.0.3"))
13+
testFixturesApi(platform("org.junit:junit-bom:6.1.0"))
1414
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
1515
testFixturesApi("org.junit.jupiter:junit-jupiter-params")
1616
testFixturesApi("org.assertj:assertj-core:3.27.7")
1717
testFixturesApi("org.jspecify:jspecify:1.0.0")
1818

19-
testFixturesApi("ch.qos.logback:logback-classic:1.5.32")
19+
testFixturesApi("ch.qos.logback:logback-classic:1.5.34")
2020

2121
// test fixtures
22-
testFixturesApi("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.3")
23-
testFixturesApi("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.3")
22+
testFixturesApi("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.4")
23+
testFixturesApi("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0")
2424

2525
def eisop_version = "3.49.5-eisop1"
2626
testFixturesCompileOnly( "io.github.eisop:checker-qual:$eisop_version")

keyext.proofmanagement/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'com.gradleup.shadow' version "9.4.1"
3+
id 'com.gradleup.shadow' version "9.4.2"
44
}
55

66
description = "Management of larger verification with KeY."

0 commit comments

Comments
 (0)