Compare commits

...

2 commits

Author SHA1 Message Date
Imbus
fec401be5d Rollback to java 17 due to wierd behaviour related to headless 2024-05-11 13:31:38 +02:00
Imbus
11766801ef Makefile polish 2024-05-11 13:14:08 +02:00
2 changed files with 2 additions and 3 deletions

View file

@ -28,13 +28,13 @@ dependencies {
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
languageVersion.set(JavaLanguageVersion.of(17))
}
}
application {
// Define the main class for the application.
mainClass.set("xl.App")
mainClass.set("gui.XL")
}
tasks.named<Test>("test") {

View file

@ -3,7 +3,6 @@ GITHASH := $(shell git rev-parse --short HEAD)$(shell git diff-index --quiet HEA
TARNAME := xl-imbus-$(GITHASH).tar.gz
run:
echo $(GITHASH)
./gradlew run
watch: