-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (41 loc) · 1.4 KB
/
build.gradle
File metadata and controls
56 lines (41 loc) · 1.4 KB
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
53
54
55
56
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply from: 'libs/gradle/javafx.plugin'
sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
if (!hasProperty('mainClass')) {
ext.mainClass = 'ru.doronin.jcsg.JFXScad'
}
repositories {
mavenCentral()
}
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.10'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.6.9'
compile group: 'org.codehaus.groovy', name: 'groovy', version: '2.3.7';
compile group: 'org.codehaus.groovy', name: 'groovy', version: '2.3.7', classifier: 'sources';
compile group: 'org.codehaus.groovy', name: 'groovy', version: '2.3.7', classifier: 'javadoc';
compile group: 'org.controlsfx', name: 'controlsfx', version: '8.0.6'
compile group: 'org.controlsfx', name: 'controlsfx', version: '8.0.6', classifier: 'sources'
compile 'org.oiue.services:org.oiue.service.log4j:1.0.0'
compile 'javax.vecmath:vecmath:1.5.2'
compile 'commons-io:commons-io:2.4'
compile fileTree(dir: 'libs/', includes: ['*.jar'])
}
javafx {
appID 'ru.doronin.jfxscad'
appName 'JFXScad'
mainClass project.mainClass
category = 'JFXScad'
installSystemWide = false
menu = true
shortcut = true
}
jfxDeploy {
packaging = "image"
verbose = true
}