mirror of
https://github.com/InsanusMokrassar/TelegramBotApiLibraries.git
synced 2024-10-31 21:43:51 +00:00
50 lines
1.1 KiB
Groovy
50 lines
1.1 KiB
Groovy
project.version = "$version"
|
|
project.group = "$group"
|
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
jvm {
|
|
compilations.main {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
}
|
|
js (IR) {
|
|
browser()
|
|
nodejs()
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib')
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin('test-common')
|
|
implementation kotlin('test-annotations-common')
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
jsTest {
|
|
dependencies {
|
|
implementation kotlin('test-js')
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|