This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Description
Gradle 4.2.1
build.gradle.kts:
import org.jetbrains.kotlin.gradle.frontend.FrontendPlugin
buildscript {
val kotlinVersion = "1.2-M2"
repositories {
jcenter()
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
}
dependencies {
classpath(kotlin("gradle-plugin", kotlinVersion))
classpath(kotlin("frontend-plugin", "latest.release"))
}
}
apply {
plugin("kotlin2js")
}
plugins.apply(FrontendPlugin::class.java)
repositories {
jcenter()
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
}
val kotlinVersion = "1.2-M2"
dependencies {
compile(kotlin("stdlib-js", kotlinVersion))
}