I\'m using Gradle to help automate Hadoop tasks. When calling Hadoop, I need to be able to pass it the path to some jars that my code depends on so that Hadoop can send that de
Here is how I did it:
project.buildscript.configurations.classpath.each { String jarName = it.getName(); print jarName + ":" }