1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-02-16 19:52:01 +00:00

52 lines
1.2 KiB
Groovy
Raw Normal View History

2020-04-08 11:05:48 +06:00
buildscript {
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
}
}
plugins {
2020-08-18 12:50:11 +06:00
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-04-08 11:05:48 +06:00
}
project.version = "$library_version"
project.group = "$library_group"
apply from: "publish.gradle"
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
kotlin {
jvm()
2020-08-20 10:51:05 +06:00
js(BOTH) {
browser()
2020-08-19 13:49:30 +06:00
nodejs()
}
2020-04-08 11:05:48 +06:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
2020-10-04 18:34:03 +06:00
api "${project.group}:tgbotapi.core:$library_version"
2020-04-08 11:05:48 +06:00
} else {
2020-10-04 18:34:03 +06:00
api project(":tgbotapi.core")
2020-04-08 11:05:48 +06:00
}
}
}
}
}