Skip to content

Instantly share code, notes, and snippets.

@Dierk
Created October 7, 2011 22:43
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save Dierk/1271516 to your computer and use it in GitHub Desktop.
Save Dierk/1271516 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.2'
}
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-4'
}
@Dierk
Copy link
Author

Dierk commented Oct 7, 2011

copy this file into a new, empty project dir and call "gradle mD" to set up the project directories or "gradle wrap" to create the wrapper

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