-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle
53 lines (47 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
53
evaluationDependsOn(':')
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springboot3_3Version}")
}
}
apply plugin: 'org.springframework.boot'
apply plugin: "io.spring.dependency-management"
test {
useJUnitPlatform()
}
dependencies {
implementation(
project(":backstopper-spring-web-flux"),
project(":backstopper-custom-validators"),
"ch.qos.logback:logback-classic",
"org.springframework.boot:spring-boot-dependencies:$springboot3_3Version",
"org.springframework.boot:spring-boot-starter-webflux",
"org.hibernate.validator:hibernate-validator",
"org.glassfish.expressly:expressly:$glassfishExpresslyVersion",
)
compileOnly(
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion"
)
testImplementation(
project(":backstopper-reusable-tests-junit5"),
"org.junit.jupiter:junit-jupiter:$junit5Version",
"org.mockito:mockito-core:$mockitoVersion",
"org.assertj:assertj-core:$assertJVersion",
"io.rest-assured:rest-assured",
)
// 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"
)
}
apply plugin: "application"
application {
setMainClass("com.nike.backstopper.springboot3webfluxsample.Main")
}
run {
systemProperties(System.getProperties())
}