24 lines
348 B
Groovy
24 lines
348 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'java-library'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
api 'org.jetbrains:annotations:24.1.0'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.jar {
|
|
archiveFileName.set("api.jar")
|
|
}
|