From 13c8d00848b4e580f965761ab5eeaa4d43de6341 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Wed, 24 Jun 2015 16:56:45 -0400 Subject: [PATCH] Fixes #2043. bintrayRelease is repeated 20x? --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 62f797f83..132ca67fe 100644 --- a/build.sbt +++ b/build.sbt @@ -499,7 +499,8 @@ def otherRootSettings = Seq( Scripted.scriptedSource <<= (sourceDirectory in sbtProj) / "sbt-test", publishAll := { val _ = (publishLocal).all(ScopeFilter(inAnyProject)).value - } + }, + aggregate in bintrayRelease := false ) ++ inConfig(Scripted.MavenResolverPluginTest)(Seq( Scripted.scripted <<= scriptedTask, Scripted.scriptedUnpublished <<= scriptedUnpublishedTask,