forked from Netflix/genie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (32 loc) · 1.24 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
apply plugin: "java-library"
dependencies {
/*******************************
* API Dependencies
*******************************/
api(project(":genie-common"))
api(project(":genie-common-external"))
api("com.fasterxml.jackson.core:jackson-databind")
api("com.github.fge:json-patch")
api("com.squareup.okhttp3:okhttp")
api("com.squareup.retrofit2:retrofit")
api("com.squareup.retrofit2:converter-jackson")
/*******************************
* Implementation Dependencies
*******************************/
implementation("org.apache.commons:commons-lang3")
implementation("org.slf4j:slf4j-api")
/*******************************
* Compile Only Dependencies
*******************************/
/*******************************
* Runtime Only Dependencies
*******************************/
/*******************************
* Test Dependencies
*******************************/
testImplementation(project(":genie-test"))
testImplementation("com.squareup.okhttp3:mockwebserver")
integTestImplementation("commons-io:commons-io")
integTestImplementation("org.testcontainers:testcontainers")
integTestImplementation("org.testcontainers:junit-jupiter")
}