File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 11[tools ]
22java = " adoptopenjdk-8.0.442"
33maven = " 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"
You can’t perform that action at this time.
0 commit comments