FreedomNetworkSuite/Patchwork/build.gradle
2023-08-22 20:55:12 -05:00

27 lines
538 B
Groovy

group = 'fns.patchwork'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
library 'io.projectreactor:reactor-core:3.5.4'
library 'io.github.classgraph:classgraph:4.8.162'
api 'org.slf4j:slf4j-api:1.7.36'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
bukkit {
main = "fns.patchwork.base.Patchwork"
description = "Freedom Network Suite Core Module (API & Library)"
}
var weight = 1
test {
useJUnitPlatform()
}