Obsidian/build.gradle

26 lines
455 B
Groovy
Raw Normal View History

2021-02-27 04:33:47 +00:00
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group 'io.github.paldiu.obsidian'
version '1.0.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
compile 'com.discord4j:discord4j-core:3.1.3'
compile 'org.slf4j:slf4j-api:1.7.25'
}
shadowJar {
}
test {
useJUnitPlatform()
}