-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (41 loc) · 1.93 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
group 'com.coocoofroggy'
version '1.0'
jar {
manifest {
attributes(
'Main-Class': 'com.coocoofroggy.otalive.Main',
// Azure SDK bug
// https://github.com/Azure/azure-sdk-for-java/issues/29046#issuecomment-1151228527
'Multi-Release': true
)
}
}
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.9'
// https://mvnrepository.com/artifact/net.dv8tion/JDA
implementation group: 'net.dv8tion', name: 'JDA', version: '5.0.0-alpha.12'
// https://mvnrepository.com/artifact/org.mongodb/mongo-java-driver
implementation group: 'org.mongodb', name: 'mongo-java-driver', version: '3.12.11'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
// https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5
implementation group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.1.3'
// https://mvnrepository.com/artifact/commons-io/commons-io
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'
// Commons compress 1.22 local build — 1.22 doesn't exist yet on mavenCentral
implementation files('libs/commons-compress-1.22-SNAPSHOT.jar')
// https://mvnrepository.com/artifact/com.googlecode.plist/dd-plist
implementation group: 'com.googlecode.plist', name: 'dd-plist', version: '1.23'
// https://mvnrepository.com/artifact/com.azure/azure-storage-blob
implementation group: 'com.azure', name: 'azure-storage-blob', version: '12.18.0'
// https://github.com/furstenheim/copy-down
implementation 'io.github.furstenheim:copy_down:1.1'
}