Getting Started with Kotlin and JavaScript with Gradle
Getting Started with Kotlin and JavaScript with Gradle
Last Updated | 4 November 2016 |
In this tutorial we'll see how to
In order to use Gradle to target JavaScript, we need to use the kotlin2js
plugin as opposed to the kotlin
plugin.
Our build.gradle
file should look like the following
group 'org.example' version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = '${kotlinVersion}' repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: 'kotlin2js' repos