Skip to content

Instantly share code, notes, and snippets.

@phase
Last active August 29, 2015 14:22
Show Gist options
  • Save phase/ed2b2e1a47d3a1c10e86 to your computer and use it in GitHub Desktop.
Save phase/ed2b2e1a47d3a1c10e86 to your computer and use it in GitHub Desktop.
Using multiple Gradle plugins for each other
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'
}
@phase
Copy link
Author

phase commented Jun 12, 2015

Kotlin -> Java -> Groovy -> Scala

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment