Set gradle to rerun tasks
This commit is contained in:
parent
a6dba79d9d
commit
e7e8979128
1 changed files with 8 additions and 2 deletions
10
Justfile
10
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"
|
||||
watchexec -c -w app/src "just test && just run"
|
||||
|
||||
watchdoc:
|
||||
watchexec -c -w app/src "just doc"
|
||||
|
|
Loading…
Reference in a new issue