Set gradle to rerun tasks
This commit is contained in:
parent
a6dba79d9d
commit
e7e8979128
1 changed files with 8 additions and 2 deletions
8
Justfile
8
Justfile
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue