-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
63 lines (51 loc) · 1.76 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
59
60
61
62
63
plugins {
id 'org.kordamp.gradle.jacoco' version '0.54.0'
}
allprojects {
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
group = 'org.delft.oopp.team15.splitty'
version = '0.1.0-beta'
sourceCompatibility = '21'
checkstyle {
toolVersion "9.2.1"
ignoreFailures = false
maxErrors = 0
maxWarnings = 69
configFile = file('../checkstyle.xml')
}
tasks.named('test') {
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacocoTestReport {
reports {
xml.required = false
csv.required = false
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
}
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.openjfx:javafx-controls:21.0.2'
implementation 'org.openjfx:javafx-fxml:21.0.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.0-rc1'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux', version: '3.2.4'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testImplementation group: 'io.projectreactor', name: 'reactor-test', version: '3.1.0.RELEASE'
testImplementation 'org.mockito:mockito-core:5.11.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.11.0'
testImplementation group: 'org.testfx', name: 'testfx-core', version: '4.0.18'
testImplementation group: 'org.testfx', name: 'testfx-junit5', version: '4.0.18'
testImplementation group: 'org.testfx', name: 'openjfx-monocle', version: '21.0.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
}