a9cd7750f4
CI / unit-test (push) Has been cancelled
CI / detect-changes (push) Has been cancelled
CI / build (push) Has been cancelled
Publish docs via GitHub Pages / Deploy docs (push) Has been cancelled
CI / test-harness (push) Has been cancelled
CI / generate-e2e-matrix (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / build-ui (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
UI v2 Integration CI / E2E (Integration) (push) Has been cancelled
UI v2 CI / Lint, Format & Test (push) Has been cancelled
UI v2 CI / E2E (Mocked) (push) Has been cancelled
58 lines
2.1 KiB
Groovy
58 lines
2.1 KiB
Groovy
plugins {
|
|
id 'groovy'
|
|
}
|
|
dependencies {
|
|
|
|
|
|
implementation project(':conductor-common')
|
|
implementation project(':conductor-core')
|
|
compileOnly project(':conductor-server')
|
|
implementation project(':conductor-rest')
|
|
implementation project(':conductor-grpc-server')
|
|
implementation project(':conductor-grpc-client')
|
|
implementation project(':conductor-redis-persistence')
|
|
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind"
|
|
implementation "com.fasterxml.jackson.core:jackson-core"
|
|
implementation "org.apache.commons:commons-lang3"
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
implementation 'org.springframework.retry:spring-retry'
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind"
|
|
implementation "com.fasterxml.jackson.core:jackson-core"
|
|
|
|
implementation "org.apache.commons:commons-lang3"
|
|
|
|
implementation "com.google.protobuf:protobuf-java:${revProtoBuf}"
|
|
implementation "com.google.guava:guava:${revGuava}"
|
|
testImplementation "org.springframework:spring-web"
|
|
|
|
implementation "redis.clients:jedis:${revJedis}"
|
|
implementation "io.orkes.queues:orkes-conductor-queues:${revOrkesQueues}"
|
|
|
|
|
|
testImplementation "org.apache.groovy:groovy-all:${revGroovy}"
|
|
testImplementation "org.spockframework:spock-core:${revSpock}"
|
|
testImplementation "org.spockframework:spock-spring:${revSpock}"
|
|
testImplementation "org.awaitility:awaitility:${revAwaitility}"
|
|
|
|
implementation "org.elasticsearch.client:elasticsearch-rest-client:7.17.29"
|
|
implementation "org.elasticsearch.client:elasticsearch-rest-high-level-client:7.17.29"
|
|
|
|
implementation "org.testcontainers:elasticsearch:${revTestContainer}"
|
|
implementation "org.testcontainers:mysql:${revTestContainer}"
|
|
implementation "org.testcontainers:postgresql:${revTestContainer}"
|
|
implementation(group: 'com.rabbitmq', name: 'amqp-client'){ version{require "${revAmqpClient}"}}
|
|
|
|
//In memory
|
|
implementation "org.rarefiedredis.redis:redis-java:${revRarefiedRedis}"
|
|
|
|
}
|
|
|
|
test {
|
|
testLogging {
|
|
exceptionFormat = 'full'
|
|
}
|
|
}
|