-
Notifications
You must be signed in to change notification settings - Fork 640
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1416 Use dedicated queues for long tasks
- Loading branch information
Showing
21 changed files
with
426 additions
and
395 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
import sbt._ | ||
|
||
object Dependencies { | ||
val scalaVersion = "2.12.6" | ||
val scalaVersion = "2.12.8" | ||
|
||
object Library { | ||
val akkaVersion = "2.5.26" | ||
|
||
object Play { | ||
val version = play.core.PlayVersion.current | ||
val ws = "com.typesafe.play" %% "play-ws" % version | ||
val ahc = "com.typesafe.play" %% "play-ahc-ws" % version | ||
val cache = "com.typesafe.play" %% "play-ehcache" % version | ||
val test = "com.typesafe.play" %% "play-test" % version | ||
val specs2 = "com.typesafe.play" %% "play-specs2" % version | ||
val ws = "com.typesafe.play" %% "play-ws" % version | ||
val ahc = "com.typesafe.play" %% "play-ahc-ws" % version | ||
val cache = "com.typesafe.play" %% "play-ehcache" % version | ||
val test = "com.typesafe.play" %% "play-test" % version | ||
val specs2 = "com.typesafe.play" %% "play-specs2" % version | ||
val filters = "com.typesafe.play" %% "filters-helpers" % version | ||
val guice = "com.typesafe.play" %% "play-guice" % version | ||
val guice = "com.typesafe.play" %% "play-guice" % version | ||
} | ||
|
||
val scalaGuice = "net.codingwell" %% "scala-guice" % "4.2.3" | ||
|
||
val reflections = "org.reflections" % "reflections" % "0.9.11" | ||
val zip4j = "net.lingala.zip4j" % "zip4j" % "1.3.2" | ||
val elastic4play = "org.thehive-project" %% "elastic4play" % "1.11.5" | ||
val akkaCluster = "com.typesafe.akka" %% "akka-cluster" % "2.5.21" | ||
val akkaClusterTools = "com.typesafe.akka" %% "akka-cluster-tools" % "2.5.21" | ||
val reflections = "org.reflections" % "reflections" % "0.9.11" | ||
val zip4j = "net.lingala.zip4j" % "zip4j" % "1.3.2" | ||
val elastic4play = "org.thehive-project" %% "elastic4play" % "1.11.6" | ||
val akkaCluster = "com.typesafe.akka" %% "akka-cluster" % akkaVersion | ||
val akkaClusterTools = "com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.3.0 | ||
sbt.version=1.3.8 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Comment to get more information during initialization | ||
logLevel := Level.Info | ||
|
||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.23") | ||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.25") | ||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.1") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.0") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.0") | ||
addSbtPlugin("org.thehive-project" % "sbt-github-changelog" % "0.3.0") |
Oops, something went wrong.