maven/maven-wrapper/README.md

155 lines
5.2 KiB
Markdown
Raw Normal View History

2015-04-03 15:18:39 -04:00
# Maven Wrapper
2013-03-04 11:23:45 -05:00
2017-04-24 15:14:09 -04:00
The Maven Wrapper is an easy way to ensure a user of your Maven build has everything necessary to run your Maven build.
Why might this be necessary? Maven to date has been very stable for users, is available on most systems or is easy to
procure: but with many of the recent changes in Maven it will be easier for users to have a fully encapsulated build
setup provided by the project. With the Maven Wrapper this is very easy to do and it's a great idea borrowed from Gradle.
2013-03-04 11:24:48 -05:00
2017-04-24 15:14:09 -04:00
The easiest way to setup the Maven Wrapper for your project is to use the [Takari Maven Plugin][1] with its provided
`wrapper` goal. To add or update all the necessary Maven Wrapper files to your project execute the following command:
2013-03-04 11:24:48 -05:00
2015-04-03 15:18:39 -04:00
```
mvn -N io.takari:maven:wrapper
```
2013-03-04 11:24:48 -05:00
2015-08-19 23:25:01 -04:00
Normally you instruct users to run the `mvn` command like the following:
2013-03-04 11:24:48 -05:00
2015-04-03 15:18:39 -04:00
```
$ mvn clean install
```
But now, with a Maven Wrapper setup, you can instruct users to run wrapper scripts:
2015-04-03 15:18:39 -04:00
```
$ ./mvnw clean install
```
or
```
$ ./mvnw.cmd clean install
```
2017-04-24 15:14:09 -04:00
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 downloaded for the user first.
2015-04-03 15:18:39 -04:00
2017-04-17 17:06:44 -04:00
## Supported Systems
The wrapper should work on various operating systems including
* Linux (numerous versions, tested on Ubuntu and CentOS)
2018-11-21 13:25:26 -05:00
* OSX / macOS
2017-04-17 17:06:44 -04:00
* Windows (various newer versions)
* Solaris (10 and 11)
2017-04-17 17:58:21 -04:00
For all those *nix operating systems, various shells should work including
2017-04-17 17:06:44 -04:00
2017-04-17 17:58:21 -04:00
* sh
2017-04-17 17:06:44 -04:00
* bash
* dash
* zsh
2017-04-17 17:58:21 -04:00
In terms of Apache Maven versions itself, the wrapper should work with any Maven 3.x version and it defaults to the
latest release - currently 3.6.0. We do NOT plan to support the deprecated, EOL'ed Maven 2.x.
2017-04-04 15:49:36 -04:00
2017-04-21 23:51:39 -04:00
The maven-wrapper itself is compiled to work with Java 5. The Takari Maven Plugin for installation however uses Java 7.
Once the wrapper is installed with the plugin you should be able to use the wrapper on the project with Java 5 and up.
This is however not really tested by the committers.
2017-04-04 15:49:36 -04:00
## Changes
Please check out the [changelog](./CHANGELOG.md) for more information about our releases.
## Verbose Mode
The wrapper supports a verbose mode in which it outputs further information. It
is activated by setting the MVNW_VERBOSE environment variable to `true`.
By default it is off.
2018-02-19 22:52:13 -05:00
## Usage without Binary JAR
By default, the Maven Wrapper JAR archive is added to the using project as small
binary file `.mvn/wrapper/maven-wrapper.jar`. It is used to bootstrap the download and
invocation of Maven from the wrapper shell scripts.
If your project is not allowed to contain binary files like this, you can
configure your version control system to exclude checkin/commit of the wrapper
jar.
If the JAR is not found to be available by the scripts they will attempt to
download the file from the URL specified in
`.mvn/wrapper/maven-wrapper.properties` under `wrapperUrl` and put it in place. The
download is attempted via curl, wget and, as last resort, by compiling the
`./mvn/wrapper/MavenWrapperDownloader.java` file and executing the resulting class.
If your Maven repository is password protected you can specify your username via the
environment variable `MVNW_USERNAME` and the password via the environment
variable `MVNW_PASSWORD`.
2018-08-20 08:29:24 -04:00
## Using a Different Version of Maven
To switch the version of Maven used to build a project you can initialize it using
```
mvn -N io.takari:maven:wrapper -Dmaven=3.3.3
```
2017-04-24 15:14:09 -04:00
which works for any version except snapshots. Once you have a wrapper you can change its version by setting the
`distributionUrl` in `.mvn/wrapper/maven-wrapper.properties`, e.g.
```
2018-12-18 00:12:38 -05:00
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.5.4/apache-maven-3.5.4-bin.zip
```
## Using Basic Authentication for Distribution download
To download Maven from a location that requires Basic Authentication you have 2 options:
1. Set the environment variables MVNW_USERNAME and MVNW_PASSWORD
or
2. add user and password to the distributionUrl like that:
`distributionUrl=https://username:password@<yourserver>/maven2/org/apache/maven/apache-maven/3.2.1/apache-maven-3.2.1-bin.zip`
[1]: https://github.com/takari/takari-maven-plugin
2018-02-20 00:21:48 -05:00
2018-12-18 01:00:36 -05:00
## Specifying Maven Distribution Base Path
This is a feature of Maven itself and the wrapper just happens to take it into
account. Simply set `MAVEN_USER_HOME` to the desired path and the wrapper uses
it as the base of the Maven distro installation.
See https://www.lewuathe.com/maven-wrapper-home.html and
https://github.com/takari/maven-wrapper/issues/17
2018-02-20 00:21:48 -05:00
## Developing and Releasing
To test Maven wrapper usage:
2019-02-18 16:37:50 -05:00
- build the maven-wrapper as snapshot version
- update version in takari-maven-plugin
- build takari-maven-plugin
- use on test project with takari-maven-plugin version
```
2019-02-19 00:28:02 -05:00
mvn -N -X io.takari:maven:0.7.0-SNAPSHOT:wrapper
2019-02-18 16:37:50 -05:00
```
2018-02-20 00:21:48 -05:00
For release
- make sure version in mvnw files, MavenWrapperDownloader.java and config files
and pom files is new upcoming release
2018-02-20 00:21:48 -05:00
- cut maven release with usual release plugin usage
- update maven plugin to release version
- release it as well
2018-12-18 00:12:38 -05:00
Updating Maven version:
- update URL in maven-wrapper/.mvn/wrapper/maven-wrapper.properties
- updated maven parameter in takari-maven-plugin WrapperMojo