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 7300f759cd57f118c7f23e24e398bd6ef85aecbc Author: Juan Pablo Santos RodrÃguez <[email protected]> AuthorDate: Mon Nov 15 14:22:52 2021 +0100 Update maven cheatsheet --- mvn_cheat-sheet.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mvn_cheat-sheet.md b/mvn_cheat-sheet.md index aadeb1f..8feb979 100644 --- a/mvn_cheat-sheet.md +++ b/mvn_cheat-sheet.md @@ -35,7 +35,7 @@ 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-maven3-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 | @@ -51,7 +51,6 @@ under the License. | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | | mvn apache-rat:check | creates an Apache RAT report. See: http://creadur.apache.org/rat/apache-rat-plugin/plugin-info.html | | mvn cobertura:cobertura | generates a cobertura maven report. See: http://mojo.codehaus.org/cobertura-maven-plugin/usage.html | -| mvn javadoc:javadoc | creates javadocs; if graphviz binaries (www.graphviz.org) are found on $PATH, the javadocs will display | -| | some UML class/package level diagrams | -| mvn javadoc:javadoc -Djdk.javadoc.doclet.version=2.0.14 | same as above, but with JDK >= 9 | +| mvn javadoc:javadoc | creates javadocs adding some UML class/package level diagrams (requires JDK<= 8) | +| mvn javadoc:javadoc -Djdk.javadoc.doclet.version=2.0.15 | same as above, but with JDK >= 9 | | mvn sonar:sonar | generates a Sonar report. Expects a Sonar server running at http://localhost:9000/ |
