Skip to content

Instantly share code, notes, and snippets.

@saltnlight5
Created October 31, 2012 15:50
Show Gist options
  • Save saltnlight5/3987825 to your computer and use it in GitHub Desktop.
Save saltnlight5/3987825 to your computer and use it in GitHub Desktop.
printclasspath-build.gradle
// Problem with http://issues.gradle.org/browse/GRADLE-2381
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile(
'org.neo4j:neo4j-kernel:1.8.M05:tests'
)
}
task('printclasspath') << {
sourceSets.test.runtimeClasspath.getFiles().each { file ->
println file
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment