-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (37 loc) · 980 Bytes
/
Copy pathbuild.gradle
File metadata and controls
45 lines (37 loc) · 980 Bytes
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
plugins {
id 'com.gradleup.shadow' version '9.2.2'
id 'org.jetbrains.kotlin.jvm' version '2.2.20'
id 'java'
}
jar {
manifest.attributes(
'Main-Class': 'com.sidpatchy.basebot.Main',
'Multi-Release': 'true'
)
}
group = "com.sidpatchy"
version = "1.0-SNAPSHOT"
kotlin {
jvmToolchain(25)
}
repositories {
mavenCentral()
maven {
url = 'https://m2.dv8tion.net/releases'
}
maven {
url = 'https://jitpack.io'
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation 'com.github.Sidpatchy:Robin:2.2.5'
implementation 'net.dv8tion:JDA:6.1.0'
implementation 'org.apache.logging.log4j:log4j-api:2.19.0'
implementation 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.19.0'
}
tasks.test {
useJUnitPlatform()
}