Skip to content

Commit

Permalink
Go for 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dlecan committed Jan 14, 2017
1 parent d394954 commit 7ad7f2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Play 2.2.x : 1.2.1
Play 2.3.0 -> 2.3.1 : 1.3-beta1 (Scala 2.10 & 2.11)
Play 2.3.2+ : 1.3-beta3 (Scala 2.10 & 2.11)
Play 2.4.x : 1.4-beta1 (Scala 2.10 & 2.11)
Play 2.4.x : 1.4.0 (Scala 2.10 & 2.11)
Play 2.5.x : Not supported yet

Project-status: STABLE
Expand Down
4 changes: 2 additions & 2 deletions project-code/project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ object Build extends Build {
val buildOrganization = "com.github.play2war"
val defaultPlay2Version = "2.4.0"
val play2Version = sys.props.get("play2.version").filterNot(_.isEmpty).getOrElse(defaultPlay2Version)
val defaultBuildVersion = "1.4-beta2-SNAPSHOT"
val defaultBuildVersion = "1.4.0"
val buildVersion = sys.props.get("play2war.version").filterNot(_.isEmpty).getOrElse(defaultBuildVersion)
val buildScalaVersion210 = "2.10.5"
val buildScalaVersion211 = "2.11.6"
Expand Down Expand Up @@ -193,6 +193,6 @@ object Build extends Build {

}

def project(id: String, base: File, settings: Seq[Def.Setting[_]] = Nil) =
def project(id: String, base: File, settings: Seq[Def.Setting[_]] = Nil) =
Project(id, base, settings = settings)
}
2 changes: 1 addition & 1 deletion sample/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ resolvers += Resolver.sbtPluginRepo("snapshots")
// Use the Play sbt plugin for Play projects
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % Option(System.getProperty("play.version")).getOrElse("2.4.0"))

addSbtPlugin("com.github.play2war" % "play2-war-plugin" % "1.4-beta2-SNAPSHOT")
addSbtPlugin("com.github.play2war" % "play2-war-plugin" % "1.4.0")

0 comments on commit 7ad7f2f

Please sign in to comment.