Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: improve code structure (DEV-612) #2012

Merged
merged 3 commits into from Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -19,7 +19,6 @@ webapi-test
upgrade/project
sipi/test

**/project/target/
**/target/
*.aux
*.bbl
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Expand Up @@ -232,7 +232,7 @@ lazy val apiMain = project
.dependsOn(schemaCore, schemaRepo, schemaApi)

lazy val schemaApi = project
.in(file("dsp-schema-api"))
.in(file("dsp-schema/api"))
.settings(
name := "schemaApi",
Dependencies.webapiLibraryDependencies,
Expand All @@ -241,15 +241,15 @@ lazy val schemaApi = project
.dependsOn(schemaCore)

lazy val schemaCore = project
.in(file("dsp-schema-core"))
.in(file("dsp-schema/core"))
.settings(
name := "schemaCore",
Dependencies.webapiLibraryDependencies,
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))
)

lazy val schemaRepo = project
.in(file("dsp-schema-repo"))
.in(file("dsp-schema/repo"))
.settings(
name := "schemaRepo",
Dependencies.webapiLibraryDependencies,
Expand All @@ -258,7 +258,7 @@ lazy val schemaRepo = project
.dependsOn(schemaCore)

lazy val schemaRepoEventStoreService = project
.in(file("dsp-schema-repo-eventstore-service"))
.in(file("dsp-schema/repo-eventstore-service"))
.settings(
name := "schemaRepoEventstoreService",
Dependencies.webapiLibraryDependencies,
Expand All @@ -267,7 +267,7 @@ lazy val schemaRepoEventStoreService = project
.dependsOn(schemaRepo)

lazy val schemaRepoSearchService = project
.in(file("dsp-schema-repo-search-service"))
.in(file("dsp-schema/repo-search-service"))
.settings(
name := "dsp-schema-repo-search-service",
Dependencies.webapiLibraryDependencies,
Expand Down