SauceNaoAPI/build.gradle

71 lines
1.8 KiB
Groovy
Raw Normal View History

2019-02-20 04:06:04 +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"
2020-10-08 09:15:11 +00:00
classpath "com.github.breadmoirai:github-release:$gradle_github_release_plugin_version"
2019-02-20 04:06:04 +00:00
}
}
2020-08-22 17:00:07 +00:00
plugins {
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version"
2020-08-29 13:09:54 +00:00
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
2020-08-22 17:00:07 +00:00
}
2019-02-20 04:06:04 +00:00
2020-10-08 10:54:11 +00:00
project.version = "$library_version"
2020-12-02 08:32:26 +00:00
project.group = "dev.inmo"
2020-08-22 17:00:07 +00:00
2019-02-20 04:06:04 +00:00
apply from: "publish.gradle"
2020-10-08 09:15:11 +00:00
apply from: "github_release.gradle"
2019-02-20 04:06:04 +00:00
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
2020-08-22 17:00:07 +00:00
kotlin {
jvm()
js(BOTH) {
browser()
nodejs()
}
2019-02-20 04:06:04 +00:00
2020-08-22 17:00:07 +00:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
2020-12-02 08:08:19 +00:00
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_version"
2020-08-22 17:00:07 +00:00
api "com.soywiz.korlibs.klock:klock:$klock_version"
api "io.ktor:ktor-client-core:$ktor_version"
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
implementation "io.ktor:ktor-client-okhttp:$ktor_version"
}
}
2020-12-02 08:08:19 +00:00
jsTest {
2020-08-22 17:00:07 +00:00
dependencies {
implementation kotlin('test-js')
}
}
}
2019-02-20 04:06:04 +00:00
}