-
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.
- Loading branch information
Showing
4 changed files
with
37 additions
and
37 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
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,28 +1,28 @@ | ||
import sbt._ | ||
|
||
object Dependencies { | ||
val scalaVersion = "2.12.8" | ||
val scalaVersion = "2.12.12" | ||
|
||
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 filters = "com.typesafe.play" %% "filters-helpers" % version | ||
val guice = "com.typesafe.play" %% "play-guice" % version | ||
val ws = "com.typesafe.play" %% "play-ws" % play.core.PlayVersion.current | ||
val ahc = "com.typesafe.play" %% "play-ahc-ws" % play.core.PlayVersion.current | ||
val cache = "com.typesafe.play" %% "play-ehcache" % play.core.PlayVersion.current | ||
val test = "com.typesafe.play" %% "play-test" % play.core.PlayVersion.current | ||
val specs2 = "com.typesafe.play" %% "play-specs2" % play.core.PlayVersion.current | ||
val filters = "com.typesafe.play" %% "filters-helpers" % play.core.PlayVersion.current | ||
val guice = "com.typesafe.play" %% "play-guice" % play.core.PlayVersion.current | ||
} | ||
|
||
val scalaGuice = "net.codingwell" %% "scala-guice" % "4.2.3" | ||
val scalaGuice = "net.codingwell" %% "scala-guice" % "4.2.6" | ||
|
||
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 | ||
val akkaVersion = "2.5.31" | ||
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.8" | ||
val akkaCluster = "com.typesafe.akka" %% "akka-cluster" % akkaVersion | ||
val akkaClusterTools = "com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion | ||
val akkaClusterTyped = "com.typesafe.akka" %% "akka-cluster-typed" % 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,7 +1,7 @@ | ||
// Comment to get more information during initialization | ||
logLevel := Level.Info | ||
|
||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.25") | ||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.6") | ||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.1") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.0") | ||
addSbtPlugin("org.thehive-project" % "sbt-github-changelog" % "0.3.0") |