This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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]) { |