2020-04-08 05:05:48 +00: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 06:50:11 +00:00
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-04-08 05:05:48 +00: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 04:51:05 +00:00
|
|
|
js(BOTH) {
|
2020-09-22 16:42:01 +00:00
|
|
|
browser()
|
2020-08-19 07:49:30 +00:00
|
|
|
nodejs()
|
|
|
|
}
|
2020-04-08 05:05:48 +00: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 12:34:03 +00:00
|
|
|
api "${project.group}:tgbotapi.core:$library_version"
|
2020-04-08 05:05:48 +00:00
|
|
|
} else {
|
2020-10-04 12:34:03 +00:00
|
|
|
api project(":tgbotapi.core")
|
2020-04-08 05:05:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|