mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-10-31 21:43:48 +00:00
50 lines
1.1 KiB
Groovy
50 lines
1.1 KiB
Groovy
project.version = "$library_version"
|
|
project.group = "$library_group"
|
|
|
|
kotlin {
|
|
jvm {
|
|
compilations.main {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
}
|
|
js (IR) {
|
|
browser()
|
|
nodejs()
|
|
}
|
|
linuxX64()
|
|
mingwX64()
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation libs.kotlin
|
|
api libs.kotlin.serialization
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation libs.kotlin.test.common
|
|
implementation libs.kotlin.test.annotations.common
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation libs.kotlin.test.junit
|
|
}
|
|
}
|
|
jsTest {
|
|
dependencies {
|
|
implementation libs.kotlin.test.js
|
|
implementation libs.kotlin.test.junit
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|