Last active
June 21, 2019 22:27
-
-
Save ShelbyCohen/f78f9465362558e46456811507fa9174 to your computer and use it in GitHub Desktop.
Changes to a Gradle project to add Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |
} | |
} | |
plugins { | |
id "org.jetbrains.kotlin.<...>" version "$kotlin_version" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment