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