Skip to content

Instantly share code, notes, and snippets.

@KwabenBerko
Last active April 10, 2024 13:15
Show Gist options
  • Save KwabenBerko/936e5e3e136206b109bab1310ec0b6ea to your computer and use it in GitHub Desktop.
Save KwabenBerko/936e5e3e136206b109bab1310ec0b6ea to your computer and use it in GitHub Desktop.
math-lib githubpackages settings.gradle file
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven {
name = "gitHubPackages"
url = uri("https://maven.pkg.github.com/<GITHUB_USER_NAME>/MathLibGuide")
credentials(PasswordCredentials::class)
}
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven {
name = "gitHubPackages"
url = uri("https://maven.pkg.github.com/<GITHUB_USER_NAME>/MathLibGuide")
credentials(PasswordCredentials::class)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment