Skip to content

Commit 1bd6291

Browse files
authored
Fix publication after migration on kotlin 2 (#232)
1 parent cbad8dc commit 1bd6291

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

buildSrc/src/main/kotlin/usvm.kotlin-conventions.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ repositories {
1616

1717
dependencies {
1818
// Align versions of all Kotlin components
19-
implementation(platform(kotlin("bom")))
20-
implementation(kotlin("stdlib-jdk8"))
21-
implementation(kotlin("reflect"))
19+
implementation(platform(kotlin("bom", Versions.kotlin)))
20+
implementation(kotlin("stdlib-jdk8", Versions.kotlin))
21+
implementation(kotlin("reflect", Versions.kotlin))
2222

2323
implementation(Libs.kotlin_logging)
2424
implementation(Libs.kotlinx_coroutines_core)

0 commit comments

Comments
 (0)