forked from acmauth/BotDevelopment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (27 loc) · 1.01 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
plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '6.1.0'
id 'java'
}
group 'org.acm.auth'
version '1.0'
mainClassName = 'org.acm.auth.App'
shadowJar {
archiveBaseName.set('BotDev')
archiveClassifier.set('')
archiveVersion.set('')
}
repositories {
jcenter()
}
dependencies {
implementation 'net.dv8tion:JDA:4.2.0_222'
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '20201115'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.14.0'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.14.0'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.14.0'
}