0
This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
Redstoner-Bot/build.gradle
2019-04-07 13:36:31 -04:00

32 lines
595 B
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
repositories {
jcenter()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation('net.dv8tion:JDA:3.8.3_462')
implementation('dev.logal.git.LogalDeveloper:LogalBot:07c0dcdd2c')
implementation('mysql:mysql-connector-java:5.1.37')
}
jar {
manifest {
attributes "Main-Class": "com.redstoner.discordbot.Main"
}
}