Skip to content

Commit ba183fb

Browse files
committed
Fix "Could not resolve org.jetbrains.kotlin:kotlin-test:1.9.23"
At this point, I don't know why we get this error. Everything looks great and accessible in mvnrepository especially kotlin library. But we do have the following error: ``` Could not resolve org.jetbrains.kotlin:kotlin-test:1.9.23. Required by: project :cosmotech-connector-api > Unable to find a variant of org.jetbrains.kotlin:kotlin-test:1.9.23 providing the requested capability org.jetbrains.kotlin:kotlin-test-framework-junit5: ``` Upgrading kotlin version to 1.9.25 will force the kotlin-test module's version to 1.9.25 too and it apparently fixes the compilation error message...
1 parent cf1f303 commit ba183fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import org.springframework.boot.gradle.tasks.run.BootRun
2525
// See https://docs.gradle.org/current/userguide/organizing_gradle_projects.html#sec:build_sources
2626

2727
plugins {
28-
val kotlinVersion = "1.9.23"
28+
val kotlinVersion = "1.9.25"
2929
kotlin("jvm") version kotlinVersion
3030
kotlin("plugin.spring") version kotlinVersion apply false
3131
id("pl.allegro.tech.build.axion-release") version "1.15.5"

0 commit comments

Comments
 (0)