Skip to content

Instantly share code, notes, and snippets.

@SlevinBE
Created September 20, 2012 10:20
Show Gist options
  • Save SlevinBE/3755086 to your computer and use it in GitHub Desktop.
Save SlevinBE/3755086 to your computer and use it in GitHub Desktop.
Gradle url-based dependencies
repositories {
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = 'Apache'
addArtifactPattern 'http://apache.cu.be/incubator/flex/4.8.0-incubating/binaries/[module]-[revision]-incubating-bin.[ext]'
}
}
dependencies {
merged group: 'org.apache', name: 'apache-flex-sdk', version: '4.8.0', ext: 'zip'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment