forked from AY1920S1-CS2113T-F09-4/Ducats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
65 lines (50 loc) · 987 Bytes
/
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
64
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '5.1.0'
id 'application'
id 'checkstyle'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'jacoco'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.0'
}
test {
useJUnitPlatform()
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
test.finalizedBy jacocoTestReport
group 'seedu.main'
version '0.1.0'
repositories {
mavenCentral()
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
shadowJar {
archiveBaseName = "Ducats"
archiveVersion = "1.4"
archiveClassifier = null
archiveAppendix = null
}
checkstyle {
toolVersion = '8.23'
}
jacoco {
toolVersion = "0.8.5"
reportsDir = file("$buildDir/reports/jacoco")
}
application {
// Change this to your main class.
mainClassName = "ducats.Ducats"
}
run {
standardInput = System.in
}