Skip to content

Instantly share code, notes, and snippets.

@jannis6023
Created April 10, 2021 15:16
Show Gist options
  • Save jannis6023/37fdbcda9fd410a9d0fae7ae8f84e50d to your computer and use it in GitHub Desktop.
Save jannis6023/37fdbcda9fd410a9d0fae7ae8f84e50d to your computer and use it in GitHub Desktop.
Build.gradle-File zum Tutorial-Bot
plugins {
id 'java'
id'com.github.johnrengelman.shadow' version '5.2.0'
}
version '1.0'
def jdaVersion = '4.2.0_241'
group 'de.jannis6023'
version '1.0-SNAPSHOT'
repositories {
jcenter();
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compile "net.dv8tion:JDA:$jdaVersion"
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.21'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12
testImplementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.0-alpha1'
}
test {
useJUnitPlatform()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment