Skip to content

Instantly share code, notes, and snippets.

@xinthink
Created April 4, 2012 10:30
Show Gist options
  • Save xinthink/2300206 to your computer and use it in GitHub Desktop.
Save xinthink/2300206 to your computer and use it in GitHub Desktop.
gradle dependencies resolving against GitHub download url
repositories {
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = 'GitHub'
addArtifactPattern 'http://cloud.github.com/downloads/[organisation]/[module]/[module]-[revision].[ext]'
}
}
dependencies {
classpath '<githubId>:<artifact>:<revision>'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment