Add Apache staging repo

This commit is contained in:
Matthew de Detrich 2023-07-27 10:15:14 +02:00 committed by Matthew de Detrich
parent bc4354436e
commit 10a79d6001
No known key found for this signature in database
GPG Key ID: 196CBC8FEAA4CC64
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)