Set gradle to rerun tasks

This commit is contained in:
Imbus 2023-12-10 14:54:34 +01:00
parent a6dba79d9d
commit e7e8979128

View file

@ -2,10 +2,16 @@ run:
./gradlew run ./gradlew run
test: test:
./gradlew test ./gradlew test --rerun-tasks
doc:
./gradlew javadoc --rerun-tasks
clean: clean:
fd -td -I build -x rm -r fd -td -I build -x rm -r
watch: watch:
watchexec -c -w app/src "just test && just run" watchexec -c -w app/src "just test && just run"
watchdoc:
watchexec -c -w app/src "just doc"