-
-
Save KwabenBerko/936e5e3e136206b109bab1310ec0b6ea to your computer and use it in GitHub Desktop.
math-lib githubpackages settings.gradle file
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
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