FreedomNetworkSuite/Corvo/build.gradle
2023-08-22 20:52:55 -05:00

28 lines
445 B
Groovy

plugins {
id 'java'
}
group = 'fns'
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.corvo.Corvo"
description = "Services and Listeners for the Freedom Network Suite"
depend = ["Patchwork"]
}
test {
useJUnitPlatform()
}