31 lines
612 B
Groovy
31 lines
612 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.slf4j:slf4j-simple:1.7.26'
|
|
|
|
implementation 'net.dv8tion:JDA:3.8.3_463'
|
|
implementation 'com.sedmelluq:lavaplayer:1.3.17'
|
|
implementation 'redis.clients:jedis:3.0.1'
|
|
implementation 'com.vdurmont:emoji-java:4.0.0'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'dev.logal.logalbot.Main'
|
|
}
|
|
} |