forked from spinnaker/clouddriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclouddriver-huaweicloud.gradle
38 lines (35 loc) · 1.77 KB
/
clouddriver-huaweicloud.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
dependencies {
implementation project(":cats:cats-core")
implementation project(":clouddriver-api")
implementation project(":clouddriver-core")
implementation project(":clouddriver-security")
compileOnly "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
testAnnotationProcessor "org.projectlombok:lombok"
implementation "io.spinnaker.kork:kork-exceptions"
implementation "com.netflix.frigga:frigga"
implementation "com.netflix.spectator:spectator-api"
implementation "io.spinnaker.fiat:fiat-api:$fiatVersion"
implementation "io.spinnaker.fiat:fiat-core:$fiatVersion"
implementation "io.spinnaker.kork:kork-moniker"
implementation "org.glassfish.jersey.inject:jersey-hk2:2.28"
implementation 'com.huawei:openstack4j:1.0.17'
implementation "org.glassfish.jersey.core:jersey-client:2.22.1"
implementation "org.glassfish.jersey.media:jersey-media-json-jackson:2.11"
implementation "org.codehaus.groovy:groovy-all"
implementation "org.springframework.boot:spring-boot-actuator"
implementation "org.springframework.boot:spring-boot-starter-web"
implementation 'org.apache.commons:commons-lang3'
testImplementation "cglib:cglib-nodep"
testImplementation "commons-fileupload:commons-fileupload:1.4"
testImplementation "org.apache.httpcomponents:httpmime"
testImplementation "org.assertj:assertj-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.platform:junit-platform-runner"
testImplementation "org.mockito:mockito-core"
testImplementation "org.mockito:mockito-junit-jupiter"
testImplementation "org.objenesis:objenesis"
testImplementation "org.spockframework:spock-core"
testImplementation "org.spockframework:spock-spring"
testImplementation "org.springframework:spring-test"
}