Skip to content

Commit

Permalink
Only publish client and api
Browse files Browse the repository at this point in the history
  • Loading branch information
lenguyenthanh committed May 11, 2024
1 parent 58d53ad commit 03364cc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ lazy val core = project
crossScalaVersions := supportedScalaVersions,
tpolecatScalacOptions ++= Set(ScalacOptions.source3),
name := "lila-search-core",
publish := {},
publish / skip := true,
libraryDependencies ++= Seq(
elastic4sJavaClient,
catsCore,
Expand All @@ -55,6 +57,8 @@ lazy val play = project
.settings(
tpolecatExcludeOptions += ScalacOptions.fatalWarnings,
name := "lila-search",
publish := {},
publish / skip := true,
libraryDependencies ++= Seq(
"com.github.ornicar" %% "scalalib" % "7.1.0",
"com.typesafe.play" %% "play-json" % "2.9.4",
Expand Down Expand Up @@ -91,6 +95,8 @@ lazy val client = (project in file("modules/client"))
lazy val app = (project in file("modules/app"))
.settings(
name := "lila-search-v3",
publish := {},
publish / skip := true,
commonSettings,
libraryDependencies ++= Seq(
smithy4sHttp4s,
Expand All @@ -114,6 +120,8 @@ lazy val app = (project in file("modules/app"))
val e2e = (project in file("modules/e2e"))
.settings(
commonSettings,
publish := {},
publish / skip := true,
libraryDependencies ++= Seq(
weaver
)
Expand Down

0 comments on commit 03364cc

Please sign in to comment.