Skip to content

Commit

Permalink
Fixed the scope of dependency for jdbc drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
tototoshi committed Aug 24, 2016
1 parent e2512b3 commit 8315313
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ lazy val mysql = (project in file("mysql"))
version := "0.1.0",
scalaVersion := "2.11.8",
libraryDependencies ++= testDependencies ++ Seq(
mysqlDependency % "runtime"
mysqlDependency % "provided"
)
).settings(Publish.settings).dependsOn(core)

Expand All @@ -45,7 +45,7 @@ lazy val postgresql = (project in file("postgresql"))
version := "0.1.0",
scalaVersion := "2.11.8",
libraryDependencies ++= testDependencies ++ Seq(
postgresqlDependency % "runtime"
postgresqlDependency % "provided"
)
).settings(Publish.settings).dependsOn(core)

Expand Down

0 comments on commit 8315313

Please sign in to comment.