-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #463 from InsanusMokrassar/0.21.4
0.21.4
- Loading branch information
Showing
6 changed files
with
111 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
project.version = "$version" | ||
project.group = "$group" | ||
|
||
apply from: "$publishGradlePath" | ||
|
||
kotlin { | ||
jvm { | ||
compilations.main { | ||
kotlinOptions { | ||
jvmTarget = "17" | ||
} | ||
} | ||
} | ||
js (IR) { | ||
browser() | ||
nodejs() | ||
} | ||
androidTarget { | ||
publishAllLibraryVariants() | ||
compilations.all { | ||
kotlinOptions { | ||
jvmTarget = "17" | ||
} | ||
} | ||
} | ||
linuxX64() | ||
mingwX64() | ||
linuxArm64() | ||
|
||
sourceSets { | ||
commonMain { | ||
dependencies { | ||
implementation kotlin('stdlib') | ||
implementation compose.runtime | ||
api libs.kt.serialization | ||
} | ||
} | ||
commonTest { | ||
dependencies { | ||
implementation kotlin('test-common') | ||
implementation kotlin('test-annotations-common') | ||
implementation libs.kt.coroutines.test | ||
} | ||
} | ||
|
||
androidUnitTest { | ||
dependencies { | ||
implementation kotlin('test-junit') | ||
implementation libs.android.test.junit | ||
implementation libs.android.espresso | ||
implementation compose.uiTest | ||
} | ||
} | ||
androidInstrumentedTest { | ||
dependencies { | ||
implementation kotlin('test-junit') | ||
implementation libs.android.test.junit | ||
implementation libs.android.espresso | ||
} | ||
} | ||
jvmMain { | ||
dependencies { | ||
implementation compose.desktop.currentOs | ||
} | ||
} | ||
jvmTest { | ||
dependencies { | ||
implementation kotlin('test-junit') | ||
implementation compose.uiTest | ||
} | ||
} | ||
jsMain { | ||
dependencies { | ||
implementation compose.web.core | ||
} | ||
} | ||
jsTest { | ||
dependencies { | ||
implementation kotlin('test-js') | ||
implementation kotlin('test-junit') | ||
} | ||
} | ||
nativeMain.dependsOn commonMain | ||
linuxX64Main.dependsOn nativeMain | ||
mingwX64Main.dependsOn nativeMain | ||
linuxArm64Main.dependsOn nativeMain | ||
|
||
androidMain.dependsOn jvmMain | ||
} | ||
} | ||
|
||
apply from: "$defaultAndroidSettingsPresetPath" | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} |