-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
48 lines (40 loc) · 1.11 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
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath 'com.gradleup.shadow:shadow-gradle-plugin:8.3.3'
}
}
apply plugin: 'com.gradleup.shadow'
apply plugin: 'java'
apply plugin: 'application'
group = 'xyz.funtimes909.serverseekerv2_discord_bot'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'net.dv8tion:JDA:5.1.2'
implementation 'org.postgresql:postgresql:42.7.4'
implementation 'org.apache.commons:commons-dbcp2:2.12.0'
implementation 'ch.qos.logback:logback-classic:1.5.6'
implementation group: 'commons-net', name: 'commons-net', version: '3.11.1'
}
application {
mainClass.set("xyz.funtimes909.serverseekerv2_discord_bot.Main")
}
jar {
from "LICENSE.txt"
manifest {
attributes(
'Main-Class': 'xyz.funtimes909.serverseekerv2_discord_bot.Main'
)
}
}
test {
useJUnitPlatform()
}