Add first (manual) CI jobs #174

Merged
lars.winzer merged 11 commits from chore/gitlab-linting-formatting-pipeline into main 2026-03-13 23:24:46 +01:00
Showing only changes of commit fb02faffc9 - Show all commits
+9
View File
@@ -3,6 +3,7 @@ plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.1.0'
id 'checkstyle'
id 'com.diffplug.spotless' version '7.0.2'
}
group = 'ch.unibas.dmi.dbis'
@@ -52,6 +53,14 @@ checkstyle {
]
}
spotless {
java {
googleJavaFormat()
importOrder()
removeUnusedImports()
}
}
tasks.named('jar', Jar) {
manifest {
attributes('Main-Class': application.mainClass.get())