This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
build.gradle
43 lines (34 loc) · 2 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
apply plugin: 'groovy'
dependencies {
testImplementation project(':conductor-server')
testImplementation project(':conductor-common')
testImplementation project(':conductor-rest')
testImplementation project(':conductor-core')
testImplementation project(':conductor-redis-persistence')
testImplementation project(':conductor-cassandra-persistence')
testImplementation project(':conductor-es6-persistence')
testImplementation project(':conductor-grpc-server')
testImplementation project(':conductor-client')
testImplementation project(':conductor-grpc-client')
testImplementation project(':conductor-json-jq-task')
testImplementation project(':conductor-http-task')
testImplementation "org.springframework.retry:spring-retry"
testImplementation "com.fasterxml.jackson.core:jackson-databind:${revFasterXml}"
testImplementation "com.fasterxml.jackson.core:jackson-core:${revFasterXml}"
testImplementation "org.apache.commons:commons-lang3"
testImplementation "com.google.protobuf:protobuf-java:${revProtoBuf}"
testImplementation "com.google.guava:guava:${revGuava}"
testImplementation "org.springframework:spring-web"
testImplementation "redis.clients:jedis:${revJedis}"
testImplementation "com.netflix.dyno-queues:dyno-queues-redis:${revDynoQueues}"
testImplementation "org.codehaus.groovy:groovy-all:${revGroovy}"
testImplementation "org.spockframework:spock-core:${revSpock}"
testImplementation "org.spockframework:spock-spring:${revSpock}"
testImplementation "org.elasticsearch.client:elasticsearch-rest-client"
testImplementation "org.elasticsearch.client:elasticsearch-rest-high-level-client"
testImplementation "org.testcontainers:elasticsearch:${revTestContainer}"
testImplementation('junit:junit:4.13.2')
testImplementation "org.junit.vintage:junit-vintage-engine"
testImplementation "javax.ws.rs:javax.ws.rs-api:${revJAXRS}"
testImplementation "org.glassfish.jersey.core:jersey-common:${revJerseyCommon}"
}