Rename name for Apache nexus repo to work with Sonatype

This commit is contained in:
Matthew de Detrich 2023-01-26 14:04:10 +01:00 committed by Matthew de Detrich
parent beb13d23ef
commit 4c0219600b

View file

@ -44,7 +44,7 @@ object Publish extends AutoPlugin {
private def apacheNexusCredentials: Seq[Credentials] =
(sys.env.get("NEXUS_USER"), sys.env.get("NEXUS_PW")) match {
case (Some(user), Some(password)) =>
Seq(Credentials("Apache Nexus Repository Manager", apacheBaseRepo, user, password))
Seq(Credentials("Sonatype Nexus Repository Manager", apacheBaseRepo, user, password))
case _ =>
Seq.empty
}