FreedomNetworkSuite/Fossil/build.gradle

28 lines
431 B
Groovy
Raw Normal View History

2023-05-15 06:30:37 +00:00
plugins {
id 'java'
}
group = 'fns'
2023-05-15 06:30:37 +00:00
version = '1.0.0'
2023-04-14 01:24:40 +00:00
repositories {
mavenCentral()
}
dependencies {
2023-05-15 06:30:37 +00:00
compileOnly project(":Patchwork")
2023-04-14 01:24:40 +00:00
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
bukkit {
main = "fns.fossil.Fossil"
description = "The Freedom Server module."
depend = ["Datura", "Patchwork"]
}
2023-04-14 01:24:40 +00:00
test {
useJUnitPlatform()
}