Fixed wrong stdlib dependency.
This commit is contained in:
parent
4805d3aba7
commit
09d3b0e973
@ -7,7 +7,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "scientifik"
|
group = "scientifik"
|
||||||
version = "0.1.6"
|
version = "0.1.7-dev"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
* Build constants
|
* Build constants
|
||||||
*/
|
*/
|
||||||
object Scientifik {
|
object Scientifik {
|
||||||
const val ioVersion = "0.1.13"
|
const val ioVersion = "0.1.14"
|
||||||
const val coroutinesVersion = "1.3.0"
|
const val coroutinesVersion = "1.3.1"
|
||||||
const val atomicfuVersion = "0.12.11"
|
const val atomicfuVersion = "0.12.11"
|
||||||
const val serializationVersion = "0.12.0"
|
const val serializationVersion = "0.12.0"
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ open class ScientifikJSPlugin : Plugin<Project> {
|
|||||||
languageSettings.applySettings()
|
languageSettings.applySettings()
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(kotlin("stdlib-jdk8"))
|
api(kotlin("stdlib-js"))
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
if (extension.serialization) {
|
if (extension.serialization) {
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime:${Scientifik.serializationVersion}")
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime:${Scientifik.serializationVersion}")
|
||||||
|
Loading…
Reference in New Issue
Block a user