Skip to content

Commit da3b55f

Browse files
committed
update dependencies including scope of testkits
1 parent 33e9201 commit da3b55f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ lazy val es6rest = project.in(file("es6/rest"))
134134
es6bridge % "compile->compile;test->test;it->it"
135135
)
136136
.dependsOn(
137-
es6testkit % "compile->compile;test->test;it->it"
137+
es6testkit % "test->test;it->it"
138138
)
139139

140140
lazy val es6jest = project.in(file("es6/jest"))
@@ -151,7 +151,7 @@ lazy val es6jest = project.in(file("es6/jest"))
151151
es6bridge % "compile->compile;test->test;it->it"
152152
)
153153
.dependsOn(
154-
es6testkit % "compile->compile;test->test;it->it"
154+
es6testkit % "test->test;it->it"
155155
)
156156

157157
lazy val es6 = project.in(file("es6"))
@@ -209,7 +209,7 @@ lazy val es7rest = project.in(file("es7/rest"))
209209
es7bridge % "compile->compile;test->test;it->it"
210210
)
211211
.dependsOn(
212-
es7testkit % "compile->compile;test->test;it->it"
212+
es7testkit % "test->test;it->it"
213213
)
214214

215215
lazy val es7 = project.in(file("es7"))
@@ -266,7 +266,7 @@ lazy val es8java = project.in(file("es8/java"))
266266
es8bridge % "compile->compile;test->test;it->it"
267267
)
268268
.dependsOn(
269-
es8testkit % "compile->compile;test->test;it->it"
269+
es8testkit % "test->test;it->it"
270270
)
271271

272272
lazy val es8 = project.in(file("es8"))
@@ -332,7 +332,7 @@ lazy val es9java = project.in(file("es9/java"))
332332
es9bridge % "compile->compile;test->test;it->it"
333333
)
334334
.dependsOn(
335-
es9testkit % "compile->compile;test->test;it->it"
335+
es9testkit % "test->test;it->it"
336336
)
337337

338338
lazy val es9 = project.in(file("es9"))

core/testkit/build.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ name := s"softclient4es${elasticSearchMajorVersion(elasticSearchVersion.value)}-
66

77
target := baseDirectory.value / s"target-es${elasticSearchMajorVersion(elasticSearchVersion.value)}"
88

9-
libraryDependencies ++= elasticDependencies(elasticSearchVersion.value) ++
10-
elastic4sTestkitDependencies(elasticSearchVersion.value) ++ Seq(
9+
libraryDependencies ++= elasticClientDependencies(elasticSearchVersion.value) ++ Seq(
1110
"org.apache.logging.log4j" % "log4j-api" % Versions.log4j,
1211
// "org.apache.logging.log4j" % "log4j-slf4j-impl" % Versions.log4j,
1312
"org.apache.logging.log4j" % "log4j-core" % Versions.log4j,

es6/testkit/build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ organization := "app.softnetwork.elastic"
44

55
name := s"softclient4es${elasticSearchMajorVersion(elasticSearchVersion.value)}-core-testkit"
66

7-
libraryDependencies ++= elasticDependencies(elasticSearchVersion.value) ++ elastic4sTestkitDependencies(elasticSearchVersion.value) ++ Seq(
7+
libraryDependencies ++= elasticClientDependencies(elasticSearchVersion.value) ++
8+
elastic4sTestkitDependencies(elasticSearchVersion.value) ++ Seq(
89
"org.apache.logging.log4j" % "log4j-api" % Versions.log4j,
910
// "org.apache.logging.log4j" % "log4j-slf4j-impl" % Versions.log4j,
1011
"org.apache.logging.log4j" % "log4j-core" % Versions.log4j,
1112
"app.softnetwork.persistence" %% "persistence-core-testkit" % Versions.genericPersistence,
12-
"org.testcontainers" % "elasticsearch" % Versions.testContainers excludeAll (jacksonExclusions: _*)
13+
"org.testcontainers" % "elasticsearch" % Versions.testContainers excludeAll (jacksonExclusions *)
1314
)

0 commit comments

Comments
 (0)