-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (47 loc) · 1.28 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
group = "Delfy"
version = "1.0"
apply plugin: 'java'
apply plugin: 'edu.sc.seis.launch4j'
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'edu.sc.seis.gradle:launch4j:2.4.3'
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'org.mongodb:mongodb-driver:3.6.3'
compile 'com.jfoenix:jfoenix:8.0.1'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
// compile group: 'org.controlsfx', name: 'controlsfx', version: '9.0.0'
compile group: 'org.controlsfx', name: 'controlsfx', version: '8.40.14'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.59'
testCompile "org.testfx:testfx-core:4.0.13-alpha"
testCompile "org.testfx:testfx-junit:4.0.13-alpha"
compile group: 'commons-codec', name: 'commons-codec', version: '1.11'
compile 'de.jensd:fontawesomefx-commons:9.1.2'
}
launch4j {
mainClassName = 'sample.Main'
outfile = 'Delfy.exe'
}
jar {
baseName = 'gs-gradle'
version = '0.1.0'
}
sourceSets {
main {
resources {
srcDirs = ["src/main/java"]
includes = ["**/*.fxml"]
}
}
}