2023-05-15 06:30:37 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
2023-08-23 01:52:55 +00:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
|
2023-08-21 22:39:50 +00:00
|
|
|
bukkit {
|
|
|
|
main = "fns.corvo.Corvo"
|
|
|
|
description = "Services and Listeners for the Freedom Network Suite"
|
|
|
|
depend = ["Patchwork"]
|
|
|
|
}
|
|
|
|
|
2023-04-14 01:24:40 +00:00
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2023-08-23 01:52:55 +00:00
|
|
|
}
|