Gradle Rewrite

This commit is contained in:
Lixfel
2024-08-06 00:26:48 +02:00
parent b210d1265c
commit da3d0a97b5
53 changed files with 513 additions and 1645 deletions
+3 -42
View File
@@ -18,49 +18,10 @@
*/
plugins {
id("base")
id("java")
}
group = "de.steamwar"
version = ""
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.encoding = "UTF-8"
}
sourceSets {
main {
java {
srcDirs("src/")
}
resources {
srcDirs("src/")
exclude("**/*.java", "**/*.kt")
}
}
test {
java {
srcDirs("testsrc/")
}
resources {
srcDirs("testsrc/")
exclude("**/*.java", "**/*.kt")
}
}
steamwar.java
}
dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
testCompileOnly("org.projectlombok:lombok:1.18.32")
testAnnotationProcessor("org.projectlombok:lombok:1.18.32")
testImplementation("junit:junit:4.13.2")
testImplementation("org.hamcrest:hamcrest:2.2")
testImplementation(libs.junit)
testImplementation(libs.hamcrest)
}