forked from Netflix/conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
23 lines (19 loc) · 1.08 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
dependencies {
compile project(':conductor-common')
compile "io.reactivex:rxjava:${revRxJava}"
compile "com.google.inject:guice:${revGuice}"
compile "com.google.inject.extensions:guice-multibindings:${revGuiceMultiBindings}"
compile "com.netflix.servo:servo-core:${revServo}"
compile "com.netflix.spectator:spectator-api:${revSpectator}"
compile "com.fasterxml.jackson.core:jackson-databind:${revJacksonDatabind}"
compile "com.fasterxml.jackson.core:jackson-core:${revJacksonCore}"
compile "com.jayway.jsonpath:json-path:${revJsonPath}"
compile "org.apache.commons:commons-lang3:${revCommonsLang3}"
compile "com.spotify:completable-futures:${revSpotifyCompletableFutures}"
compile "com.amazonaws:aws-java-sdk-s3:${revAwsSdk}"
compile "org.apache.bval:bval-jsr:${revBval}"
compile "javax.validation:validation-api:${revValidationApi}"
// https://mvnrepository.com/artifact/org.glassfish/javax.el
compile group: 'org.glassfish', name: 'javax.el', version: "${revJavaElApi}"
testCompile "org.slf4j:slf4j-log4j12:${revSlf4jlog4j}"
}