forked from AY1920S1-CS2113T-F14-2/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 845 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
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}
checkstyle {
toolVersion = '8.23'
}
shadowJar {
archiveBaseName = "farmio"
archiveVersion = "v1.0"
archiveClassifier = null
archiveAppendix = null
}
group 'seedu.duke'
version '0.1.0'
repositories {
mavenCentral()
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.fxml', 'javafx.base']
}
application {
// Change this to your main class.
mainClassName = "farmio.Farmio"
}
run {
standardInput = System.in
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.0'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
}
test {
useJUnitPlatform()
}