An Apache Maven plugin for mise, a universal tooling version manager.
After installing mise, you can install this plugin by running the following command:
mise plugin install maven
You can then install a default version of maven like this:
mise use -g maven@3
The above command will instruct mise-maven to always use the latest version of Maven 3 by default.
You can install a specific version of Maven like this:
mise install [email protected]
and switch versions like this:
mise use [email protected]
This will create a new entry in the .mise.toml file at your repository's root.
If you work in a team that uses SDKMan or mvnvm to manage a project's supported
maven version, mise-maven also supports reading these files. If you already have
the version of maven installed, mvn
should automatically be configured to use
the version specified in the legacy configuration file. If you see an error
regarding the version of maven not being installed, simply run:
mise install maven
Before contributing ensure all dependencies (and your contribution) is licensed with an open-source license compatible with the Apache 2.0 license. Add information about your intellectual property rights to the NOTICE file, as well as any dependencies or third-party code used to create your contribution. The LICENSE file should not be modified.
mise-maven is currently integrated against the following operating systems:
- Linux
- macOS
To contribute to the plugin's development, first you will need to make a
GitHub fork of the mise-maven repository, and then clone into it using
the following command (replace <your-github-username>
with the name of the
account used to create the fork:
git clone --recurse-submodules [email protected]:<your-github-username>/mise-maven.git
To test the plugin, you will need to run the following command from within the project's root directory:
./tests/run-all.sh
Assuming you have correctly configured your environment, this will result in the unit test suite running and displaying a successful result.
To use the development checkout with mise, run the following commands:
# If you are already using mise-maven or another maven plugin for mise you
# will need to run:
mise plugin uninstall maven
cd <PROJECT DIRECTORY>
mise plugin link maven $PWD
Any runtime dependencies required by mise-maven to operate correctly when used by an end-user should be directly bundled into the source code. Dependencies used for development or testing purposes only may be added as git submodules or configured through mise.
All contributions are licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.