From 83b7931d5588a74d03a48c412e4f9fd44becb99c Mon Sep 17 00:00:00 2001 From: Nick Stanchenko Date: Thu, 24 Nov 2016 11:31:37 +0000 Subject: [PATCH] Update versions and publishing setup, publish 1.5 --- README.md | 7 ++----- build.sbt | 29 +++++++---------------------- project/build.properties | 2 +- project/plugins.sbt | 7 +------ 4 files changed, 11 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 95ba652..66739b1 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,11 @@ _Please note, `JsZipper` is not an end in itself but a tool useful to provide ne ## Use it in your SBT project -> I've just published v1.1 of JsZipper to Bintray instead of my fake maven repo in github. -> It's much more reliable. - ```scala -resolvers += "mandubian maven bintray" at "http://dl.bintray.com/mandubian/maven" +resolvers += Resolver.bintrayRepo("stanch", "maven") libraryDependencies ++= Seq( - "com.mandubian" %% "play-json-zipper" % "1.2" + "org.stanch" %% "play-json-zipper" % "1.5" ) ``` diff --git a/build.sbt b/build.sbt index 19240b0..6c1f7a3 100644 --- a/build.sbt +++ b/build.sbt @@ -1,30 +1,15 @@ -organization := "com.mandubian" +organization := "org.stanch" -name := "play-json-zipper" +name := "play-json-zipper" -version := "1.4" +version := "1.5" -resolvers ++= Seq( - "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/", - "Mandubian repository snapshots" at "https://github.com/mandubian/mandubian-mvn/raw/master/snapshots/", - "Mandubian repository releases" at "https://github.com/mandubian/mandubian-mvn/raw/master/releases/" -) - -scalaVersion := "2.11.7" - -crossScalaVersions := Seq("2.10.4", "2.11.0") +scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.typesafe.play" %% "play-json" % "2.5.2" , - "org.specs2" %% "specs2" % "2.3.12" % "test", - "junit" % "junit" % "4.8" % "test" + "com.typesafe.play" %% "play-json" % "2.5.10", + "org.specs2" %% "specs2" % "2.3.12" % "test", + "junit" % "junit" % "4.8" % "test" ) -publishMavenStyle := true - -seq(bintraySettings:_*) - licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")) - -bintray.Keys.packageLabels in bintray.Keys.bintray := - Seq("play-json", "zipper", "monad", "functional programming", "scala") diff --git a/project/build.properties b/project/build.properties index 8cbb522..817bc38 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=0.13.0 \ No newline at end of file +sbt.version=0.13.9 diff --git a/project/plugins.sbt b/project/plugins.sbt index b82f1e1..8dd913f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1 @@ -resolvers += Resolver.url( - "bintray-sbt-plugin-releases", - url("http://dl.bintray.com/content/sbt/sbt-plugin-releases"))( - Resolver.ivyStylePatterns) - -addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.1") +addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")