This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// for use with your build.sbt | |
object Dependencies { | |
// ... all your other dependencies | |
val typesafeSlick = "com.typesafe.slick" %% "slick" % "3.1.1" | |
val postgreSql = "org.postgresql" % "postgresql" % "9.4.1209" | |
val hikariCP = "com.typesafe.slick" %% "slick-hikaricp" % "3.1.0" // you need really need this or you get ClassNotFoundException | |
} |