-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (26 loc) · 816 Bytes
/
Copy pathbuild.gradle
File metadata and controls
33 lines (26 loc) · 816 Bytes
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
apply plugin : 'java'
apply plugin : 'application'
repositories() {
mavenCentral()
}
dependencies {
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '4.0.1'
compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
compile group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
compile 'org.xerial:sqlite-jdbc:3.8.7'
compile 'com.j256.ormlite:ormlite-jdbc:5.1'
compile 'com.j256.ormlite:ormlite-core:5.1'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = "App" // This is the format accepted by Gradle ver. 3 (also works for Gradle 5)
jar {
manifest {
attributes "Main-Class" : "App"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
baseName = 'wrex'
version = '0.4'
}