-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
38 lines (35 loc) · 1.28 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
evaluationDependsOn(':')
ext {
mockito3Version = '3.12.4'
javassistJava8Version = '3.29.0-GA'
orgReflectionsUpdatedVersion = '0.9.12'
}
test {
useJUnitPlatform()
}
dependencies {
api(
project(":backstopper-core"),
project(":backstopper-custom-validators"),
"com.fasterxml.jackson.core:jackson-core:$jacksonVersion",
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
"org.junit.jupiter:junit-jupiter:$junit5Version",
"org.mockito:mockito-core:$mockito3Version",
"org.assertj:assertj-core:$assertJVersion",
"org.reflections:reflections:$orgReflectionsUpdatedVersion",
"org.javassist:javassist:$javassistJava8Version"
)
compileOnly(
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion",
)
testImplementation(
"org.junit.jupiter:junit-jupiter:$junit5Version",
"org.slf4j:slf4j-api:$slf4jVersion",
"ch.qos.logback:logback-classic:$logbackVersion",
)
// Make gradle happy for gradle 9.
// See: https://docs.gradle.org/8.10/userguide/upgrading_version_8.html#test_framework_implementation_dependencies
testRuntimeOnly(
"org.junit.platform:junit-platform-launcher"
)
}