Skip to content

Instantly share code, notes, and snippets.

@glaforge
Forked from Dierk/build.gradle
Created November 25, 2011 16:04
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save glaforge/1393868 to your computer and use it in GitHub Desktop.
Save glaforge/1393868 to your computer and use it in GitHub Desktop.
build.gradle for setting up a new gradle-based project
apply plugin:'groovy'
apply plugin:'idea'
repositories { mavenCentral() }
dependencies {
groovy 'org.codehaus.groovy:groovy-all:1.8.4'
}
task makeDirs(description:'make all dirs for project setup') << {
def sources = [sourceSets.main, sourceSets.test]
sources*.allSource*.srcDirs.flatten().each { File srcDir ->
println "making $srcDir"
srcDir.mkdirs()
}
}
task wrap(type:Wrapper, description:"create a gradlew") {
gradleVersion = '1.0-milestone-6'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment