Merge pull request #423 from mdedetrich/add-apache-staging-repo

Add Apache staging repo
This commit is contained in:
eugene yokota 2023-07-28 19:19:12 -04:00 committed by GitHub
commit 2837a6474e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -186,6 +186,11 @@ private[librarymanagement] abstract class ResolverFunctions {
"https://repository.apache.org/content/repositories/snapshots/"
)
val ApacheMavenStagingRepo = MavenRepository(
"apache-staging",
"https://repository.apache.org/content/groups/staging/"
)
/** Add the local and Maven Central repositories to the user repositories. */
def combineDefaultResolvers(userResolvers: Vector[Resolver]): Vector[Resolver] =
combineDefaultResolvers(userResolvers, mavenCentral = true)