2019-11-10 18:07:54 +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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 07:12:55 +00:00
|
|
|
plugins {
|
2020-07-27 06:35:59 +00:00
|
|
|
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version"
|
2020-04-10 07:12:55 +00:00
|
|
|
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
project.version = "$core_version"
|
|
|
|
project.group = "com.insanusmokrassar"
|
2019-11-10 18:07:54 +00:00
|
|
|
|
2020-04-10 10:50:41 +00:00
|
|
|
apply from: "./publish.gradle"
|
2019-11-28 10:19:36 +00:00
|
|
|
|
2019-11-10 18:07:54 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
|
|
}
|
|
|
|
|
2020-07-27 06:35:59 +00:00
|
|
|
kotlin {
|
|
|
|
jvm()
|
2020-08-20 06:47:10 +00:00
|
|
|
js (BOTH) {
|
|
|
|
browser()
|
|
|
|
nodejs()
|
|
|
|
}
|
2019-11-20 04:03:16 +00:00
|
|
|
|
2020-07-27 06:35:59 +00:00
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
2020-04-10 06:54:06 +00:00
|
|
|
|
2020-07-27 06:35:59 +00:00
|
|
|
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
|
2020-08-05 10:21:30 +00:00
|
|
|
api "com.insanusmokrassar:postssystem.core.api:$core_version"
|
2020-07-27 06:35:59 +00:00
|
|
|
} else {
|
2020-09-09 18:04:25 +00:00
|
|
|
api projectByName("core.api")
|
2020-07-27 06:35:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib-jdk8')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib-js')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
2020-07-30 09:28:11 +00:00
|
|
|
implementation kotlin('test-js')
|
|
|
|
implementation kotlin('test-junit')
|
2020-07-27 06:35:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-10 18:07:54 +00:00
|
|
|
}
|
2020-07-27 06:35:59 +00:00
|
|
|
|