Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
refactor: improve code structure (DEV-612) (#2012)
Co-authored-by: Ivan Subotic <400790+subotic@users.noreply.github.com>
  • Loading branch information
irinaschubert and subotic committed Mar 4, 2022
1 parent 5ef0842 commit eac0049
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 6 deletions.
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

0 comments on commit eac0049

Please sign in to comment.