Skip to content

Commit

Permalink
Revert "Update elastic4s-client-esjava to 8.12.0"
Browse files Browse the repository at this point in the history
To avoid conflict with #190

This reverts commit 4aa9054.
  • Loading branch information
lenguyenthanh committed May 10, 2024
1 parent 4466a01 commit da3f467
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,35 @@ lazy val core = project
.in(file("modules/core"))
.settings(
commonSettings,
name := "core",
name := "core",
libraryDependencies ++= Seq(
"com.github.ornicar" %% "scalalib" % "7.1.0",
"nl.gn0s1s" %% "elastic4s-client-esjava" % "8.12.0",
"joda-time" % "joda-time" % "2.12.7"
"com.github.ornicar" %% "scalalib" % "7.1.0",
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "8.11.5",
"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 da3f467

Please sign in to comment.