-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (36 loc) · 1.76 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
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'java'
}
jar {
manifest {
attributes(
'Main-Class': 'Main'
)
}
}
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '5.0.1'
implementation group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.9.0'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10'
implementation group: 'org.slf4j', name: 'slf4j-nop', version: '2.0.5'
implementation group: 'com.github.twitch4j', name: 'twitch4j', version: '1.23.0'
implementation group: 'org.twitter4j', name: 'twitter4j-core', version: '4.1.2'
implementation group: 'org.ini4j', name: 'ini4j', version: '0.5.4'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55'
implementation group: 'net.dv8tion', name: 'JDA', version: '5.0.0-beta.22'
implementation group: 'com.google.guava', name: 'guava', version: '31.1-jre'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.14.1'
implementation group: 'com.fathzer', name: 'javaluator', version: '3.0.3'
implementation group: 'org.jboss.resteasy', name: 'resteasy-client', version: '6.2.8.Final'
implementation group: 'org.jboss.resteasy', name: 'resteasy-jackson2-provider', version: '6.2.8.Final'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.6.0'
}
shadowJar {
archiveClassifier.set('')
}