Skip to content

Commit

Permalink
Merge pull request #191 from scala-steward/update/elastic4s-client-es…
Browse files Browse the repository at this point in the history
…java-8.12.0

Update elastic4s-client-esjava to 8.12.0
  • Loading branch information
lenguyenthanh authored May 10, 2024
2 parents fbbe911 + 4aa9054 commit 4466a01
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,35 +21,33 @@ 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)
.disablePlugins(PlayFilters)
.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)

0 comments on commit 4466a01

Please sign in to comment.