Created
October 31, 2012 15:50
-
-
Save saltnlight5/3987825 to your computer and use it in GitHub Desktop.
printclasspath-build.gradle
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
// 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