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 346a303 commit afbf07bCopy full SHA for afbf07b
mise.toml
@@ -25,3 +25,16 @@ alias = [ "run", "bootRun" ]
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"
28
+
29
+[tasks.test]
30
+description = "Execute unit tests"
31
+run = "mvn test -Denforcer.skip=true -DskipMinify=true"
32
33
+[tasks.verify]
34
+description = "Execute integration tests"
35
+run = "mvn verify"
36
37
+[tasks.war]
38
+description = "Build WAR file"
39
+run = "mvn package -Denforcer.skip=true -Dmaven.test.skip=true"
40
+alias = "package"
0 commit comments