Skip to content

Commit 0538675

Browse files
authored
Merge pull request #9 from SOFTNETWORK-APP/v9.x
update index mapping dynamically, create specific module for java persistence
2 parents 623b532 + 11657fd commit 0538675

File tree

19 files changed

+1319
-233
lines changed

19 files changed

+1319
-233
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Upload coverage to Codecov
4949
uses: codecov/codecov-action@v3
5050
with:
51-
files: sql/target/scala-2.13/coverage-report/cobertura.xml,client/testkit/target/scala-2.13/coverage-report/cobertura.xml,persistence/target/scala-2.13/coverage-report/cobertura.xml,java/testkit/target/scala-2.13/coverage-report/cobertura.xml,teskit/target/scala-2.13/coverage-report/cobertura.xml
51+
files: sql/target/scala-2.13/coverage-report/cobertura.xml,client/testkit/target/scala-2.13/coverage-report/cobertura.xml,persistence/target/scala-2.13/coverage-report/cobertura.xml,java/target/scala-2.13/coverage-report/cobertura.xml,java/persistence/target/scala-2.13/coverage-report/cobertura.xml,teskit/target/scala-2.13/coverage-report/cobertura.xml
5252
flags: unittests
5353
fail_ci_if_error: false
5454
verbose: true

build.sbt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,16 @@ lazy val java = project.in(file("java"))
106106
Defaults.itSettings,
107107
moduleSettings
108108
)
109+
.dependsOn(
110+
client % "compile->compile;test->test;it->it"
111+
)
112+
113+
lazy val javaPersistence = project.in(file("java/persistence"))
114+
.configs(IntegrationTest)
115+
.settings(Defaults.itSettings)
116+
.dependsOn(
117+
java % "compile->compile;test->test;it->it",
118+
)
109119
.dependsOn(
110120
persistence % "compile->compile;test->test;it->it"
111121
)
@@ -119,7 +129,7 @@ lazy val testKit = project.in(file("testkit"))
119129
)
120130
.enablePlugins(BuildInfoPlugin)
121131
.dependsOn(
122-
java % "compile->compile;test->test;it->it"
132+
javaPersistence % "compile->compile;test->test;it->it"
123133
)
124134

125135
lazy val root = project.in(file("."))
@@ -129,4 +139,4 @@ lazy val root = project.in(file("."))
129139
Publish.noPublishSettings,
130140
crossScalaVersions := Nil
131141
)
132-
.aggregate(sql, client, persistence, java, testKit)
142+
.aggregate(sql, client, persistence, java, javaPersistence, testKit)

0 commit comments

Comments
 (0)