From 4aa90542be98a7a89a09eea3a3a1e592b254a6b0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 9 May 2024 16:32:05 +0000 Subject: [PATCH] Update elastic4s-client-esjava to 8.12.0 --- build.sbt | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/build.sbt b/build.sbt index 64eaec4c..ffc82963 100644 --- a/build.sbt +++ b/build.sbt @@ -21,15 +21,14 @@ lazy val core = project .in(file("modules/core")) .settings( commonSettings, - name := "core", + name := "core", libraryDependencies ++= Seq( - "com.github.ornicar" %% "scalalib" % "7.1.0", - "com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "8.11.5", - "joda-time" % "joda-time" % "2.12.7" + "com.github.ornicar" %% "scalalib" % "7.1.0", + "nl.gn0s1s" %% "elastic4s-client-esjava" % "8.12.0", + "joda-time" % "joda-time" % "2.12.7" ) ) - lazy val play = project .in(file("play")) .enablePlugins(PlayScala) @@ -37,19 +36,18 @@ lazy val play = project .settings( commonSettings, tpolecatExcludeOptions += ScalacOptions.fatalWarnings, - name := "lila-search", + name := "lila-search", libraryDependencies ++= Seq( - "com.github.ornicar" %% "scalalib" % "7.1.0", - "com.typesafe.play" %% "play-json" % "2.9.4", - "com.typesafe.play" %% "play-json-joda" % "2.9.4" + "com.github.ornicar" %% "scalalib" % "7.1.0", + "com.typesafe.play" %% "play-json" % "2.9.4", + "com.typesafe.play" %% "play-json-joda" % "2.9.4" ), // Play provides two styles of routers, one expects its actions to be injected, the // other, legacy style, accesses its actions statically. routesGenerator := InjectedRoutesGenerator - ).dependsOn(core) - + ) + .dependsOn(core) lazy val root = project .in(file(".")) .aggregate(core, play) -