forked from YCSRobotics/GrizzlyTime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (35 loc) · 1.45 KB
/
build.gradle
File metadata and controls
40 lines (35 loc) · 1.45 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
/*
* Uncomment all lines regarding javafx for java 11 support!
*/
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '4.0.3'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
}
group 'GrizzlyTime'
version '2.3.0'
mainClassName = "GrizzlyTime"
repositories {
mavenCentral()
}
dependencies {
//note that it seems the maven repository includes a version 11 of these plugins, should investigate if this is for jdk 11
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'com.google.oauth-client', name: 'google-oauth-client', version: '1.30.1'
compile group: 'com.google.api-client', name: 'google-api-client', version: '1.30.2'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-java6', version: '1.30.1'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.30.1'
compile group: 'com.google.apis', name: 'google-api-services-sheets', version: 'v4-rev581-1.25.0'
compile 'org.json:json:20180813'
compile 'com.google.apis:google-api-services-analytics:v3-rev159-1.25.0'
// compile "org.openjfx:javafx-graphics:11.0.1:win"
// compile "org.openjfx:javafx-graphics:11.0.1:linux"
// compile "org.openjfx:javafx-graphics:11.0.1:mac"
}
javafx {
modules = [ 'javafx.controls',
'javafx.media',
'javafx.swing']
}