Skip to content

Instantly share code, notes, and snippets.

@breskeby
Created February 3, 2012 08:26
Show Gist options
  • Save breskeby/1728975 to your computer and use it in GitHub Desktop.
Save breskeby/1728975 to your computer and use it in GitHub Desktop.
Sample Buildfile to resolve deps from sonartype snapshot repository
apply plugin:'java'
repositories{
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies{
compile "org.ajoberstar:gradle-git:0.1.1-SNAPSHOT"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment