-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (42 loc) · 1.11 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply from: 'http://dl.bintray.com/content/shemnon/javafx-gradle/8.1.1/javafx.plugin'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.apis:google-api-services-storage:v1-rev56-1.21.0'
compile 'org.apache.logging.log4j:log4j-api:2.3'
compile 'org.apache.logging.log4j:log4j-core:2.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.1.3'
compile 'org.yaml:snakeyaml:1.16'
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'resources'
}
}
}
compileJava {
targetCompatibility = 1.8
sourceCompatibility = 1.8
}
javafx {
//javaRuntime = '/Library/Java/JavaVirtualMachines/jdk1.8.0_51.jdk'
appID 'backupbuddy'
appName 'Backup Buddy'
mainClass 'ninja.oakley.backupbuddy.BackupBuddy'
jvmArgs = ['-XX:+AggressiveOpts', '-XX:CompileThreshold=1']
systemProperties = ['prism.disableRegionCaching':'true']
arguments = ['-l', '--fast']
}
eclipse {
classpath {
downloadSources = true
downloadJavadoc = true
}
}