Skip to content

Instantly share code, notes, and snippets.

@cpuspellcaster
Created September 27, 2015 21:12
Show Gist options
  • Select an option

  • Save cpuspellcaster/44b447aeaa6b113dea8f to your computer and use it in GitHub Desktop.

Select an option

Save cpuspellcaster/44b447aeaa6b113dea8f to your computer and use it in GitHub Desktop.
Gradle Task to write a Java classpath to a textfile named .classpath
task writeClasspath << {
buildDir.mkdirs()
new File(buildDir, ".classpath").text = configurations.runtime.asPath + "\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment