-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathbuild.gradle
25 lines (23 loc) · 992 Bytes
/
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
evaluationDependsOn(':')
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
dependencies {
api(
project(":wingtips-spring-webflux")
)
compileOnly(
"org.springframework:spring-webflux:$spring5Version",
"org.springframework.boot:spring-boot-autoconfigure:$springboot2Version",
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion",
)
testImplementation(
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion",
"junit:junit-dep:$junitVersion",
"org.mockito:mockito-core:$mockitoVersion",
"ch.qos.logback:logback-classic:$logbackVersion",
"org.assertj:assertj-core:$assertJVersion",
"com.tngtech.java:junit-dataprovider:$junitDataproviderVersion",
"io.rest-assured:rest-assured:$restAssuredVersion",
"org.springframework.boot:spring-boot-starter-webflux:$springboot2Version",
)
}