forked from spinnaker/clouddriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclouddriver-aws.gradle
49 lines (46 loc) · 2.34 KB
/
clouddriver-aws.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
47
48
49
dependencies {
implementation project(":cats:cats-core")
implementation project(":clouddriver-api")
implementation project(":clouddriver-core")
implementation project(":clouddriver-eureka")
implementation project(":clouddriver-security")
implementation project(":clouddriver-saga")
compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
testAnnotationProcessor "org.projectlombok:lombok"
implementation "javax.inject:javax.inject:1"
implementation "com.amazonaws:aws-java-sdk"
implementation "com.github.ben-manes.caffeine:guava"
implementation "com.netflix.awsobjectmapper:awsobjectmapper"
implementation "com.netflix.frigga:frigga"
implementation "com.netflix.spinnaker.fiat:fiat-api:$fiatVersion"
implementation "com.netflix.spinnaker.fiat:fiat-core:$fiatVersion"
implementation "com.netflix.spinnaker.kork:kork-core"
implementation "com.netflix.spinnaker.kork:kork-aws"
implementation "com.netflix.spinnaker.kork:kork-exceptions"
implementation "com.netflix.spinnaker.kork:kork-security"
implementation "com.netflix.spinnaker.moniker:moniker"
implementation "com.squareup.okhttp:okhttp"
implementation "com.squareup.okhttp:okhttp-apache"
implementation "com.squareup.okhttp:okhttp-urlconnection"
implementation "com.squareup.retrofit:converter-jackson"
implementation "com.squareup.retrofit:retrofit"
implementation "io.reactivex:rxjava"
implementation "org.apache.httpcomponents:httpclient"
implementation "org.apache.httpcomponents:httpcore"
implementation "org.codehaus.groovy:groovy-all"
implementation "org.springframework.boot:spring-boot-actuator"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation 'com.aestasit.infrastructure.sshoogr:sshoogr:0.9.25'
implementation 'com.jcraft:jsch.agentproxy.connector-factory:0.0.9'
implementation 'com.jcraft:jsch.agentproxy.jsch:0.0.9'
testImplementation "com.netflix.spinnaker.kork:kork-exceptions"
testImplementation "cglib:cglib-nodep"
testImplementation "com.natpryce:hamkrest"
testImplementation "junit:junit"
testImplementation "org.objenesis:objenesis"
testImplementation "org.spockframework:spock-core"
testImplementation "org.spockframework:spock-spring"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.springframework:spring-test"
}