Skip to content

Instantly share code, notes, and snippets.

View clmarquart's full-sized avatar

Cody Marquart clmarquart

View GitHub Profile
@clmarquart
clmarquart / gist:1976155
Created March 5, 2012 02:46
Gradle buildscript project dependency
/**
* Gradle doesn't allow project dependencies within the buildscript
* classpath closure. This is a workaround I came up with to use
* the built Jar of a project in the classpath of another project's
* buildscript.
*
* View it in action: https://github.com/gripes/gripes-test/blob/master/build.gradle
*/
buildscript {
project.getTasks().add([name: "gripes", type: GradleBuild]) {