FreedomNetworkSuite/Patchwork/build.gradle

30 lines
703 B
Groovy
Raw Permalink Normal View History

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 {
library 'io.projectreactor:reactor-core:3.5.4'
library 'io.github.classgraph:classgraph:4.8.162'
library 'com.electronwill.night-config:core:3.6.7'
library 'com.electronwill.night-config:toml:3.6.7'
library 'com.electronwill.night-config:json:3.6.7'
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'
}
bukkit {
main = "fns.patchwork.base.Patchwork"
2023-08-23 01:55:12 +00:00
description = "Freedom Network Suite Core Module (API & Library)"
}
def weight = 1
2023-04-14 01:24:40 +00:00
test {
useJUnitPlatform()
2023-08-23 01:55:12 +00:00
}