Created
January 27, 2015 17:01
-
-
Save artem-zinnatullin/456a80782a14dc11b916 to your computer and use it in GitHub Desktop.
Root build.gradle with Kotlin Gradle plugin
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 { | |
jcenter() // or use mavenCentral() repo | |
} | |
// Please visit http://search.maven.org | |
// or https://bintray.com to find newest versions of dependencies | |
dependencies { | |
// Android Gradle plugin | |
classpath 'com.android.tools.build:gradle:1.0.1' | |
// Kotlin Gradle plugin | |
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:0.10.195' | |
// NOTE: Do not place your application dependencies here; they belong | |
// in the individual module build.gradle files | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment