Last active
February 23, 2018 10:12
-
-
Save marcolink/3211c01c361b63a279026dfcbd55d092 to your computer and use it in GitHub Desktop.
Gradle cheatsheet
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
// build local snapshot | |
gw snapshot -x check -x groovydoc -x githubPublish -x javadoc -x publishGroovydocs | |
// use local snapshot | |
buildscript { | |
repositories { | |
mavenLocal() | |
} | |
dependencies { | |
classpath "net.wooga.gradle:atlas-paket:0.11.0-SNAPSHOT" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment