Skip to content

Instantly share code, notes, and snippets.

@vitojeng
Last active November 24, 2015 06:14
Show Gist options
  • Save vitojeng/71189fbc13e05b8846eb to your computer and use it in GitHub Desktop.
Save vitojeng/71189fbc13e05b8846eb to your computer and use it in GitHub Desktop.
Gradle Tips
$ gradle -q dependencies --configuration compile

How to compile a java class that depends on a scala class in gradle

Gradle Forums

task copyToLib(type: Copy) {
    into "src/main/webapp/lib"
    from configurations.runtime
    from configurations.testCompile
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment