diff --git a/README.md b/README.md index 48b41ea..257ffec 100755 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ It will ask you a couple of questions, and your ready to rock 'n roll. Start by adding the plugin, in your `project/Build.scala` val appDependencies = Seq( - "se.radley" %% "play-plugins-salat" % "1.2" + "se.radley" %% "play-plugins-salat" % "1.3.0" ) Then we can add the implicit converstions to and from ObjectId by adding to the routesImport and add ObjectId to all the templates diff --git a/notes/1.3.0.markdown b/notes/1.3.0.markdown new file mode 100644 index 0000000..3cb75b5 --- /dev/null +++ b/notes/1.3.0.markdown @@ -0,0 +1,2 @@ +- Salat 1.9.2 +- Uppdated dependencies diff --git a/project/Build.scala b/project/Build.scala index 8a119e3..d22a4fb 100755 --- a/project/Build.scala +++ b/project/Build.scala @@ -3,7 +3,7 @@ import sbt.Keys._ object ProjectBuild extends Build { - lazy val buildVersion = "1.2" + lazy val buildVersion = "1.3.0" lazy val root = Project(id = "play-plugins-salat", base = file("."), settings = Project.defaultSettings ++ Publish.settings ++ Ls.settings).settings( organization := "se.radley", @@ -18,11 +18,11 @@ object ProjectBuild extends Build { resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/", libraryDependencies ++= Seq( - "play" %% "play" % "2.1.0" % "provided", - "play" % "play-exceptions" % "2.1.0" % "provided", + "play" %% "play" % "2.1.3" % "provided", + "play" % "play-exceptions" % "2.1.3" % "provided", "play" %% "play-test" % "2.1.0" % "test", - "com.novus" %% "salat" % "1.9.2-SNAPSHOT", - "org.mongodb" %% "casbah-gridfs" % "2.5.0" + "com.novus" %% "salat" % "1.9.2", + "org.mongodb" %% "casbah-gridfs" % "2.6.2" ) ) } diff --git a/project/build.properties b/project/build.properties index 66ad72c..5e96e96 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=0.12.2 +sbt.version=0.12.4 diff --git a/project/plugins.sbt b/project/plugins.sbt index 7243899..e56a4e5 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ resolvers ++= Seq( Resolver.url("sbt-plugin-releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns) ) -addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.2.0") +addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.1") addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.7") diff --git a/sample/project/Build.scala b/sample/project/Build.scala index 258f7cc..0a62f20 100755 --- a/sample/project/Build.scala +++ b/sample/project/Build.scala @@ -8,7 +8,7 @@ object ApplicationBuild extends Build { val appVersion = "1.0" val appDependencies = Seq( - "se.radley" %% "play-plugins-salat" % "1.2" + "se.radley" %% "play-plugins-salat" % "1.3.0" ) val main = play.Project(appName, appVersion, appDependencies).settings( diff --git a/sample/project/build.properties b/sample/project/build.properties index 66ad72c..5e96e96 100755 --- a/sample/project/build.properties +++ b/sample/project/build.properties @@ -1 +1 @@ -sbt.version=0.12.2 +sbt.version=0.12.4 diff --git a/sample/project/plugins.sbt b/sample/project/plugins.sbt index 727fc8d..eb84a24 100755 --- a/sample/project/plugins.sbt +++ b/sample/project/plugins.sbt @@ -9,4 +9,4 @@ resolvers ++= Seq( ) // Use the Play sbt plugin for Play projects -addSbtPlugin("play" % "sbt-plugin" % "2.1.0") +addSbtPlugin("play" % "sbt-plugin" % "2.1.3")