mirror of https://github.com/apache/maven.git
Add a note about using the windows script
This commit is contained in:
parent
00c691df85
commit
8b5a696806
|
@ -8,18 +8,24 @@ The easiest way to setup the Maven Wrapper for your project is to use the [Takar
|
|||
mvn -N io.takari:maven:wrapper
|
||||
```
|
||||
|
||||
Normally you might tell users to use the normal `mvn` command like the following:
|
||||
Normally you instruct user to run the `mvn` command like the following:
|
||||
|
||||
```
|
||||
$ mvn clean install
|
||||
```
|
||||
|
||||
But now, with a Maven Wrapper setup, you can instruct users to run the following instead:
|
||||
But now, with a Maven Wrapper setup, you can instruct users to run wrapper scripts:
|
||||
|
||||
```
|
||||
$ ./mvnw clean install
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```
|
||||
$ ./mvnw.bat clean install
|
||||
```
|
||||
|
||||
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 `.mvn/wrapper/maven-wrapper.properties` it will be downloaed for the user first.
|
||||
|
||||
[1]: https://github.com/takari/takari-maven-plugin
|
Loading…
Reference in New Issue