I think there is none so far, as your research showed. git already adapted it but maven did not I think we can safely assume if both the official documentation and winget queries do not lead to a result that there is no formula yet.
Answer from Xanlantos on Stack OverflowApache Maven
maven.apache.org › guides › getting-started › windows-prerequisites.html
Maven on Windows – Maven
Maven is a command-line tool for building Java (and other) programs. The Maven project provides a simple ZIP file containing a precompiled version of Maven for your convenience. There is no installer.
Videos
02:16
How to Install Maven on Windows 11 - YouTube
14:33
How To Install Maven In Windows 11 | Maven Installation and Setup ...
06:42
How To Install Maven On Windows 11 | Windows 10 - YouTube
04:17
How to install Maven on Windows #apache #jenkins #java #gradle ...
03:54
How to Install Apache Maven on Windows 10/11 [ 2025 Update ] Apache ...
GitHub
github.com › microsoft › winget-pkgs › issues › 65391
[Package Request]: Apache Maven · Issue #65391 · microsoft/winget-pkgs
July 7, 2022 - Package Version: 3.8.6 Installer URL: https://dlcdn.apache.org/maven/maven-3/3.8.6/binaries/apache-maven-3.8.6-bin.zip
Author microsoft
Apache Maven
maven.apache.org › install.html
Installation - Apache Maven
2 days ago - Apache Maven can be installed by most package managers, or manually by downloading the archive and adding it to your path.
GitHub
github.com › apache › maven-mvnd › issues › 892
Feature request: install with winget · Issue #892 · apache/maven-mvnd
October 17, 2023 - As a Java developer on windows I would like to be able to install maven-mvnd using winget.
Author apache
StackTips
stacktips.com › courses › maven-for-beginners › installing-and-configuring-maven
Getting Started with Maven - Beginner's Guide | StackTips
July 28, 2025 - There are several choices for installing Java on Windows OS; we can install using the graphical PKG and MSI installers, or through package managers WinGet, Homebrew, apt, and yum. Referee the official refer the official Installation guide. https://learn.microsoft.com/en-us/java/openjdk/install · To ensure that Java is installed correctly, open a Command Prompt or PowerShell window and enter the following command. ... This section will drive you thought the steps to install and configure Maven on Windows Operating System.
Medium
medium.com › @gauravshah97 › how-to-install-maven-on-windows-39ff317e40cf
How to Install Maven on Windows. Maven is a popular open-source build… | by Gaurav Shah | Medium
April 13, 2024 - Maven is a popular open-source build tool developed by The Apache Sofware Foundation to build, publish, and deploy several projects simultaneously for better project management. The tool allows developers to build and document the lifecycle framework. ... Before installing Maven, ensure you have Java installed and ready to use in your machine with the JAVA_HOME environment variable set up.
Microsoft
winget.run › pkg › tantowi › maven
Download and install Apache Maven with winget
winget install -e --id tantowi.maven · Maven is a build automation tool used primarily for Java projects, but can also be used for other languages. mavenjavaapachenetbeans · Apache License, Version 2.0 ·
Microsoft
winget.run › pkg › Apache
Download and install packages by The Apache Software Foundation with winget
View packages by The Apache Software Foundation on winget.run
Winget GUI
wingetgui.com › apps › tantowi-maven
tantowi.maven 3.6.3 - wingetgui.com
Maven is a build automation tool used primarily for Java projects, but can also be used for other languages.
Jreleaser
jreleaser.org › guide › latest › reference › packagers › winget.html
Winget :: JReleaser
# Valid values are [`INSTALL`, `UNINSTALL_PREVIOUS`]. # Defaults to `INSTALL`. # installer.upgradeBehavior = "INSTALL" # Command or alias to run the package. # Defaults to `{{distributionExecutable}}`. # installer.command = "app" # [packagers.winget.installer.dependencies] # List of Windows feature dependencies.
YouTube
youtube.com › watch
How to install Maven in Windows 11 (Updated 2025) - YouTube
In this video, learn how to install Maven on Windows 11. Follow the below steps:Step 1: Download and Install JavaStep 2: Set the Java bin path and JAVA_HOMES...
Published May 13, 2025
Aem
aem.design › blog › 2022 › 05 › 22 › setup-your-windows-devbox-like-a-pro💻🔩🔧
Setup Your Windows Devbox Like a Pro 💻🔩🔧 - AEM.Design
February 25, 2025 - winget install -e --id Microsoft.PowerShell winget install -e --id Microsoft.WindowsTerminal winget install -e --id Microsoft.VisualStudioCode winget install -e --id JetBrains.IntelliJIDEA.Community winget install -e --id Microsoft.Git winget install -e --id Oracle.JavaRuntimeEnvironment winget install -e --id ojdkbuild.openjdk.11.jdk winget install -e --id Oracle.JDK.17 winget install -e --id SublimeHQ.SublimeText.4 winget install -e --id Python.Python.3.10 winget install -e --id CoreyButler.NVMforWindow --source winget winget install -e --id GnuPG.Gpg4win winget install -e --id Docker.DockerDesktop curl https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.zip -o apache-maven-3.9.9-bin.zip unzip apache-maven-3.9.9-bin.zip -d c:\apps\apache\ Once you have these tools set up, you should be able to contribute to most code projects.
Top answer 1 of 6
16
Download Maven at here.
Unzip, for example:
C:\tools\Press Windows+R, type
systempropertiesadvanced, press EnterSet environment:
MAVEN_HOME=C:\tools
Add to PATH environment variable: ;%MAVEN_HOME%\bin
Close all
Call
cmd, run command:mvn -v
2 of 6
13
- Open PowerShell or terminal and run
java -versionto make sure Java is installed

- Go to Apache Maven's download page and, if you're using Maven just as a tool, download the "Binary zip archive" from the link

- Place the downloaded file in the folder where you have all your Java related things (in my case,
C:\Program Files\Java)

- Right click in that file and "Extract here". Then, delete the .zip file.

if we open that new folder we should have something like

- Go to advanced system settings (by searching for that term or right clicking in "This PC" > Properties) and "Environment variables".

- Define a new System Environment Variable by clicking New and

Variable Name: M2_HOME
VARIABLE VALUE: C:\Program Files\Java\apache-maven-3.6.3
- Append the bin subdirectory of the folder
C:\Program Files\Java\apache-maven-3.6.3into the PATH variable

- Restart your computer and then run
mvn --version.

That's it, you have now Maven installed in Windows 10.