mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 06:42:05 +01:00
Cleanup build files and add jvmTest SourceSet
This commit is contained in:
@@ -64,25 +64,30 @@ kotlin {
|
||||
val jvmMain by creating {
|
||||
dependsOn(commonMain)
|
||||
dependencies {
|
||||
api(kotlin("stdlib-jdk8"))
|
||||
api(libs.ktor.okHttp)
|
||||
}
|
||||
}
|
||||
val jvmTest by creating {
|
||||
dependsOn(commonTest)
|
||||
dependencies {
|
||||
implementation(kotlin("test"))
|
||||
}
|
||||
}
|
||||
|
||||
val desktopMain by getting {
|
||||
dependsOn(jvmMain)
|
||||
dependencies {
|
||||
api(kotlin("stdlib-jdk8"))
|
||||
}
|
||||
}
|
||||
val desktopTest by getting
|
||||
val desktopTest by getting {
|
||||
dependsOn(jvmTest)
|
||||
}
|
||||
|
||||
val androidMain by getting {
|
||||
dependsOn(jvmMain)
|
||||
dependencies {
|
||||
api(kotlin("stdlib-jdk8"))
|
||||
}
|
||||
}
|
||||
val androidTest by getting
|
||||
val androidTest by getting {
|
||||
dependsOn(jvmTest)
|
||||
}
|
||||
|
||||
val iosMain by creating {
|
||||
dependsOn(commonMain)
|
||||
|
||||
Reference in New Issue
Block a user