forked from Netflix/conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (36 loc) · 1.57 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
44
45
46
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.5"
}
}
apply plugin: 'groovy'
configurations.all {
exclude group: 'amazon', module: 'aws-java-sdk'
}
dependencies {
compileOnly 'org.jetbrains:annotations:23.0.0'
implementation project(':conductor-common')
implementation "com.sun.jersey:jersey-client:${revJersey}"
implementation "javax.ws.rs:javax.ws.rs-api:${revJAXRS}"
implementation "org.glassfish.jersey.core:jersey-common:${revJerseyCommon}"
implementation "com.netflix.spectator:spectator-api:${revSpectator}"
implementation ("com.netflix.eureka:eureka-client:${revEurekaClient}") {
exclude group: 'com.google.guava', module: 'guava'
}
implementation "com.amazonaws:aws-java-sdk-core:${revAwsSdk}"
implementation "com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
implementation "org.apache.commons:commons-lang3"
implementation "commons-io:commons-io:${revCommonsIo}"
implementation "org.slf4j:slf4j-api"
testImplementation "org.powermock:powermock-module-junit4:${revPowerMock}"
testImplementation "org.powermock:powermock-api-mockito2:${revPowerMock}"
testImplementation "org.codehaus.groovy:groovy-all:${revGroovy}"
testImplementation "org.spockframework:spock-core:${revSpock}"
testImplementation "org.spockframework:spock-spring:${revSpock}"
}