Skip to content

Commit ad93137

Browse files
authored
chore: update dependencies to the latest (#1780)
1 parent 5cad531 commit ad93137

File tree

4 files changed

+31
-23
lines changed

4 files changed

+31
-23
lines changed

gradle/libs.versions.toml

+28-20
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,57 @@
11
[versions]
2+
# TODO gradle 8 upgrade -> android-plugin v8 requires gradle 8
23
android-plugin = "8.0.0-alpha11"
3-
classgraph = "4.8.149"
4+
classgraph = "4.8.160"
45
dataloader = "3.2.0"
5-
federation = "3.0.0"
6+
federation = "3.0.1"
67
graphql-java = "20.2"
78
graalvm = "0.9.21"
8-
jackson = "2.14.1"
9+
jackson = "2.15.0"
910
kotlin = "1.7.21"
10-
kotlinx-benchmark = "0.4.4"
11+
# TODO kotlin 1.8 upgrade -> kotlinx-benchmark 0.4.7+ uses kotlin 1.8
12+
kotlinx-benchmark = "0.4.6"
13+
# TODO kotlin 1.8 upgrade -> kotlinx-coroutines 1.7.0+ uses kotlin 1.8
1114
kotlinx-coroutines = "1.6.4"
15+
# TODO kotlin 1.8 upgrade -> kotlinx-serialization 1.5.0+ uses kotlin 1.8
1216
kotlinx-serialization = "1.4.1"
17+
# TODO kotlin 1.8 upgrade -> ktor 2.3.0+ uses kotlin 1.8
1318
ktor = "2.2.4"
14-
maven-plugin-annotation = "3.6.0"
15-
maven-plugin-api = "3.6.3"
19+
maven-plugin-annotation = "3.9.0"
20+
maven-plugin-api = "3.9.2"
1621
maven-project = "2.2.1"
22+
# TODO kotlin 1.8 upgrade -> kotlinpoet 1.13.0+ uses kotlin 1.8
1723
poet = "1.12.0"
18-
## reactorVersion should be the same reactor-core version pulled from spring-boot-starter-webflux
19-
reactor-core = "3.5.5"
24+
## reactor and spring versions should be the same as defined in spring-boot-dependencies
25+
reactor-core = "3.5.6"
2026
reactor-extensions = "1.2.2"
21-
slf4j = "1.7.36"
22-
spring = "6.0.8"
23-
spring-boot = "3.0.6"
27+
slf4j = "2.0.7"
28+
spring = "6.0.9"
29+
spring-boot = "3.1.0"
2430

2531
# test dependencies
2632
# kotlin-compile-testing has to be using the same kotlin version as the kotlinx-serialization compiler
2733
# https://github.com/tschuchortdev/kotlin-compile-testing the latest version targets kotlin 1.7.10 which blocks updates to newer
2834
# versions of kotlin, switching to a fork https://github.com/ZacSweers/kotlin-compile-testing
2935
compile-testing = "0.1.0"
30-
icu = "71.1"
31-
junit = "5.9.2"
32-
logback = "1.2.1"
36+
icu = "73.1"
37+
junit = "5.9.3"
38+
logback = "1.4.7"
39+
# TODO kotlin 1.8 upgrade -> mock 1.13.4+ uses kotlin 1.8
3340
mockk = "1.13.3"
34-
rxjava = "3.1.5"
35-
wiremock = "2.33.2"
41+
rxjava = "3.1.6"
42+
wiremock = "2.35.0"
3643

3744
# plugins
45+
# TODO kotlin 1.8 upgrade -> detekt 1.22.0+ uses kotlin 1.8
3846
detekt = "1.21.0"
39-
dokka = "1.6.10"
40-
jacoco = "0.8.8"
47+
dokka = "1.7.20"
48+
jacoco = "0.8.10"
4149
# klint gradle plugin breaks with 0.46.x+
4250
ktlint-core = "0.45.2"
4351
ktlint-plugin = "10.3.0"
4452
maven-plugin-development = "0.4.1"
45-
nexus-publish-plugin = "1.1.0"
46-
plugin-publish = "0.21.0"
53+
nexus-publish-plugin = "1.3.0"
54+
plugin-publish = "1.2.0"
4755

4856
# ====================
4957
# LIBRARIES

integration/graalvm/maven-graalvm-server/.mvn/wrapper/maven-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.1/apache-maven-3.9.1-bin.zip
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.2/apache-maven-3.9.2-bin.zip
1818
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

integration/maven-plugin-integration-tests/.mvn/wrapper/maven-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.2/apache-maven-3.9.2-bin.zip
1818
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar

plugins/server/graphql-kotlin-graalvm-metadata-generator/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ tasks {
5858
limit {
5959
counter = "INSTRUCTION"
6060
value = "COVEREDRATIO"
61-
minimum = "0.84".toBigDecimal()
61+
minimum = "0.80".toBigDecimal()
6262
}
6363
limit {
6464
counter = "BRANCH"

0 commit comments

Comments
 (0)