2023-08-11 19:08:49 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'fns.cladis'
|
|
|
|
version = '1.0.0'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url 'https://repo.networkmanager.xyz/repository/maven-public/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly project(":Patchwork")
|
|
|
|
compileOnly 'nl.chimpgamer.networkmanager:api:2.13.1'
|
|
|
|
|
|
|
|
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.cladis.Cladis"
|
2023-08-23 02:02:45 +00:00
|
|
|
description = "FreedomNetworkSuite Optional NetworkManager Integration"
|
2023-08-21 22:39:50 +00:00
|
|
|
}
|
|
|
|
|
2023-08-11 19:08:49 +00:00
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|