From ca0fec50caed0e9a65a40afc29c72d10f835d0b5 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Tue, 12 Jan 2016 00:06:02 +0100 Subject: [PATCH] Update Sonatype credentials config --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index a45710c00..d1882c582 100644 --- a/build.sbt +++ b/build.sbt @@ -31,7 +31,7 @@ lazy val releaseSettings = sbtrelease.ReleasePlugin.releaseSettings ++ Seq( credentials += { Seq("SONATYPE_USER", "SONATYPE_PASS").map(sys.env.get) match { case Seq(Some(user), Some(pass)) => - Credentials("Sonatype Nexus Repository Manager", "oss.sonatype.org", user, pass) + Credentials("Nexus Repository Manager", "oss.sonatype.org", user, pass) case _ => Credentials(Path.userHome / ".ivy2" / ".credentials") }