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

update dependencies #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ language: scala

scala:
- 2.11.11
- 2.12.3
- 2.12.4

jdk:
- oraclejdk8
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import sbt._

object Dependencies {

val PlayVersion = "2.6.10"
val AkkaVersion = "2.5.8"
val PlayVersion = "2.6.11"
val AkkaVersion = "2.5.9"
val AkkaHttpVersion = "10.0.11"

// format: OFF
Expand All @@ -13,14 +13,14 @@ object Dependencies {
val akkaStream = "com.typesafe.akka" %% "akka-stream" % AkkaVersion
val akkaHttp = "com.typesafe.akka" %% "akka-http" % AkkaHttpVersion
val play = "com.typesafe.play" %% "play" % PlayVersion
val config = "com.typesafe" % "config" % "1.3.1"
val libThrift = "org.apache.thrift" % "libthrift" % "0.10.0"
val config = "com.typesafe" % "config" % "1.3.2"
val libThrift = "org.apache.thrift" % "libthrift" % "0.11.0"
}

object Test {
val specs = "org.specs2" %% "specs2-core" % "4.0.2" % "test"
val finagle = "com.twitter" %% "finagle-core" % "7.1.0" % "test"
val braveCore = "io.zipkin.brave" % "brave-core" % "4.3.0" % "test"
val braveCore = "io.zipkin.brave" % "brave-core" % "4.13.4" % "test"
val playSpecs2 = "com.typesafe.play" %% "play-specs2" % PlayVersion % "test"
val akkaTest = "com.typesafe.akka" %% "akka-testkit" % AkkaVersion % "test"
val akkaRemote = "com.typesafe.akka" %% "akka-remote" % AkkaVersion % "test"
Expand Down