0
This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Redstoner-Bot/build.gradle
2019-03-10 18:28:57 -04:00

32 lines
589 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_460'
implementation 'com.github.LogalDeveloper:LogalBot:f4f13ddc45'
implementation 'mysql:mysql-connector-java:5.1.37'
}
jar {
manifest {
attributes "Main-Class": "com.redstoner.discordbot.Main"
}
}