-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
53 lines (41 loc) · 964 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
53
group = 'de.mfo.surfer'
version = '2.0.0-SNAPSHOT'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b5'
}
}
apply plugin: 'java'
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.10'
compile 'org.jfxtras:jfxtras-labs:8.0-r3'
compile 'de.jensd:fontawesomefx:8.2'
runtime 'ch.qos.logback:logback-classic:1.0.13'
testCompile 'junit:junit:4.12'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
apply from: 'gradle/plugins/javafx.plugin'
javafx {
mainClass = "de.mfo.surfer.Surfer"
}
/*
// switch to build for mobile platform if needed
// jfxmobile is currently incompatible with javafx.gradle
apply plugin: 'org.javafxports.jfxmobile'
jfxmobile {
mainClassName = 'de.mfo.surfer.Surfer'
ios {
forceLinkClasses = [ 'de.mfo.surfer.**' ]
}
}
*/