mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2024-11-14 21:23:33 +00:00
18951fa120
* Port to ClassGraph * Migrate to Minecrell plugin-yml This allows us to load libraries at runtime instead of using shading & creating massive JAR files. * Fix constructor modifiers of cake command * Fix improper usage of CommandMap
30 lines
579 B
Groovy
30 lines
579 B
Groovy
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'
|
|
}
|
|
|
|
bukkit {
|
|
main = "fns.cladis.Cladis"
|
|
description = "Network Manager integration for the Freedom Network Suite."
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |