Browse Source

RELEASE.md: simplify '-DskipTests' command docs

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_21
Alexander Kriegisch 6 months ago
parent
commit
8bed465e26
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      docs/developer/RELEASE.md

+ 3
- 3
docs/developer/RELEASE.md View File

mvn clean deploy mvn clean deploy


# OR: If you ran tests locally before, or the CI workflow on GitHub did # 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 # OR: Speed it up some more, skipping documentation generation. Depending on
# your shell, you might not have to escape the '!' character for deactivating # your shell, you might not have to escape the '!' character for deactivating
# the 'create-docs' profile. On a (Git) Bash you have to, though. # 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 This only deploys the main artifacts
# - Maven Javadoc plugin # - Maven Javadoc plugin
# - Nexus Staging Maven plugin # - Nexus Staging Maven plugin
# The 'create-docs profile will make sure to generate AspectJ docs to be included in the installer. # 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 mvn -P release,create-docs clean deploy
``` ```



Loading…
Cancel
Save