forked from Stekeblad/Stekeblads-Video-Uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (26 loc) · 885 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
group 'io.github.stekeblad'
version '0.0.0.1'
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = 1.8
sourceSets {
main {
resources {
srcDirs = ["src/main/java", "src/main/resources"]
includes = ["**/*.fxml", "**/*.png", "**/*.json", "**/*.properties", "**/*.css", "src/main/java/META-INF/*"]
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.api-client:google-api-client:1.30.5'
compile 'com.google.oauth-client:google-oauth-client-jetty:1.30.4'
compile 'com.google.apis:google-api-services-youtube:v3-rev20190827-1.30.1'
compile 'org.jcodec:jcodec:0.2.5'
}
// https://developers.google.com/api-client-library/java/apis/youtube/v3
// https://search.maven.org/#search%7Cgav%7C1%7Cg%3A"com.google.apis"%20AND%20a%3A"google-api-services-youtube"
//