Skip to content

Commit

Permalink
Fix the example/build.sbt.
Browse files Browse the repository at this point in the history
  • Loading branch information
lastland committed Aug 9, 2016
1 parent 4374392 commit d59f2b6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ addCommandAlias("mg", "migrations/run")

lazy val slickVersion = "3.1.1"

lazy val forkliftVersion = "0.2.3-SNAPSHOT"

lazy val commonSettings = Seq(
organization := "com.liyaos",
version := "1.0",
Expand All @@ -30,7 +32,7 @@ lazy val dbDependencies = List(
)

lazy val forkliftDependencies = List(
"com.liyaos" %% "scala-forklift-slick" % "0.2.2"
"com.liyaos" %% "scala-forklift-slick" % forkliftVersion
)

lazy val appDependencies = dbDependencies ++ loggingDependencies
Expand Down Expand Up @@ -66,7 +68,7 @@ lazy val migrations = Project("migrations",
lazy val tools = Project("git-tools",
file("tools/git")).settings(commonSettings:_*).settings {
libraryDependencies ++= forkliftDependencies ++ List(
"com.liyaos" %% "scala-forklift-git-tools" % "0.2.2",
"com.liyaos" %% "scala-forklift-git-tools" % forkliftVersion,
"com.typesafe" % "config" % "1.3.0",
"org.eclipse.jgit" % "org.eclipse.jgit" % "4.0.1.201506240215-r"
)
Expand Down

0 comments on commit d59f2b6

Please sign in to comment.