You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/07/06 16:32:44 UTC

[maven-wrapper] branch master updated: [MWRAPPER-74] - Fix default distribution type documentation on maven site.

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

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-wrapper.git


The following commit(s) were added to refs/heads/master by this push:
     new bb64bc8  [MWRAPPER-74] - Fix default distribution type documentation on maven site.
bb64bc8 is described below

commit bb64bc8af41f86d715e14225dbc630e61a0cfe6a
Author: Harald Albers <gi...@albersweb.de>
AuthorDate: Wed Jul 6 13:31:36 2022 +0200

    [MWRAPPER-74] - Fix default distribution type documentation on maven site.
    
    Signed-off-by: Harald Albers <gi...@albersweb.de>
---
 maven-wrapper-plugin/src/site/markdown/usage.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/maven-wrapper-plugin/src/site/markdown/usage.md b/maven-wrapper-plugin/src/site/markdown/usage.md
index 20df6bf..35b110d 100644
--- a/maven-wrapper-plugin/src/site/markdown/usage.md
+++ b/maven-wrapper-plugin/src/site/markdown/usage.md
@@ -34,10 +34,10 @@ Apache Maven Wrapper Distribution Types
 
 There are 3 types available:
 
-- **script** _(default)_: With this type the scripts will try to download the scripts via wget or curl in case of Unix based system, or use Powershell in case of Windows
+- **script**: With this type the scripts will try to download the scripts via wget or curl in case of Unix based system, or use Powershell in case of Windows
 
 
-- **bin**: With this type the maven-wrapper jar is already available in the `.mvn/wrapper` folder, so you don't have to rely on wget/curl or Powershell 
+- **bin** _(default)_: With this type the maven-wrapper jar is already available in the `.mvn/wrapper` folder, so you don't have to rely on wget/curl or Powershell 
 The downside is that the project will contain a binary file in the source control management system.
 
 - **source**: Since Maven already requires Java to run, why not compile and run a classfile to download the maven-wrapper jar?