75 lines
1.8 KiB
Groovy
75 lines
1.8 KiB
Groovy
|
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 {
|
||
|
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version"
|
||
|
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
|
||
|
}
|
||
|
|
||
|
project.version = "$core_version"
|
||
|
project.group = "com.insanusmokrassar"
|
||
|
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
jcenter()
|
||
|
mavenCentral()
|
||
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
jvm()
|
||
|
js (BOTH) {
|
||
|
browser()
|
||
|
nodejs()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
implementation kotlin('stdlib')
|
||
|
|
||
|
api projectByName("core.ktor.common")
|
||
|
api projectByName("publishing.ktor.common")
|
||
|
}
|
||
|
}
|
||
|
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 {
|
||
|
implementation kotlin('test-js')
|
||
|
implementation kotlin('test-junit')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|