-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (46 loc) · 1.97 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
54
55
56
57
58
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.3/userguide/java_library_plugin.html
*/
plugins {
id 'org.springframework.boot' version '2.3.3.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
// Apply the java-library plugin to add support for Java Library
id 'java-library'
id 'java'
id 'war'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation group: 'org.springframework', name: 'spring-test', version: '5.2.6.RELEASE'
testImplementation group: 'org.seleniumhq.selenium', name: 'htmlunit-driver', version: '2.43.1'
api group: 'org.thymeleaf', name: 'thymeleaf', version: '3.0.11.RELEASE'
api group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.0.11.RELEASE'
api group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-java8time', version: '3.0.4.RELEASE'
testImplementation group: "org.junit.jupiter", name: 'junit-jupiter-api', version: "5.6.2"
testRuntimeOnly group: "org.junit.jupiter", name: "junit-jupiter-engine", version: "5.6.2"
testImplementation group: "org.junit.platform", name: "junit-platform-launcher", version: "1.6.2"
implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
showExceptions true
exceptionFormat "full"
showCauses true
showStackTraces true
showStandardStreams = false
}
}