Skip to content

Commit

Permalink
Update versions and publishing setup, publish 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Stanchenko committed Nov 24, 2016
1 parent 1133c69 commit 83b7931
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 34 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand Down
29 changes: 7 additions & 22 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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")
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.0
sbt.version=0.13.9
7 changes: 1 addition & 6 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit 83b7931

Please sign in to comment.