Skip to content

Commit 9d68a1e

Browse files
committed
chore: add some mise tasks to streamline local development
- mise boot - mise fast - mise clean See `mise task ls` output. Relate to #1748 [skip ci]
1 parent 336a3f9 commit 9d68a1e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

mise.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
11
[tools]
22
java = "adoptopenjdk-8.0.442"
33
maven = "3.6.3"
4+
5+
#
6+
# Project tasks
7+
#
8+
# See for details:
9+
# - https://mise.jdx.dev/tasks/
10+
# - https://mise.jdx.dev/tasks/toml-tasks.html
11+
# - https://mise.jdx.dev/tasks/file-tasks.html
12+
# - https://mise.jdx.dev/tasks/running-tasks.html
13+
# - https://mise.jdx.dev/tasks/task-configuration.html
14+
#
15+
16+
[tasks.clean]
17+
description = "Remove generated files"
18+
run = "mvn clean"
19+
20+
[tasks.boot]
21+
description = "Run application"
22+
run = "mvn spring-boot:run"
23+
alias = [ "run", "bootRun" ]
24+
25+
[tasks.fast]
26+
description = "Run application (but skips some checks)"
27+
run = "mvn spring-boot:run -Denforcer.skip=true -DskipMinify=true -Dmaven.resources.skip=true -Dmaven.test.skip=true"

0 commit comments

Comments
 (0)