Created
January 23, 2014 21:28
-
-
Save jacobmoncur/8587185 to your computer and use it in GitHub Desktop.
Gradle file for getting maven dependencies hosted on private github repo
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
repositories { | |
mavenCentral() | |
maven { | |
url = 'https://github.com/github-username/github-project/raw/master' | |
credentials { | |
username 'my-username' | |
password 'my-password' | |
} | |
} | |
} | |
dependencies { | |
compile 'com.example:library_project:0.0.1' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want to use authentication through ssh key. Where can I find the documentation on this?