forked from Netflix/conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
21 lines (18 loc) · 939 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
id 'groovy'
}
dependencies {
compileOnly 'org.springframework.boot:spring-boot-starter'
compileOnly 'org.springframework.data:spring-data-redis'
implementation project(':conductor-common')
implementation project(':conductor-core')
implementation "redis.clients:jedis:3.6.0" // Jedis version "revJedis=3.3.0" does not play well with Spring Data Redis
implementation "org.apache.commons:commons-lang3"
testImplementation "org.codehaus.groovy:groovy-all:${revGroovy}"
testImplementation "org.spockframework:spock-core:${revSpock}"
testImplementation "org.spockframework:spock-spring:${revSpock}"
testImplementation "org.testcontainers:spock:${revTestContainer}"
testImplementation "org.testcontainers:testcontainers:${revTestContainer}"
testImplementation "com.google.protobuf:protobuf-java:${revProtoBuf}"
testImplementation 'org.springframework.data:spring-data-redis'
}