Last active
August 12, 2018 05:02
-
-
Save jzillmann/07a9bb6d4c20fe70d3b2f6191ea8bef8 to your computer and use it in GitHub Desktop.
Gradle Snippets
This file contains hidden or 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
| // Add dependsOn to existing task | |
| test.dependsOn jar | |
| test.dependsOn tasks.getByPath(':submodule1:shadowJar') | |
| // Update gradle wrapper in a project | |
| gradle wrapper |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment