-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 809 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 809 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'application'
}
repositories {
jcenter()
}
dependencies {
compile 'net.dv8tion:JDA:3.8.3_464'
implementation 'com.sedmelluq:lavaplayer:1.3.50'
implementation 'org.apache.logging.log4j:log4j-api:2.12.0'
implementation 'org.apache.logging.log4j:log4j-core:2.12.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.12.0'
}
group = 'JBot'
version = '1.1'
sourceCompatibility = '1.8'
run {
mainClassName = 'JBOT.Main'
args = ["indev"]
}
jar {
manifest {
attributes "Main-Class": "JBOT.Main"
}
dependsOn configurations.runtimeClasspath
from {
configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
}
}