Skip to content

Commit ce07f33

Browse files
Bump the gradle-dependencies group across 1 directory with 7 updates
Bumps the gradle-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [org.junit:junit-bom](https://github.com/junit-team/junit-framework) | `6.0.2` | `6.0.3` | | [com.squareup.okio:okio](https://github.com/square/okio) | `3.16.4` | `3.17.0` | | [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.21.0` | `2.21.2` | | [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.42` | `1.18.44` | | [com.auth0:java-jwt](https://github.com/auth0/java-jwt) | `4.5.0` | `4.5.1` | | [gradle-wrapper](https://github.com/gradle/gradle) | `9.3.1` | `9.4.1` | Updates `org.junit:junit-bom` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](junit-team/junit-framework@r6.0.2...r6.0.3) Updates `org.junit.jupiter:junit-jupiter` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](junit-team/junit-framework@r6.0.2...r6.0.3) Updates `com.squareup.okio:okio` from 3.16.4 to 3.17.0 - [Changelog](https://github.com/square/okio/blob/master/CHANGELOG.md) - [Commits](square/okio@parent-3.16.4...parent-3.17.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.21.0 to 2.21.2 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `org.projectlombok:lombok` from 1.18.42 to 1.18.44 - [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown) - [Commits](projectlombok/lombok@v1.18.42...v1.18.44) Updates `com.auth0:java-jwt` from 4.5.0 to 4.5.1 - [Release notes](https://github.com/auth0/java-jwt/releases) - [Changelog](https://github.com/auth0/java-jwt/blob/master/CHANGELOG.md) - [Commits](auth0/java-jwt@4.5.0...4.5.1) Updates `gradle-wrapper` from 9.3.1 to 9.4.1 - [Release notes](https://github.com/gradle/gradle/releases) - [Commits](gradle/gradle@v9.3.1...v9.4.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.junit.jupiter:junit-jupiter dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: com.squareup.okio:okio dependency-version: 3.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.21.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.projectlombok:lombok dependency-version: 1.18.44 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: com.auth0:java-jwt dependency-version: 4.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: gradle-wrapper dependency-version: 9.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 53ddbf9 commit ce07f33

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,28 +52,28 @@ dependencies {
5252
api 'com.squareup.okhttp3:okhttp:5.3.2'
5353

5454
// JUnit 6
55-
testImplementation(platform('org.junit:junit-bom:6.0.2'))
56-
testImplementation('org.junit.jupiter:junit-jupiter:6.0.2')
55+
testImplementation(platform('org.junit:junit-bom:6.0.3'))
56+
testImplementation('org.junit.jupiter:junit-jupiter:6.0.3')
5757

5858
// Test libs
5959
testImplementation 'org.mockito:mockito-core:4.11.0'
6060
testImplementation 'org.hamcrest:hamcrest:3.0'
61-
testImplementation 'com.squareup.okio:okio:3.16.4'
61+
testImplementation 'com.squareup.okio:okio:3.17.0'
6262
testImplementation 'com.squareup.okhttp3:okhttp:5.3.2'
6363
testImplementation 'com.squareup.okhttp3:mockwebserver:5.3.2'
6464

65-
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.0'
65+
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.21.2'
6666

67-
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.0'
67+
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.21.2'
6868

6969
// Lombok
70-
compileOnly 'org.projectlombok:lombok:1.18.42'
71-
annotationProcessor 'org.projectlombok:lombok:1.18.42'
72-
testCompileOnly 'org.projectlombok:lombok:1.18.42'
73-
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'
70+
compileOnly 'org.projectlombok:lombok:1.18.44'
71+
annotationProcessor 'org.projectlombok:lombok:1.18.44'
72+
testCompileOnly 'org.projectlombok:lombok:1.18.44'
73+
testAnnotationProcessor 'org.projectlombok:lombok:1.18.44'
7474

7575
// JWT
76-
implementation 'com.auth0:java-jwt:4.5.0'
76+
implementation 'com.auth0:java-jwt:4.5.1'
7777
}
7878

7979
tasks.register('buildJar', Jar) {

gradle/wrapper/gradle-wrapper.jar

2.73 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
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.

0 commit comments

Comments
 (0)