Compare commits

..

No commits in common. "fec401be5d91c8507576cdc0f0cff4af0892b34a" and "08f5eb6fd73f267ba0cb4edcbe652cf79d1c3be3" have entirely different histories.

2 changed files with 3 additions and 2 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(17))
languageVersion.set(JavaLanguageVersion.of(21))
}
}
application {
// Define the main class for the application.
mainClass.set("gui.XL")
mainClass.set("xl.App")
}
tasks.named<Test>("test") {

View file

@ -3,6 +3,7 @@ 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: