-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle
48 lines (42 loc) · 1.36 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
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-boot3-webmvc"),
project(":backstopper-custom-validators"),
"ch.qos.logback:logback-classic",
"org.springframework.boot:spring-boot-dependencies:$springboot3_3Version",
"org.springframework.boot:spring-boot-starter-web",
"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",
)
}
apply plugin: "application"
application {
setMainClass("com.nike.backstopper.springboot3webmvcsample.Main")
}
run {
systemProperties(System.getProperties())
}