Skip to content

Instantly share code, notes, and snippets.

@chenzhang2006
Created May 4, 2020 14:39
Show Gist options
  • Save chenzhang2006/67fb145f7c079451d68be17f0b792cd3 to your computer and use it in GitHub Desktop.
Save chenzhang2006/67fb145f7c079451d68be17f0b792cd3 to your computer and use it in GitHub Desktop.
repositories {
maven {
name = "GithubPackages"
url = uri("https://maven.pkg.github.com/chenzhang2006/AndroidLibForArtifactory")
credentials {
username = System.getenv('GITHUB_USER') ?: project.properties['GITHUB_USER']
password = System.getenv('GITHUB_PERSONAL_ACCESS_TOKEN') ?: project.properties['GITHUB_PERSONAL_ACCESS_TOKEN']
}
}
maven {
name = 'CustomMavenRepo'
url = "file://${buildDir}/repo"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment