Last active
August 29, 2015 14:22
-
-
Save phase/ed2b2e1a47d3a1c10e86 to your computer and use it in GitHub Desktop.
Using multiple Gradle plugins for each other
This file contains hidden or 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:0.12.200' | |
} | |
} | |
apply plugin: 'kotlin' | |
apply plugin: 'groovy' | |
apply plugin: 'scala' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
compile 'org.jetbrains.kotlin:kotlin-stdlib:0.12.200' | |
compile 'org.scala-lang:scala-library:2.11.1' | |
compile 'org.codehaus.groovy:groovy-all:2.3.10' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Kotlin -> Java -> Groovy -> Scala