From 584da921ea7109ec9a51d8db68ada9ee11d63820 Mon Sep 17 00:00:00 2001 From: Sarah Gerweck Date: Tue, 11 Aug 2015 11:34:20 -0700 Subject: [PATCH] Fix the Sonatype staging location Publishing isn't possible with the one that comes from SBT for some reason. --- project/Build.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Build.scala b/project/Build.scala index cf25149..01aa946 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -117,7 +117,7 @@ object Helpers { object Resolvers { val sonatypeSnaps = Resolver.sonatypeRepo("snapshots") val sonatypeRelease = Resolver.sonatypeRepo("releases") - val sonatypeStaging = Resolver.sonatypeRepo("staging") + val sonatypeStaging = "Sonatype Staging" at "https://oss.sonatype.org/service/local/staging/deploy/maven2" } object PublishSettings {