Skip to content

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
v1r3n committed Dec 19, 2023
1 parent 5ef4cfd commit a08d1eb
Show file tree
Hide file tree
Showing 6 changed files with 304 additions and 57 deletions.
8 changes: 8 additions & 0 deletions es6-persistence/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* specific language governing permissions and limitations under the License.
*/



dependencies {
implementation project(':conductor-common')
implementation project(':conductor-core')
Expand All @@ -32,3 +34,9 @@ dependencies {
testImplementation "org.testcontainers:elasticsearch:${revTestContainer}"
testImplementation project(':conductor-common').sourceSets.test.output
}

switch (org.gradle.internal.os.OperatingSystem.current()) {
case org.gradle.internal.os.OperatingSystem.MAC_OS:
tasks.forEach(task -> task.onlyIf { project.hasProperty('ES6Test') })
break;
}
8 changes: 4 additions & 4 deletions mysql-persistence/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ dependencies {

testImplementation "org.apache.groovy:groovy-all:${revGroovy}"

testImplementation "org.elasticsearch.client:elasticsearch-rest-client:6.8.23"
testImplementation "org.elasticsearch.client:elasticsearch-rest-high-level-client:6.8.23"
testImplementation "org.testcontainers:elasticsearch:${revTestContainer}"
// testImplementation "org.elasticsearch.client:elasticsearch-rest-client:6.8.23"
// testImplementation "org.elasticsearch.client:elasticsearch-rest-high-level-client:6.8.23"

testImplementation "org.testcontainers:elasticsearch:${revTestContainer}"
testImplementation "org.testcontainers:mysql:${revTestContainer}"

testImplementation project(':conductor-server')
testImplementation project(':conductor-client')
testImplementation project(':conductor-grpc-client')
testImplementation project(':conductor-es6-persistence')
testImplementation project(':conductor-es7-persistence')

testImplementation project(':conductor-test-util').sourceSets.test.output
testImplementation project(':conductor-common-persistence').sourceSets.test.output
Expand Down
Loading

0 comments on commit a08d1eb

Please sign in to comment.