Last active
December 28, 2019 02:39
-
-
Save naderghanbari/efaf6cc398e9fc44b1aa0e0b197be7af to your computer and use it in GitHub Desktop.
Scala, Slick, and PostGIS :: build.sbt
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
resolvers += Resolver.jcenterRepo | |
libraryDependencies ++= Seq( | |
"org.postgresql" % "postgresql" % "42.2.9", | |
"com.typesafe.slick" %% "slick" % "3.3.2", | |
"com.typesafe.slick" %% "slick-hikaricp" % "3.3.2", | |
"io.github.nafg" %% "slick-migration-api" % "0.7.0", | |
"com.github.tminglei" %% "slick-pg_jts_lt" % "0.18.1" exclude ("org.postgresql", "postgresql"), | |
) | |
libraryDependencies ++= Seq( | |
"org.scalatest" %% "scalatest" % "3.1.0" % Test, | |
"org.scalacheck" %% "scalacheck" % "1.14.3" % Test, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment