Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions common-deps/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import org.jetbrains.kotlin.gradle.dsl.JvmDefaultMode

description = "Kotlin Symbol Processor"

val junitVersion: String by project
val signingKey: String? by project
val signingPassword: String? by project

Expand All @@ -16,7 +15,7 @@ plugins {

dependencies {
compileOnly(project(":api"))
testImplementation("junit:junit:$junitVersion")
testImplementation(libs.junit4)

ksp(project(":cmdline-parser-gen"))
}
Expand Down
7 changes: 2 additions & 5 deletions common-util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@ import org.jetbrains.kotlin.gradle.dsl.JvmDefaultMode

description = "Kotlin Symbol Processing Util"

val junitVersion: String by project
val kotlinBaseVersion: String by project

plugins {
kotlin("jvm")
id("org.jetbrains.dokka")
}

dependencies {
implementation(project(":api"))
implementation(kotlin("stdlib", kotlinBaseVersion))
testImplementation("junit:junit:$junitVersion")
implementation(libs.kotlin.stdlib)
testImplementation(libs.junit4)
}

kotlin {
Expand Down
7 changes: 7 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[versions]
kotlin-base = "2.3.20"
junit = "4.13.1"

[libraries]
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin-base" }
junit4 = { module = "junit:junit", version.ref = "junit" }
Loading