-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (51 loc) · 1.97 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
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'java'
id 'application'
}
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
compileJava.options.encoding = 'UTF-8'
group 'nl.daanh'
version '1.0.0'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
implementation(group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.10')
// https://github.com/DV8FromTheWorld/JDA/releases
implementation(group: 'net.dv8tion', name: 'JDA', version: '4.4.0_352')
// https://github.com/sedmelluq/lavaplayer
implementation(group: 'com.sedmelluq', name: 'lavaplayer', version: '1.3.78')
// https://github.com/freyacodes/Lavalink-Client
implementation(group: 'com.github.freyacodes', name: 'Lavalink-Client', version: '2b1b439')
// https://mvnrepository.com/artifact/org.json/json
implementation(group: 'org.json', name: 'json', version: '20211205')
// https://github.com/cdimascio/dotenv-kotlin
implementation(group: 'io.github.cdimascio', name: 'dotenv-kotlin', version: '6.2.2')
// https://mvnrepository.com/artifact/com.zaxxer/HikariCP
implementation(group: 'com.zaxxer', name: 'HikariCP', version: '5.0.1')
// https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc
implementation(group: 'org.xerial', name: 'sqlite-jdbc', version: '3.36.0.3')
// https://mvnrepository.com/artifact/org.postgresql/postgresql
implementation(group: 'org.postgresql', name: 'postgresql', version: '42.3.1')
}
shadowJar {
archiveBaseName.set('Hiromi')
archiveClassifier.set('')
archiveVersion.set('')
}
application {
// Define the main class for the application
mainClassName = 'nl.daanh.hiromi.Hiromi'
}
jar {
manifest {
attributes 'Main-Class': 'nl.daanh.hiromi.Hiromi'
}
}