-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
65 lines (51 loc) · 1.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
group 'ro.badilos'
version '0.1-SNAPSHOT'
apply from: 'http://dl.bintray.com/content/shemnon/javafx-gradle/8.1.1/javafx.plugin'
apply plugin: 'idea'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'org.xerial:sqlite-jdbc:3.7.2'
}
javafx {
profiles {
// not every possible platform override, but ones that have a known impact
windows {
id = '35745385-2457-4775-b4a0-5ce5daa70835'
category = 'JavaFX Demos'
javaRuntime = 'C:/Program Files (x86)/Java/jdk1.8.0' // yours may be different
}
macosx {
id = 'ro.badilos.EviSU'
category = 'public.app-category.developer-tools'
javaRuntime = '/Library/Java/JavaVirtualMachines/jdk1.8.0_51.jdk/'
}
linux {
// linux doesn't care about id, it goes un-used at the moment
category = 'Development'
// good luck finding a standard location for the JDK
//javaRuntime = '/usr/lib/jvm/java-7-oracle'
}
}
appID 'EviSU'
appName 'EviSU'
mainClass 'ro.badilos.evisu.EviSU'
jvmArgs = ['-XX:+UseThreadPriorities']
systemProperties = [ 'java.library.path':'.' ]
arguments = []
embedLauncher = true // caution: class-path not set and is overwritten if set to false
// deploy/info attributes
category = 'demo'
copyright = 'Copyright (c) 2015 Alin Badila'
description = 'An emergency situations database'
//licenseType = '3 clause BSD'
//vendor = 'FX Experience'
// deploy/preferences attributes
//installSystemWide = true
menu = true
//shortcut = true
}