|
@@ -1,6 +1,6 @@
|
|
name := "techempower-benchmarks-finatra"
|
|
name := "techempower-benchmarks-finatra"
|
|
organization := "com.twitter"
|
|
organization := "com.twitter"
|
|
-version := "18.3.0"
|
|
|
|
|
|
+version := "18.7.0"
|
|
|
|
|
|
scalaVersion := "2.12.5"
|
|
scalaVersion := "2.12.5"
|
|
|
|
|
|
@@ -16,8 +16,13 @@ assemblyMergeStrategy in assembly := {
|
|
}
|
|
}
|
|
|
|
|
|
libraryDependencies ++= Seq(
|
|
libraryDependencies ++= Seq(
|
|
- "com.twitter" %% "finatra-http" % "18.3.0",
|
|
|
|
|
|
+ "com.twitter" %% "finatra-http" % "18.7.0",
|
|
"org.slf4j" % "slf4j-nop" % "1.7.25",
|
|
"org.slf4j" % "slf4j-nop" % "1.7.25",
|
|
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.8.4",
|
|
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.8.4",
|
|
"javax.activation" % "activation" % "1.1.1"
|
|
"javax.activation" % "activation" % "1.1.1"
|
|
)
|
|
)
|
|
|
|
+
|
|
|
|
+excludeDependencies ++= Seq(
|
|
|
|
+ // commons-logging is replaced by jcl-over-slf4j
|
|
|
|
+ ExclusionRule("commons-logging", "commons-logging")
|
|
|
|
+)
|