mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-15 05:33:33 +00:00
e71c167d5e
# Changes: - Migrate from com.google.gson:gson and com.tomlj:tomlj over to com.electronwill.night-config:core, toml, and json - Add the appropriate bukkit tags required by the minecrell/plugin-yml gradle plugin to Veritas and Tyr.
29 lines
538 B
Groovy
29 lines
538 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'fns.veritas'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
bukkit {
|
|
main = "fns.veritas.Veritas"
|
|
description = "Discord Module for Freedom Network Suite"
|
|
depend = ["Patchwork", "Datura"]
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(":Patchwork")
|
|
compileOnly project(":Datura")
|
|
library 'com.discord4j:discord4j-core:3.2.5'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |