25 lines
447 B
Groovy
25 lines
447 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'tokarotik.giftapi'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jetbrains:annotations:24.0.0'
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
implementation(
|
|
files(
|
|
"craftbukkit-1.6.4-R2.0.jar"
|
|
)
|
|
)
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |