-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (44 loc) · 1.56 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
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version('0.0.8')
}
group 'org.FordWeather'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.11
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.poi/poi
compile group: 'org.apache.poi', name: 'poi', version: '4.1.2'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.6'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
compile group: 'com.squareup.moshi', name: 'moshi', version: '1.9.2'
compile group: 'com.squareup.moshi', name: 'moshi-adapters', version: '1.9.2'
compile 'com.squareup.okhttp3:okhttp:4.6.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testImplementation 'org.hamcrest:hamcrest:2.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
// https://projectlombok.org/features/all
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
// https://commons.apache.org/proper/commons-csv/
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.8'
}
test {
useJUnitPlatform()
}
mainClassName = 'main'
javafx {
version = "14"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
apply plugin: 'java'
jar {
manifest {
attributes 'Main-Class': 'main'
}
}