2023-08-23 01:55:12 +00:00
|
|
|
group = 'fns.patchwork'
|
2023-04-14 01:24:40 +00:00
|
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-08-21 22:39:50 +00:00
|
|
|
library 'io.projectreactor:reactor-core:3.5.4'
|
|
|
|
library 'io.github.classgraph:classgraph:4.8.162'
|
2023-04-14 01:24:40 +00:00
|
|
|
api 'org.slf4j:slf4j-api:1.7.36'
|
|
|
|
|
|
|
|
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.patchwork.base.Patchwork"
|
2023-08-23 01:55:12 +00:00
|
|
|
description = "Freedom Network Suite Core Module (API & Library)"
|
2023-08-21 22:39:50 +00:00
|
|
|
}
|
|
|
|
|
2023-05-15 06:30:37 +00:00
|
|
|
var weight = 1
|
2023-04-14 01:24:40 +00:00
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2023-08-23 01:55:12 +00:00
|
|
|
}
|