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

Commit

Permalink
Finished upgrading to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jroper committed Feb 5, 2013
1 parent 82db863 commit 94154c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion mailer/project/Build.scala
Expand Up @@ -25,6 +25,6 @@ object MinimalBuild extends Build {
javacOptions += "-Xlint:unchecked",
libraryDependencies += "play" %% "play" % playVersion % "provided",
libraryDependencies += "org.apache.commons" % "commons-email" % "1.2",
libraryDependencies += "com.typesafe" %% "play-plugins-util" buildVersion
libraryDependencies += "com.typesafe" %% "play-plugins-util" % buildVersion
)
}
2 changes: 1 addition & 1 deletion statsd/project/plugins.sbt
Expand Up @@ -5,4 +5,4 @@
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.1-RC2")
addSbtPlugin("play" % "sbt-plugin" % "2.1.0")
6 changes: 3 additions & 3 deletions statsd/sample/sample-statsd/test/IntegrationTest.scala
Expand Up @@ -4,7 +4,7 @@ import java.net.{SocketTimeoutException, DatagramPacket, DatagramSocket}
import org.specs2.mutable._
import play.api.test.Helpers._
import play.api.test._
import org.specs2.execute.Result
import org.specs2.execute.{AsResult, Result}
import collection.mutable.ListBuffer
import play.api.libs.ws.WS
import concurrent.Await
Expand Down Expand Up @@ -121,10 +121,10 @@ object IntegrationTestSpec extends Specification {
}


def around[T](t: => T)(implicit evidence$1: (T) => Result) = running(TestServer(9001, fakeApp)) {
def around[T](t: => T)(implicit evidence$1: AsResult[T]) = running(TestServer(9001, fakeApp)) {
mockStatsd
try {
t
AsResult(t)
} finally {
mockStatsd.close()
}
Expand Down

0 comments on commit 94154c0

Please sign in to comment.