Skip to content
This repository has been archived by the owner on Jan 27, 2019. It is now read-only.

Commit

Permalink
Salat 1.9.2, no more snapshot dependencies!
Browse files Browse the repository at this point in the history
  • Loading branch information
leon committed Aug 26, 2013
1 parent 9fbc840 commit 6e00851
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions notes/1.3.0.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Salat 1.9.2
- Uppdated dependencies
10 changes: 5 additions & 5 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
)
)
}
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.12.2
sbt.version=0.12.4
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion sample/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion sample/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.12.2
sbt.version=0.12.4
2 changes: 1 addition & 1 deletion sample/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 6e00851

Please sign in to comment.