Skip to content

Commit ab781f6

Browse files
Combined dependencies PR (#11708)
* Bump org.yaml:snakeyaml from 2.5 to 2.6 in /core Bumps [org.yaml:snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) from 2.5 to 2.6. - [Commits](https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-2.6..snakeyaml-2.5) --- updated-dependencies: - dependency-name: org.yaml:snakeyaml dependency-version: '2.6' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump redis.clients:jedis from 6.2.0 to 7.4.1 in /core Bumps [redis.clients:jedis](https://github.com/redis/jedis) from 6.2.0 to 7.4.1. - [Release notes](https://github.com/redis/jedis/releases) - [Commits](redis/jedis@v6.2.0...v7.4.1) --- updated-dependencies: - dependency-name: redis.clients:jedis dependency-version: 7.4.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump org.junit.platform:junit-platform-launcher in /core Bumps [org.junit.platform:junit-platform-launcher](https://github.com/junit-team/junit-framework) from 1.11.0 to 1.14.3. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/commits) --- updated-dependencies: - dependency-name: org.junit.platform:junit-platform-launcher dependency-version: 1.14.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump com.google.cloud.tools:jib-core from 0.27.3 to 0.28.1 in /core Bumps [com.google.cloud.tools:jib-core](https://github.com/GoogleContainerTools/jib) from 0.27.3 to 0.28.1. - [Release notes](https://github.com/GoogleContainerTools/jib/releases) - [Commits](https://github.com/GoogleContainerTools/jib/commits) --- updated-dependencies: - dependency-name: com.google.cloud.tools:jib-core dependency-version: 0.28.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump org.jetbrains:annotations from 26.0.2-1 to 26.1.0 in /core Bumps [org.jetbrains:annotations](https://github.com/JetBrains/java-annotations) from 26.0.2-1 to 26.1.0. - [Release notes](https://github.com/JetBrains/java-annotations/releases) - [Changelog](https://github.com/JetBrains/java-annotations/blob/master/CHANGELOG.md) - [Commits](JetBrains/java-annotations@26.0.2-1...26.1.0) --- updated-dependencies: - dependency-name: org.jetbrains:annotations dependency-version: 26.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 parents 7c6da87 + 2d6c1be commit ab781f6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

core/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ configurations.all {
6363

6464
dependencies {
6565
api 'org.slf4j:slf4j-api:1.7.36'
66-
compileOnly 'org.jetbrains:annotations:26.0.2-1'
67-
testCompileOnly 'org.jetbrains:annotations:26.0.2-1'
66+
compileOnly 'org.jetbrains:annotations:26.1.0'
67+
testCompileOnly 'org.jetbrains:annotations:26.1.0'
6868
api 'org.apache.commons:commons-compress:1.28.0'
6969
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
7070
exclude(group: 'org.jetbrains', module: 'annotations')
7171
}
7272

73-
provided('com.google.cloud.tools:jib-core:0.27.3') {
73+
provided('com.google.cloud.tools:jib-core:0.28.1') {
7474
exclude group: 'com.google.guava', module: 'guava'
7575
exclude group: 'com.fasterxml.jackson.datatype', module: 'jackson-datatype-jsr310'
7676
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
@@ -92,20 +92,20 @@ dependencies {
9292
api 'com.github.docker-java:docker-java-transport-zerodep'
9393

9494
shaded 'com.google.guava:guava:33.3.1-jre'
95-
shaded "org.yaml:snakeyaml:2.5"
95+
shaded "org.yaml:snakeyaml:2.6"
9696

9797
shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'
9898

9999
shaded 'org.zeroturnaround:zt-exec:1.12'
100100

101-
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
101+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.3'
102102

103103
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
104-
testImplementation('com.google.cloud.tools:jib-core:0.27.3') {
104+
testImplementation('com.google.cloud.tools:jib-core:0.28.1') {
105105
exclude group: 'com.google.guava', module: 'guava'
106106
}
107107
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
108-
testImplementation 'redis.clients:jedis:6.2.0'
108+
testImplementation 'redis.clients:jedis:7.4.1'
109109
testImplementation 'com.rabbitmq:amqp-client:5.26.0'
110110
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
111111

@@ -120,7 +120,7 @@ dependencies {
120120

121121
jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
122122
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
123-
jarFileTestRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
123+
jarFileTestRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.3'
124124
jarFileTestImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
125125
jarFileTestImplementation 'org.assertj:assertj-core:3.27.7'
126126
jarFileTestImplementation 'org.ow2.asm:asm-debug-all:5.2'

0 commit comments

Comments
 (0)