mirror of
https://github.com/SimplexDevelopment/Obsidian.git
synced 2024-11-16 16:26:11 +00:00
26 lines
455 B
Groovy
26 lines
455 B
Groovy
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()
|
|
} |