FreedomNetworkSuite/Datura/build.gradle
allinkdev 18951fa120
Port to ClassGraph (#30)
* Port to ClassGraph

* Migrate to Minecrell plugin-yml

This allows us to load libraries at runtime instead of using shading & creating massive JAR files.

* Fix constructor modifiers of cake command

* Fix improper usage of CommandMap
2023-08-21 17:39:50 -05:00

29 lines
464 B
Groovy

plugins {
id 'java'
}
group = 'me.totalfreedom'
version = '1.0.0'
repositories {
mavenCentral()
}
dependencies {
compileOnly project(":Patchwork")
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
bukkit {
main = "fns.datura.Datura"
description = "Data Manager for the Freedom Network Suite"
depend = ["Patchwork"]
}
var weight = 2
test {
useJUnitPlatform()
}