Skip to content

Instantly share code, notes, and snippets.

@emoseman
Created June 6, 2012 15:07
Show Gist options
  • Save emoseman/2882448 to your computer and use it in GitHub Desktop.
Save emoseman/2882448 to your computer and use it in GitHub Desktop.
Initial gradle build file.
group = 'org.emoseman'
version = '1.0.0'
repositories {
}
dependencies {
compile "log4j:log4j:1.2.15"
testCompile "simple-jndi:simple-jndi:0.11.4.1"
testCompile "junit:junit:4.11"
}
test {
maxParallelForks = 5
maxHeapSize = '1024m'
testLogging.showStandardStreams = true
beforeTest { descriptor ->
logger.lifecycle("Running test: " + descriptor)
}
onOutput { descriptor, event ->
logger.lifecycle("Test: " + descriptor + " : " + event.message )
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment