more details about what happens for users

This commit is contained in:
Manfred Moser 2019-04-16 20:50:24 -07:00 committed by rfscholte
parent d972c267bb
commit cccd8b0702
1 changed files with 6 additions and 2 deletions

View File

@ -21,7 +21,8 @@ mvn -N io.takari:maven:0.7.6:wrapper
> some users this seem to result in usage of an old version of the wrapper and > some users this seem to result in usage of an old version of the wrapper and
> therefore installation of older Maven defaults and so on. > therefore installation of older Maven defaults and so on.
Normally you instruct users to run the `mvn` command like the following: Normally you instruct users to install a specific version of Apache Maven, put
it on the PATH and then run the `mvn` command like the following:
```bash ```bash
mvn clean install mvn clean install
@ -43,7 +44,10 @@ mvnw.cmd clean install
A normal Maven build will be executed with the one important change that if the A normal Maven build will be executed with the one important change that if the
user doesn't have the necessary version of Maven specified in user doesn't have the necessary version of Maven specified in
`.mvn/wrapper/maven-wrapper.properties` it will be downloaded for the user `.mvn/wrapper/maven-wrapper.properties` it will be downloaded for the user
first. first, installed and then used.
Subsequent uses of `mvn`/`mvnw.cmd` use the previously downloaded, specific
version as needed.
## Supported Systems ## Supported Systems