forked from AY1920S1-CS2113-T14-3/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (43 loc) · 894 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
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '5.1.0'
id 'org.openjfx.javafxplugin' version '0.0.7'
}
checkstyle {
toolVersion = '8.23'
}
shadowJar {
archiveBaseName = "wordup"
archiveVersion = "v1.3.4.2"
archiveClassifier = null
archiveAppendix = null
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.0'
shadow 'junit:junit:3.8.2'
compile 'org.apache.poi:poi:3.17'
compile 'org.apache.poi:poi-ooxml:3.17'
}
jar {
manifest {
attributes 'Class-Path': '/libs/a.jar'
}
}
test {
useJUnitPlatform()
}
group 'wordup'
version '0.1.0'
repositories {
mavenCentral()
}
application {
// Change this to your main class.
mainClassName = "Launcher"
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}