diff --git a/README.md b/README.md index 5acbed8..ecc1f38 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ SBT Configuration: - libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "0.1.0" +```scala +libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "0.1.0" +``` ## License diff --git a/build.sbt b/build.sbt index f619f0d..42842f9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "sangria-play-json" organization := "org.sangria-graphql" -version := "0.1.0-SNAPSHOT" +version := "0.1.0" description := "Sangria play-json marshalling" homepage := Some(url("http://sangria-graphql.org")) @@ -10,14 +10,13 @@ scalaVersion := "2.11.7" scalacOptions ++= Seq("-deprecation", "-feature") libraryDependencies ++= Seq( - "org.sangria-graphql" %% "sangria-marshalling-api" % "0.1.0-SNAPSHOT", + "org.sangria-graphql" %% "sangria-marshalling-api" % "0.1.0", "com.typesafe.play" %% "play-json" % "2.4.6", - "org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.1.0-SNAPSHOT" % "test", + "org.sangria-graphql" %% "sangria-marshalling-testkit" % "0.1.0" % "test", "org.scalatest" %% "scalatest" % "2.2.4" % "test" ) -resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" git.remoteRepo := "git@github.com:sangria-graphql/sangria-play-json.git" // Publishing