mvn: simplify skip unit tests (#6448)

This commit is contained in:
Nicolas Kosinski 2021-09-01 18:39:12 +02:00 committed by GitHub
parent 9d3781c328
commit 449267ef13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
- Criar um artefato de distribuição sem executar testes unitários:
`mvn package -Dmaven.test.skip=true`
`mvn package -DskipTests`
- Instalar um artefato gerado em um repositório local:

View File

@ -14,7 +14,7 @@
- 编译和打包,跳过单元测试:
`mvn package -Dmaven.test.skip=true`
`mvn package -DskipTests`
- 在本地 maven 存储库中安装构建的包(这也会调用 compile 和 package 命令):

View File

@ -14,7 +14,7 @@
- Compile and package, skipping unit tests:
`mvn package -Dmaven.test.skip=true`
`mvn package -DskipTests`
- Install the built package in local maven repository. (This will invoke the compile and package commands too):