Skip to content

Commit e29cd80

Browse files
committed
gradle: fix bad central dependencies
1 parent f3ce5ee commit e29cd80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ repositories {
2626
}
2727

2828
dependencies {
29-
compileOnly(repository.group, "unsigned", "3.3.32")
30-
compileOnly(repository.group, "kool", "0.9.77")
29+
compileOnly(repository.group, "kotlin-unsigned", "3.3.32")
30+
compileOnly(repository.group, "kool", "0.9.79")
3131

3232
compileOnly("org.lwjgl:lwjgl-jemalloc:3.3.2")
3333

3434

3535
testImplementation("io.kotest:kotest-runner-junit5:5.6.2")
3636
testImplementation("io.kotest:kotest-assertions-core:5.6.2")
3737

38-
testImplementation(repository.group, "kool", "0.9.77")
39-
testImplementation(repository.group, "unsigned", "3.3.32")
38+
testImplementation(repository.group, "kool", "0.9.79")
39+
testImplementation(repository.group, "kotlin-unsigned", "3.3.32")
4040
}
4141

4242
kotlin.jvmToolchain { languageVersion.set(JavaLanguageVersion.of(8)) }

0 commit comments

Comments
 (0)