28 lines
634 B
Groovy
28 lines
634 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.hypherionmc.nightbloom'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.30")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.30")
|
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.30")
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.30")
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |