mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 15:17:05 +05:30
build: cleanup sourceSet handling to drop unused vals
This commit is contained in:
parent
fde4e01697
commit
76c46b4229
3 changed files with 27 additions and 61 deletions
|
@ -12,17 +12,15 @@ version = "1.0"
|
|||
|
||||
kotlin {
|
||||
jvm { compilations.all { kotlinOptions.jvmTarget = "11" } }
|
||||
sourceSets {
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
implementation(projects.common)
|
||||
implementation(libs.aurora.component)
|
||||
implementation(libs.aurora.skin)
|
||||
implementation(libs.aurora.window)
|
||||
implementation(compose.desktop.currentOs)
|
||||
}
|
||||
sourceSets["jvmMain"].apply {
|
||||
dependencies {
|
||||
implementation(projects.api)
|
||||
implementation(projects.common)
|
||||
implementation(libs.aurora.component)
|
||||
implementation(libs.aurora.skin)
|
||||
implementation(libs.aurora.window)
|
||||
implementation(compose.desktop.currentOs)
|
||||
}
|
||||
val jvmTest by getting
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue