-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
54 lines (46 loc) · 1.71 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
group 'org.vietabroader.vaqr'
version '1.1'
buildscript {
dependencies {
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
}
repositories {
mavenLocal()
mavenCentral()
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'javafx-gradle-plugin'
sourceCompatibility = 1.8
mainClassName = 'org.vietabroader.Main'
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.google.api-client', name: 'google-api-client', version: '1.22.0'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.22.0'
compile group: 'com.google.apis', name: 'google-api-services-sheets', version: 'v4-rev475-1.22.0'
compile group: 'com.google.apis', name: 'google-api-services-oauth2', version: 'v1-rev132-1.22.0'
compile group: 'com.google.apis', name: 'google-api-services-drive', version: 'v3-rev75-1.22.0'
compile group: 'org.apache.commons', name: 'commons-io', version: '1.3.2'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'
compile group: 'com.github.sarxos', name:'webcam-capture', version: '0.3.10'
compile group: 'com.google.zxing', name: 'javase', version: '3.3.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
jfx {
appName = "VAQR"
mainClass = 'org.vietabroader.Main'
vendor = 'VietAbroader'
deployDir = "src/main/deploy"
jfxMainAppJarName = 'VAQR.jar'
needShortcut = true
nativeReleaseVersion = '1.1'
verbose = true
bundleArguments = [
installdirChooser: 'true',
runtime: null
]
}