Initial Commit

This commit is contained in:
2023-12-17 18:53:45 +02:00
commit 762ac578b1
20 changed files with 918 additions and 0 deletions

28
build.gradle Normal file
View File

@@ -0,0 +1,28 @@
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()
}