Skip to content

Instantly share code, notes, and snippets.

View fergsmyth's full-sized avatar

Ferghal Smyth fergsmyth

View GitHub Profile
task svnTest(type: Exec) {
commandLine 'svnversion'
standardOutput = new ByteArrayOutputStream()
doLast{
project.ext.svnversion = standardOutput.toString()
}
}
configure(subprojects.findAll {it.name != 'somename'}) {
jar {