Skip to content

Instantly share code, notes, and snippets.

@tobrien
Created April 12, 2013 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobrien/5375316 to your computer and use it in GitHub Desktop.
Save tobrien/5375316 to your computer and use it in GitHub Desktop.
This is a simple Scala build in Gradle. This particular build file ships with the Gradle distribution and it shows how declarative Gradle can be.
apply plugin: 'eclipse'
apply plugin: 'scala'
repositories {
mavenCentral()
}
dependencies {
compile 'org.scala-lang:scala-library:2.9.1'
}
dependencies {
compile 'commons-collections:commons-collections:3.2'
testCompile 'junit:junit:4.11'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment