Obsidian/build.gradle

26 lines
468 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 {
2021-03-01 14:56:06 +00:00
implementation 'org.jetbrains:annotations:20.1.0'
2021-02-27 04:33:47 +00:00
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'
}
shadowJar {
}
test {
useJUnitPlatform()
}