Skip to content

Instantly share code, notes, and snippets.

@marcolink
Last active February 23, 2018 10:12
Show Gist options
  • Save marcolink/3211c01c361b63a279026dfcbd55d092 to your computer and use it in GitHub Desktop.
Save marcolink/3211c01c361b63a279026dfcbd55d092 to your computer and use it in GitHub Desktop.
Gradle cheatsheet
// 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