You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ju...@apache.org on 2020/11/29 21:54:30 UTC

[jspwiki] 04/11: minor edits

This is an automated email from the ASF dual-hosted git repository.

juanpablo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jspwiki.git

commit 14703a5cfa871ef36da19967624f7a71fde95acd
Author: juanpablo <ju...@apache.org>
AuthorDate: Sun Nov 29 14:27:45 2020 +0100

    minor edits
---
 UPGRADING          | 2 +-
 mvn_cheat-sheet.md | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/UPGRADING b/UPGRADING
index 3a9e3bf..590e5c0 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -1,5 +1,5 @@
 
-Apache JSPWiki 2.11.0-incubating - Upgrading Notes
+Apache JSPWiki 2.11.0 - Upgrading Notes
 ==================================================
 
     Licensed to the Apache Software Foundation (ASF) under one
diff --git a/mvn_cheat-sheet.md b/mvn_cheat-sheet.md
index 19404e6..f41eba8 100644
--- a/mvn_cheat-sheet.md
+++ b/mvn_cheat-sheet.md
@@ -35,14 +35,13 @@ under the License.
 | mvn test -Dtest=JSPWikiMarkupParserTest                           | run just a single test class                                                                                              |
 | mvn test -Dtest=JSPWikiMarkupParserTest#testHeadingHyperlinks3    | run just a single test within a test class                                                                                |
 | mvn test -Dtest=TestClassName#methodName -Dmaven.surefire.debug   | debug a test in Eclipse or IDEA to see why it's failing (see http://www.jroller.com/gmazza/entry/jpa_and_junit#debugging) |
-| mvn org.codehaus.cargo:cargo-maven2-plugin:run                    | (from main war module) starts JSPWiki on a Tomcat9 instance at http://localhost:8080/JSPWiki with an attached debugger    |
-|                                                                   | on port 5005                                                                                                              |
+| mvn org.codehaus.cargo:cargo-maven2-plugin:run                    | (from main war module) starts JSPWiki on a Tomcat9 instance at http://localhost:8080/JSPWiki with an attached debugger on port 5005|
 | mvn clean deploy -Papache-release -Dgpg.passphrase=<passphrase>   | deploys generated artifact to a repository. If -Dgpg.passphrase is not given, expects a gpg-agent running                 |
 | mvn clean install -Pintegration-tests                             | performs a build, enabling functional tests execution (best run from the jspwiki-it-tests folder)                         |
 | mvn wro4j:run -Dminimize=true                                     | merge & compress js & css files                                                                                           |
 | mvn wro4j:run -Dminimize=false                                    | only merge the js & css files  (no compression)                                                                           |
 | mvn clean install -Dmaven.test.skip -Dminimize=false              | performs a build, skipping the tests and skip compression                                                                 |
-| mvn clean install -Dgenerate-native-launchers=true                | performs a build, regenerating the native executables on the portable build                                               |
+| mvn clean install -Dgenerate-native-launchers=true                | (from portable module) performs a build, regenerating the native executables on the portable build                                               |
 
 
 # 3. Reports Specific