Skip to content

Commit

Permalink
Update build for 2.0.1-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
cvogt committed Feb 14, 2014
1 parent 221a73d commit 34977aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions project/Build.scala
Expand Up @@ -13,9 +13,9 @@ object myBuild extends Build {
settings = Project.defaultSettings ++ Seq(
scalaVersion := "2.10.3",
libraryDependencies ++= List(
"com.typesafe.slick" %% "slick" % "2.0.0",
"com.typesafe.slick" %% "slick" % "2.0.1-RC1",
"org.slf4j" % "slf4j-nop" % "1.6.4",
"com.h2database" % "h2" % "1.3.166"
"com.h2database" % "h2" % "1.3.170"
),
slick <<= slickCodeGenTask, // register manual sbt command
sourceGenerators in Compile <+= slickCodeGenTask // register automatic code generation on every compile, remove for only manual use
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/Example.scala
@@ -1,6 +1,6 @@
object Tables extends demo.Tables{ // or just use object demo.Tables, which is hard-wired to the driver stated during generation
object Tables extends{ // or just use object demo.Tables, which is hard-wired to the driver stated during generation
val profile = scala.slick.driver.H2Driver
}
} with demo.Tables
import Tables._
import Tables.profile.simple._

Expand Down

0 comments on commit 34977aa

Please sign in to comment.