Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
fix deprecated eval and cglib version
Browse files Browse the repository at this point in the history
  • Loading branch information
eaceaser committed May 17, 2011
1 parent 1536747 commit 99790fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/build/QuerulousProject.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class QuerulousProject(info: ProjectInfo) extends StandardProject(info) with Sub
val specs = "org.scala-tools.testing" % "specs_2.8.0" % "1.6.5" % "test"
val objenesis = "org.objenesis" % "objenesis" % "1.1" % "test"
val jmock = "org.jmock" % "jmock" % "2.4.0" % "test"
val cglib = "cglib" % "cglib" % "2.1_3" % "test"
val cglib = "cglib" % "cglib" % "2.2" % "test"
val asm = "asm" % "asm" % "1.5.3" % "test"

override def subversionRepository = Some("http://svn.local.twitter.com/maven-public/")
Expand Down
3 changes: 2 additions & 1 deletion src/test/scala/com/twitter/querulous/TestEvaluator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import config.Connection

trait ConfiguredSpecification extends Specification {
val config = try {
Eval[Connection](new File("config/test.scala"))
val eval = new Eval
eval[Connection](new File("config/test.scala"))
} catch {
case e =>
e.printStackTrace()
Expand Down

0 comments on commit 99790fc

Please sign in to comment.