From e7e897912890a7fba4e8be8585039bd3b1183757 Mon Sep 17 00:00:00 2001 From: Imbus Date: Sun, 10 Dec 2023 14:54:34 +0100 Subject: [PATCH] Set gradle to rerun tasks --- Justfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index 6ef3ad1..675b9de 100644 --- a/Justfile +++ b/Justfile @@ -2,10 +2,16 @@ run: ./gradlew run test: - ./gradlew test + ./gradlew test --rerun-tasks + +doc: + ./gradlew javadoc --rerun-tasks clean: fd -td -I build -x rm -r watch: - watchexec -c -w app/src "just test && just run" \ No newline at end of file + watchexec -c -w app/src "just test && just run" + +watchdoc: + watchexec -c -w app/src "just doc"