From 0a84ac0b10ac89df43e5389f4c5a792a7ae1c931 Mon Sep 17 00:00:00 2001 From: Vladimir Matveev Date: Thu, 11 Jun 2015 14:24:24 +0300 Subject: [PATCH] Fixed build to support latest bintray plugin --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index fc43a07..0fc6966 100644 --- a/build.sbt +++ b/build.sbt @@ -8,8 +8,9 @@ val commonCommonSettings = Seq( autoAPIMappings := true ) -val commonSettings = bintrayPublishSettings ++ commonCommonSettings ++ Seq( - name in bintray.Keys.bintray := "picopickle", +val commonSettings = commonCommonSettings ++ Seq( + bintrayPackage := "picopickle", + bintrayReleaseOnPublish in ThisBuild := false, licenses := Seq("MIT" -> url("https://raw.githubusercontent.com/netvl/picopickle/master/LICENSE")), homepage := Some(url("https://github.com/netvl/picopickle")),