2023-08-27 00:05:45 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'fns.tyr'
|
|
|
|
version = '1.0.0'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2023-08-28 23:17:12 +00:00
|
|
|
bukkit {
|
|
|
|
main = "fns.tyr.Tyr"
|
|
|
|
description = "SSH -> RCON Module for Freedom Network Suite"
|
|
|
|
depend = ["Patchwork", "Datura"]
|
|
|
|
}
|
|
|
|
|
2023-08-27 00:05:45 +00:00
|
|
|
dependencies {
|
2023-09-09 23:57:15 +00:00
|
|
|
compileOnly project(path: ":Patchwork")
|
|
|
|
compileOnly project(path: ":Datura")
|
2023-08-27 00:05:45 +00:00
|
|
|
|
2023-09-09 23:57:15 +00:00
|
|
|
library 'com.j256.two-factor-auth:two-factor-auth:1.3'
|
2023-08-27 00:05:45 +00:00
|
|
|
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|