-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
executable file
·52 lines (45 loc) · 1.87 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id "com.sedmelluq.jdaction" version "1.0.99-beta3"
}
sourceCompatibility = 1.11
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
jcenter()
maven { url "https://m2.chew.pro/releases" }
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'net.dv8tion:JDA:4.4.1_353'
implementation 'pw.chew:jda-chewtils:1.24.1'
implementation 'dev.arbjerg:lavaplayer:2.1.0'
implementation ("com.sedmelluq:jda-nas:1.1.0") {
exclude module: "udp-queue"
}
implementation("club.minnced:udpqueue-native-linux-x86-64:0.2.7") //Linux X86 64bit glibc
//implementation("club.minnced:udpqueue-native-linux-x86:0.2.7") //Linux X86 32bit glibc
//implementation("club.minnced:udpqueue-native-linux-aarch64:0.2.7") //Linux ARM 64bit glibc
//implementation("club.minnced:udpqueue-native-linux-arm:0.2.7") //Linux ARM 32bit glibc
//implementation("club.minnced:udpqueue-native-linux-musl-x86-64:0.2.7") //Linux X86 64bit musl
//implementation("club.minnced:udpqueue-native-linux-musl-aarch64:0.2.7") //Linux ARM 64bit musl
implementation("club.minnced:udpqueue-native-win-x86-64:0.2.7") //Windows X86 64bit
//implementation("club.minnced:udpqueue-native-win-x86:0.2.7") //Windows X86 32bit
//implementation("club.minnced:udpqueue-native-darwin:0.2.7") //MacOS X86
implementation 'org.slf4j:slf4j-simple:2.0.11'
implementation 'org.json:json:20231013'
implementation 'org.postgresql:postgresql:42.7.1'
}
compileJava.options.encoding = 'UTF-8'
shadowJar{
mainClassName = 'ayaya.core.Ayaya'
archiveBaseName = 'Ayaya'
archiveClassifier = ''
archiveVersion = ''
applicationName = "Ayaya"
}