This is an automated email from the ASF dual-hosted git repository. yiconghuang pushed a commit to branch chore/relocate-workflow-compiling-service in repository https://gitbox.apache.org/repos/asf/texera.git
commit 6c2e1d6068f41795dfd1fa11c8a336c505d21ff6 Author: Yicong Huang <[email protected]> AuthorDate: Sat Oct 11 11:58:39 2025 -0700 chore: move project definition to root --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 93717181aa..4ec20d4d0a 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ lazy val ConfigService = (project in file("core/config-service")) "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.17.0" ) ) -lazy val AccessControlService = (project in file("access-control-service")) +lazy val AccessControlService = (project in file("core/access-control-service")) .dependsOn(Auth, Config, DAO) .settings( dependencyOverrides ++= Seq( @@ -41,7 +41,7 @@ lazy val WorkflowCore = (project in file("core/workflow-core")) .dependsOn(DAO, Config) .configs(Test) .dependsOn(DAO % "test->test") // test scope dependency -lazy val ComputingUnitManagingService = (project in file("computing-unit-managing-service")) +lazy val ComputingUnitManagingService = (project in file("core/computing-unit-managing-service")) .dependsOn(WorkflowCore, Auth, Config) .settings( dependencyOverrides ++= Seq(
