We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336a3f9 commit 9d68a1eCopy full SHA for 9d68a1e
mise.toml
@@ -1,3 +1,27 @@
1
[tools]
2
java = "adoptopenjdk-8.0.442"
3
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