Skip to content

Instantly share code, notes, and snippets.

@dron247
Forked from jacobmoncur/gist:8587185
Created January 29, 2018 13:46
Show Gist options
  • Save dron247/5dc35a61e9310afd4b2f69a48d26aa33 to your computer and use it in GitHub Desktop.
Save dron247/5dc35a61e9310afd4b2f69a48d26aa33 to your computer and use it in GitHub Desktop.
Gradle file for getting maven dependencies hosted on private github repo
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