0
This repository has been archived on 2025-04-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LogalBot-Discord/build.gradle
2019-05-25 16:06:57 -04:00

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'
}
}