-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (30 loc) · 704 Bytes
/
build.gradle
File metadata and controls
35 lines (30 loc) · 704 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '4.0.2'
}
group 'org.example'
version '1.7.1'
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
//testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
//testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compile "net.dv8tion:JDA:4.3.0_298"
compile group: 'commons-net', name: 'commons-net', version: '3.3'
compile fileTree(include: ['*.jar'], dir: 'libs')
}
test {
//useJUnitPlatform()
}
jar {
manifest {
attributes(
'Main-Class' : "dain.Start",
)
}
}