Skip to content

Commit

Permalink
Add organization & better modules nameing
Browse files Browse the repository at this point in the history
  • Loading branch information
lenguyenthanh committed May 11, 2024
1 parent 803614c commit 4985a41
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ inThisBuild(
scalaVersion := scala213,
versionScheme := Some("early-semver"),
version := "3.0.0-SNAPSHOT",
organization := "org.lichess.search",
run / fork := true,
run / javaOptions += "-Dconfig.override_with_env_vars=true",
Compile / doc / sources := Seq.empty,
Expand Down Expand Up @@ -68,7 +69,7 @@ lazy val play = project
lazy val api = (project in file("modules/api"))
.enablePlugins(Smithy4sCodegenPlugin)
.settings(
name := "lila-search-api",
name := "api",
commonSettings,
smithy4sWildcardArgument := "?",
libraryDependencies ++= Seq(
Expand All @@ -78,7 +79,7 @@ lazy val api = (project in file("modules/api"))

lazy val client = (project in file("modules/client"))
.settings(
name := "lila-search-client",
name := "client",
commonSettings,
libraryDependencies ++= Seq(
smithy4sJson,
Expand Down

0 comments on commit 4985a41

Please sign in to comment.