forked from AY1920S1-CS2113T-W13-2/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
88 lines (73 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'application'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}
checkstyle {
toolVersion = '8.23'
configFile = file("config/checkstyle/checkstyle.xml")
}
shadowJar {
archiveBaseName = "[CS2113T-W13-2][JavaCake]"
archiveVersion = ""
archiveClassifier = null
archiveAppendix = null
}
//jar {
// manifest {
// attributes 'Main-Class': 'javacake.Launcher'
// }
// from {
// configurations.runTimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
// }
//}
group 'seedu.duke'
version '0.1.0'
repositories {
mavenCentral()
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
application {
// Change this to your main class.
//mainClassName = "javacake.Duke"
mainClassName = "javacake.Launcher"
}
run {
standardInput = System.in
}
dependencies {
//compile files("${System.properties['java.home']}/../lib/tools.jar")
compile group: 'com.joestelmach', name: 'natty', version: '0.6'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.2'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.6'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.0'
testImplementation 'junit:junit:4.12'
// testCompile "org.testfx:testfx-core:4.0.16-alpha"
// testCompile "org.testfx:testfx-junit5:4.0.16-alpha"
// testCompile group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
String javaFxVersion = '11'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-base', version: javaFxVersion, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-controls', version: javaFxVersion, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-fxml', version: javaFxVersion, classifier: 'linux'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFxVersion, classifier: 'win'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFxVersion, classifier: 'mac'
implementation group: 'org.openjfx', name: 'javafx-graphics', version: javaFxVersion, classifier: 'linux'
}
test {
useJUnitPlatform()
testLogging {
exceptionFormat = 'full'
}
}