aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2023-12-02 09:40:08 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2023-12-02 09:40:08 +0700
commit8bed465e2629faf8180825d33a14ecfa3f2edb8d (patch)
tree5bce6488669c31ed8866176e60cdb74e7a6d4c5c
parent52f52bdc22339fc4c8680780b7d1260de7c44591 (diff)
downloadaspectj-8bed465e2629faf8180825d33a14ecfa3f2edb8d.tar.gz
aspectj-8bed465e2629faf8180825d33a14ecfa3f2edb8d.zip
RELEASE.md: simplify '-DskipTests' command docs
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
-rw-r--r--docs/developer/RELEASE.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/developer/RELEASE.md b/docs/developer/RELEASE.md
index 1a758a15f..afc68d4f8 100644
--- a/docs/developer/RELEASE.md
+++ b/docs/developer/RELEASE.md
@@ -33,12 +33,12 @@ Assuming that you are currently working on version 1.9.8-SNAPSHOT, you simply ca
mvn clean deploy
# OR: If you ran tests locally before, or the CI workflow on GitHub did
-mvn -DskipTests=true clean deploy
+mvn -DskipTests clean deploy
# OR: Speed it up some more, skipping documentation generation. Depending on
# your shell, you might not have to escape the '!' character for deactivating
# the 'create-docs' profile. On a (Git) Bash you have to, though.
-mvn -P \!create-docs -DskipTests=true clean deploy
+mvn -P \!create-docs -DskipTests clean deploy
```
This only deploys the main artifacts
@@ -100,7 +100,7 @@ mvn versions:commit
# - Maven Javadoc plugin
# - Nexus Staging Maven plugin
# The 'create-docs profile will make sure to generate AspectJ docs to be included in the installer.
-# Optionally, use '-DskipTests=true', if you ran all tests before.
+# Optionally, use '-DskipTests', if you ran all tests before.
mvn -P release,create-docs clean deploy
```