Skip to content

Commit 2d3d6d4

Browse files
committed
project-code ported to play-2.1.0 final
1 parent 3c5b582 commit 2d3d6d4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

project-code/project/Build.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import sbt._
22
import Keys._
3-
import PlayProject._
3+
import play.Project._
44

55
object ApplicationBuild extends Build {
66

77
val appName = "play2-mustache"
8-
val appVersion = "1.1.0"
8+
val appVersion = "1.1.1"
99

1010
val appDependencies = Seq(
1111
"com.github.spullara.mustache.java" % "compiler" % "0.8.2",
12-
"com.twitter" % "util-core_2.9.1" % "4.0.1", // For Twitter handler
12+
"com.twitter" %% "util-core" % "6.2.0", // For Twitter handler
1313
"commons-lang" % "commons-lang" % "2.6"
1414
)
1515

@@ -18,7 +18,7 @@ object ApplicationBuild extends Build {
1818
val localRepository = Resolver.file("local repo", new java.io.File(System.getProperty("user.home") + "/tmp/repo"))(Resolver.ivyStylePatterns)
1919
}
2020

21-
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(
21+
val main = play.Project(appName, appVersion, appDependencies).settings(
2222
organization := "org.jba",
2323
publishMavenStyle := false,
2424
publishTo := Some(Resolvers.localRepository),
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.12.1
1+
sbt.version=0.12.2

project-code/project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ logLevel := Level.Warn
55
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
66

77
// Use the Play sbt plugin for Play projects
8-
addSbtPlugin("play" % "sbt-plugin" % Option(System.getProperty("play.version")).getOrElse("2.1-RC1") )
8+
addSbtPlugin("play" % "sbt-plugin" % "2.1.0" )

0 commit comments

Comments
 (0)