-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
69 lines (58 loc) · 2.56 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
66
67
68
69
plugins {
id "java"
}
version = '1.0.0'
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
ext {
junitVersion = '4.12'
jsonVersion = '2.8.5'
spotifyWebApiVersion = '2.0.5'
googleApiVersion = '1.25.0'
youtubeOAuthVersion = '1.25.0'
youtubeApiVersion = 'v3-rev206-1.25.0'
lavaplayerVersion = '1.3.22'
slf4jApiVersion = '1.7.25'
httpclientVersion = '4.5.5'
commonsIOVersion = '2.6'
jacksonCoreVersion = '2.9.4'
jacksonDatabindVersion = '2.9.4'
jsoupVersion = '1.11.2'
base64Version = '2.3.9'
}
dependencies {
//JUnit testing framework
testImplementation group: 'junit', name: 'junit', version: junitVersion
//Json tests library
testImplementation group: 'com.google.code.gson', name: 'gson', version: jsonVersion
//Google API Client
implementation group: 'com.google.api-client', name: 'google-api-client', version: googleApiVersion
//Google OAuth Client
implementation group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: youtubeOAuthVersion
//Youtube Data API V3
implementation group: 'com.google.apis', name: 'google-api-services-youtube', version: youtubeApiVersion
//Spotify Web API
implementation group: 'se.michaelthelin.spotify', name: 'spotify-web-api-java', version: spotifyWebApiVersion
// Lavaplayer
implementation group: 'com.sedmelluq', name: 'lavaplayer', version: lavaplayerVersion
// //Logging framework
// testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.8.0-alpha2'
// testImplementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jApiVersion
// implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jApiVersion
// //Apache HttpComponents Client
// implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: httpclientVersion
// //Apache Commons IO library
// implementation group: 'commons-io', name: 'commons-io', version: commonsIOVersion
//
// //Core Jackson processing abstractions (aka Streaming API), implementation for JSON
// implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jacksonCoreVersion
// //General data-binding functionality for Jackson
// implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonDatabindVersion
//
// //Java HTML Parser
// implementation group: 'org.jsoup', name: 'jsoup', version: jsoupVersion
// //Base64 encoding and decoding library
// implementation group: 'net.iharder', name: 'base64', version: base64Version
}