Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump postgresql driver, akka and scala versions. #2

Open
wants to merge 1 commit into
base: abstract_operations
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
val commonSettings = Seq(
organization := "com.github.jtjeferreira",
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html")),
scalaVersion := "2.11.7",
scalaVersion := "2.11.8",
scalacOptions ++= Seq(
"-feature",
"-language:postfixOps"
Expand All @@ -20,15 +20,15 @@ lazy val core = project
.settings(Seq(
name := "scala-pgq-core",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.4.3",
"com.typesafe.akka" %% "akka-stream" % "2.4.3",
"com.typesafe.akka" %% "akka-stream-testkit" % "2.4.3",
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion,

"joda-time" % "joda-time" % "2.6",
"org.joda" % "joda-convert" % "1.8",

"org.scalatest" %% "scalatest" % "2.1.6" % "test",
"com.typesafe.akka" %% "akka-slf4j" % "2.4.3",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.1.3" % "test"
)
))
Expand All @@ -40,7 +40,7 @@ lazy val scalikejdbc = project
name := "scala-pgq-scalikejdbc",
libraryDependencies ++= Seq(
"org.scalikejdbc" %% "scalikejdbc" % "2.3.5",
"postgresql" % "postgresql" % "9.1-901.jdbc4"
"org.postgresql" % "postgresql" % postgresqlVersion
)
))

Expand All @@ -63,8 +63,10 @@ lazy val slick = project
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % "3.1.1",
"com.github.tminglei" %% "slick-pg_joda-time" % "0.12.1",
"postgresql" % "postgresql" % "9.1-901.jdbc4"
"org.postgresql" % "postgresql" % postgresqlVersion
)
))


val akkaVersion = "2.4.6"
val postgresqlVersion = "9.4.1208.jre7"