-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (42 loc) · 1.09 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 'base'
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
shadowJar {
archiveClassifier = ''
}
base {
archivesName = "Archivist"
}
group 'io.github.archipel_project'
repositories {
mavenCentral()
maven {
url "https://m2.dv8tion.net/releases"
}
maven {
url 'https://jitpack.io'
}
}
dependencies {
// https://mvnrepository.com/artifact/net.dv8tion/JDA
implementation 'net.dv8tion:JDA:5.0.0-beta.13'
// https://mvnrepository.com/artifact/io.github.cdimascio/java-dotenv
implementation 'io.github.cdimascio:java-dotenv:5.3.1'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
implementation 'org.slf4j:slf4j-api:2.0.7'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.10.1'
}
compileJava {
options.encoding = "UTF-8"
}
jar {
manifest.attributes(
'Main-Class': "io.github.archipel_project.archipel_bot.Main",
'Version': "0.1",
'Title': "Archivist",
'Author': "Archipel project",
)
}