Created
February 3, 2012 08:26
-
-
Save breskeby/1728975 to your computer and use it in GitHub Desktop.
Sample Buildfile to resolve deps from sonartype snapshot repository
This file contains 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
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