Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

60,568

Downloads of v 20250531.113756.0:

47

Last Update:

31 May 2025

Package Maintainer(s):

Software Author(s):

  • The Apache Maven team

Tags:

apache maven maven-snapshot latest-maven maven-dev-build

Latest Apache Maven snapshot

  • 1
  • 2
  • 3

20250531.113756.0 | Updated: 31 May 2025

Downloads:

60,568

Downloads of v 20250531.113756.0:

47

Maintainer(s):

Software Author(s):

  • The Apache Maven team

Latest Apache Maven snapshot 20250531.113756.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by The Apache Maven team. The inclusion of The Apache Maven team trademark(s), if any, upon this webpage is solely to identify The Apache Maven team goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Latest Apache Maven snapshot, run the following command from the command line or from PowerShell:

>

To upgrade Latest Apache Maven snapshot, run the following command from the command line or from PowerShell:

>

To uninstall Latest Apache Maven snapshot, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade maven-snapshot -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade maven-snapshot -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install maven-snapshot
  win_chocolatey:
    name: maven-snapshot
    version: '20250531.113756.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'maven-snapshot' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '20250531.113756.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller maven-snapshot
{
    Name     = "maven-snapshot"
    Version  = "20250531.113756.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'maven-snapshot':
  ensure   => '20250531.113756.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 31 May 2025.

Description

This package installs the latest deployed Maven snapshot distribution from Apache's Nexus server.

Take care that these builds can be unstable!

Switching between existing Maven and Snapshot

This package will be installed next to an existing Maven installation. By uninstalling this package you will switch back to that Maven installation.

Example

> mvn -v
Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)
...
> choco install maven-snapshot -y
> refreshenv
> mvn -v
Apache Maven 4.0.0-alpha-1-SNAPSHOT (bb916d0784c7631866167928e4d0615df3317567)
...
> choco uninstall maven-snapshot -y
> refreshenv
> mvn -v
Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)
...

Have fun and reach out if you have any issues.


tools\chocolateyBeforeModify.ps1
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$installFolder = Join-Path $package "apache-maven"

Remove-Item $installFolder -Force -Recurse
tools\chocolateyinstall.ps1
# This function reads the registry key instead of the environment variable to avoid variable expansion.
function IsM2HomeBinInPath ([string]$pathToAdd) {
	try {
		$regKey = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey('SYSTEM\CurrentControlSet\Control\Session Manager\Environment', $true)
		$unexpandedPath = $regKey.GetValue('Path', $null, 'DoNotExpandEnvironmentNames')

		foreach ($path in "$unexpandedPath".split(';')) {
			if ($pathToAdd -ieq $path -or "$pathToAdd\" -ieq $path) {
				return $true
			}
		}
		return $false;
	}
	finally {
		$regKey.Dispose()
	}
}

$checksum = "1f55a9dc275fb7277e5fce37feb906c0de060ed40223cf7e74e8b97444b1a8a0"
$url = "https://repository.apache.org/content/groups/snapshots/org/apache/maven/apache-maven/4.0.0-rc-4-SNAPSHOT/apache-maven-4.0.0-rc-4-20250531.113756-116-bin.zip"
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$m2_home = Join-Path $package "apache-maven-apache-maven-4.0.0-rc-4-SNAPSHOT"
$pathToAdd = Join-Path '%M2_HOME%' 'bin'
$m2_repo = Join-Path $env:USERPROFILE '.m2'

Install-ChocolateyZipPackage `
    -PackageName 'Maven Snapshot' `
    -Url $url `
    -Checksum $checksum `
    -ChecksumType 'sha256' `
    -UnzipLocation $package

# install ~/.m2 folder if it does not exist yet
New-Item -Path $m2_repo -type directory -Force

# save the original M2_HOME in order to switch back to the latest maven when maven-snapshot is uninstalled
$current_m2_home = $env:M2_HOME;
$orig_m2_home = $env:ORIG_M2_HOME;
if (![string]::IsNullOrEmpty($current_m2_home) -and [string]::IsNullOrEmpty($orig_m2_home)) {
	Install-ChocolateyEnvironmentVariable -VariableName "ORIG_M2_HOME" -VariableValue $current_m2_home -VariableType Machine
}

# Overwrite M2_HOME to maven-latest
Install-ChocolateyEnvironmentVariable -VariableName "M2_HOME" -VariableValue $m2_home -VariableType Machine

# Add "%M2_HOME%\bin in %PATH% if it's not yet there
$alreadyInPath = IsM2HomeBinInPath($pathToAdd)
if ($alreadyInPath -eq $false) {
	Install-ChocolateyPath -PathToInstall $pathToAdd -PathType 'Machine'
}
tools\chocolateyUninstall.ps1
# restore original maven M2_HOME if present
$orig_m2_home = $env:ORIG_M2_HOME;
if (![string]::IsNullOrEmpty($orig_m2_home)) {
	Install-ChocolateyEnvironmentVariable -VariableName "M2_HOME" -VariableValue $orig_m2_home -VariableType Machine
	Install-ChocolateyEnvironmentVariable -VariableName "ORIG_M2_HOME" -VariableValue $null -VariableType Machine
} else {
	Install-ChocolateyEnvironmentVariable -VariableName "M2_HOME" -VariableValue $null -VariableType Machine
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Latest Apache Maven snapshot 20250531.75013.0 15 Saturday, May 31, 2025 Approved
Latest Apache Maven snapshot 20250530.151829.0 20 Friday, May 30, 2025 Approved
Latest Apache Maven snapshot 20250529.214740.0 27 Thursday, May 29, 2025 Approved
Latest Apache Maven snapshot 20250528.144929.0 29 Wednesday, May 28, 2025 Approved
Latest Apache Maven snapshot 20250528.125519.0 15 Wednesday, May 28, 2025 Approved
Latest Apache Maven snapshot 20250528.111049.0 7 Wednesday, May 28, 2025 Approved
Latest Apache Maven snapshot 20250527.143351.0 49 Tuesday, May 27, 2025 Approved
Latest Apache Maven snapshot 20250523.151135.0 40 Friday, May 23, 2025 Approved
Latest Apache Maven snapshot 20250523.112121.0 25 Friday, May 23, 2025 Approved
Latest Apache Maven snapshot 20250522.211735.0 32 Thursday, May 22, 2025 Approved
Latest Apache Maven snapshot 20250520.132857.0 37 Tuesday, May 20, 2025 Approved
Latest Apache Maven snapshot 20250520.122339.0 8 Tuesday, May 20, 2025 Approved
Latest Apache Maven snapshot 20250519.190002.0 35 Monday, May 19, 2025 Approved
Latest Apache Maven snapshot 20250519.170354.0 11 Monday, May 19, 2025 Approved
Latest Apache Maven snapshot 20250518.94333.0 17 Sunday, May 18, 2025 Approved
Latest Apache Maven snapshot 20250515.173222.0 48 Thursday, May 15, 2025 Approved
Latest Apache Maven snapshot 20250513.113532.0 41 Tuesday, May 13, 2025 Approved
Latest Apache Maven snapshot 20250512.194404.0 30 Monday, May 12, 2025 Approved
Latest Apache Maven snapshot 20250512.103009.0 17 Monday, May 12, 2025 Approved
Latest Apache Maven snapshot 20250510.204154.0 36 Saturday, May 10, 2025 Approved
Latest Apache Maven snapshot 20250509.204625.0 24 Friday, May 9, 2025 Approved
Latest Apache Maven snapshot 20250509.163008.0 14 Friday, May 9, 2025 Approved
Latest Apache Maven snapshot 20250509.124914.0 21 Friday, May 9, 2025 Approved
Latest Apache Maven snapshot 20250507.171209.0 38 Wednesday, May 7, 2025 Approved
Latest Apache Maven snapshot 20250505.172612.0 40 Monday, May 5, 2025 Approved
Latest Apache Maven snapshot 20250505.160751.0 19 Monday, May 5, 2025 Approved
Latest Apache Maven snapshot 20250505.135515.0 20 Monday, May 5, 2025 Approved
Latest Apache Maven snapshot 20250505.121539.0 13 Monday, May 5, 2025 Approved
Latest Apache Maven snapshot 20250503.214221.0 41 Saturday, May 3, 2025 Approved
Latest Apache Maven snapshot 20250501.234102.0 34 Friday, May 2, 2025 Approved
Latest Apache Maven snapshot 20250430.164814.0 31 Wednesday, April 30, 2025 Approved
Latest Apache Maven snapshot 20250430.122824.0 22 Wednesday, April 30, 2025 Approved
Latest Apache Maven snapshot 20250429.131346.0 27 Tuesday, April 29, 2025 Approved
Latest Apache Maven snapshot 20250422.224805.0 49 Tuesday, April 22, 2025 Approved
Latest Apache Maven snapshot 20250422.135716.0 19 Tuesday, April 22, 2025 Approved
Latest Apache Maven snapshot 20250419.221526.0 40 Saturday, April 19, 2025 Approved
Latest Apache Maven snapshot 20250419.192013.0 21 Saturday, April 19, 2025 Approved
Latest Apache Maven snapshot 20250416.101530.0 39 Wednesday, April 16, 2025 Approved
Latest Apache Maven snapshot 20250414.201258.0 41 Monday, April 14, 2025 Approved
Latest Apache Maven snapshot 20250414.141729.0 22 Monday, April 14, 2025 Approved
Latest Apache Maven snapshot 20250413.203213.0 37 Sunday, April 13, 2025 Approved
Latest Apache Maven snapshot 20250413.192958.0 18 Sunday, April 13, 2025 Approved
Latest Apache Maven snapshot 20250412.73934.0 35 Saturday, April 12, 2025 Approved
Latest Apache Maven snapshot 20250411.94741.0 26 Friday, April 11, 2025 Approved
Latest Apache Maven snapshot 20250407.152931.0 56 Monday, April 7, 2025 Approved
Latest Apache Maven snapshot 20250407.135748.0 34 Monday, April 7, 2025 Approved
Latest Apache Maven snapshot 20250405.171924.0 43 Saturday, April 5, 2025 Approved
Latest Apache Maven snapshot 20250405.154421.0 28 Saturday, April 5, 2025 Approved
Latest Apache Maven snapshot 20250405.123225.0 14 Saturday, April 5, 2025 Approved
Latest Apache Maven snapshot 20250405.121557.0 13 Saturday, April 5, 2025 Approved
Latest Apache Maven snapshot 20250404.115235.0 41 Friday, April 4, 2025 Approved
Latest Apache Maven snapshot 20250404.90757.0 19 Friday, April 4, 2025 Approved
Latest Apache Maven snapshot 20250404.11929.0 27 Friday, April 4, 2025 Approved
Latest Apache Maven snapshot 20250403.140238.0 42 Thursday, April 3, 2025 Approved
Latest Apache Maven snapshot 20250403.120217.0 24 Thursday, April 3, 2025 Approved
Latest Apache Maven snapshot 20250403.64554.0 31 Thursday, April 3, 2025 Approved
Latest Apache Maven snapshot 20250402.203554.0 42 Wednesday, April 2, 2025 Approved
Latest Apache Maven snapshot 20250402.190547.0 20 Wednesday, April 2, 2025 Approved
Latest Apache Maven snapshot 20250402.163640.0 27 Wednesday, April 2, 2025 Approved
Latest Apache Maven snapshot 20250402.140251.0 27 Wednesday, April 2, 2025 Approved
Latest Apache Maven snapshot 20250401.215021.0 37 Tuesday, April 1, 2025 Approved
Latest Apache Maven snapshot 20250401.92036.0 39 Tuesday, April 1, 2025 Approved
Latest Apache Maven snapshot 20250331.183214.0 32 Monday, March 31, 2025 Approved
Latest Apache Maven snapshot 20250331.142507.0 18 Monday, March 31, 2025 Approved
Latest Apache Maven snapshot 20250331.122504.0 23 Monday, March 31, 2025 Approved
Latest Apache Maven snapshot 20250331.72004.0 27 Monday, March 31, 2025 Approved
Latest Apache Maven snapshot 20250330.233855.0 21 Monday, March 31, 2025 Approved
Latest Apache Maven snapshot 20250330.212707.0 20 Sunday, March 30, 2025 Approved
Latest Apache Maven snapshot 20250330.201323.0 17 Sunday, March 30, 2025 Approved
Latest Apache Maven snapshot 20250330.143801.0 30 Sunday, March 30, 2025 Approved
Latest Apache Maven snapshot 20250328.164318.0 42 Friday, March 28, 2025 Approved
Latest Apache Maven snapshot 20250328.154933.0 25 Friday, March 28, 2025 Approved
Latest Apache Maven snapshot 20250328.130738.0 24 Friday, March 28, 2025 Approved
Latest Apache Maven snapshot 20250328.121505.0 14 Friday, March 28, 2025 Approved
Latest Apache Maven snapshot 20250328.95617.0 21 Friday, March 28, 2025 Approved
Latest Apache Maven snapshot 20250327.175525.0 30 Thursday, March 27, 2025 Approved
Latest Apache Maven snapshot 20250327.165327.0 20 Thursday, March 27, 2025 Approved
Latest Apache Maven snapshot 20250326.212145.0 33 Wednesday, March 26, 2025 Approved
Latest Apache Maven snapshot 20250326.201007.0 22 Wednesday, March 26, 2025 Approved
Latest Apache Maven snapshot 20250326.124816.0 32 Wednesday, March 26, 2025 Approved
Latest Apache Maven snapshot 20250326.115838.0 23 Wednesday, March 26, 2025 Approved
Latest Apache Maven snapshot 20250325.155534.0 51 Tuesday, March 25, 2025 Approved
Latest Apache Maven snapshot 20250325.103328.0 17 Tuesday, March 25, 2025 Approved
Latest Apache Maven snapshot 20250324.225059.0 41 Monday, March 24, 2025 Approved
Latest Apache Maven snapshot 20250324.194148.0 18 Monday, March 24, 2025 Approved
Latest Apache Maven snapshot 20250324.163251.0 17 Monday, March 24, 2025 Approved
Latest Apache Maven snapshot 20250324.145220.0 23 Monday, March 24, 2025 Approved
Latest Apache Maven snapshot 20250324.103829.0 16 Monday, March 24, 2025 Approved
Latest Apache Maven snapshot 20250321.135746.0 50 Friday, March 21, 2025 Approved
Latest Apache Maven snapshot 20250321.52340.0 22 Friday, March 21, 2025 Approved
Latest Apache Maven snapshot 20250320.95817.0 42 Thursday, March 20, 2025 Approved
Latest Apache Maven snapshot 20250319.145911.0 51 Wednesday, March 19, 2025 Approved
Latest Apache Maven snapshot 20250319.124802.0 25 Wednesday, March 19, 2025 Approved
Latest Apache Maven snapshot 20250319.93248.0 23 Wednesday, March 19, 2025 Approved
Latest Apache Maven snapshot 20250317.103642.0 48 Monday, March 17, 2025 Approved
Latest Apache Maven snapshot 20250315.91301.0 48 Saturday, March 15, 2025 Approved
Latest Apache Maven snapshot 20250313.85300.0 45 Thursday, March 13, 2025 Approved
Latest Apache Maven snapshot 20250313.63420.0 19 Thursday, March 13, 2025 Approved
Latest Apache Maven snapshot 20250228.132021.0 77 Friday, February 28, 2025 Approved
Latest Apache Maven snapshot 20250227.144406.0 45 Thursday, February 27, 2025 Approved
Latest Apache Maven snapshot 20250214.144859.0 95 Friday, February 14, 2025 Approved
Latest Apache Maven snapshot 20250214.134454.0 23 Friday, February 14, 2025 Approved
Latest Apache Maven snapshot 20250212.131848.0 233 Wednesday, February 12, 2025 Approved
Latest Apache Maven snapshot 20250208.181359.0 443 Saturday, February 8, 2025 Approved
Latest Apache Maven snapshot 20250208.173818.0 23 Saturday, February 8, 2025 Approved
Latest Apache Maven snapshot 20250129.161402.0 1051 Wednesday, January 29, 2025 Approved
Latest Apache Maven snapshot 20250129.114603.0 128 Wednesday, January 29, 2025 Approved
Latest Apache Maven snapshot 20250128.204836.0 28 Tuesday, January 28, 2025 Approved
Latest Apache Maven snapshot 20250108.170611.0 77 Wednesday, January 8, 2025 Approved
Latest Apache Maven snapshot 20241217.110751.0 77 Tuesday, December 17, 2024 Approved
Latest Apache Maven snapshot 20241122.151448.0 111 Friday, November 22, 2024 Approved
Latest Apache Maven snapshot 20241113.142745.0 84 Friday, November 15, 2024 Approved
Latest Apache Maven snapshot 20230608.134448 3766 Thursday, June 8, 2023 Approved
Latest Apache Maven snapshot 20230606.111149 142 Tuesday, June 6, 2023 Approved
Latest Apache Maven snapshot 20230605.084740 133 Monday, June 5, 2023 Approved
Latest Apache Maven snapshot 20230604.190407 109 Sunday, June 4, 2023 Approved
Latest Apache Maven snapshot 20230604.051128 102 Sunday, June 4, 2023 Approved
Latest Apache Maven snapshot 20230602.115904 141 Friday, June 2, 2023 Approved
Latest Apache Maven snapshot 20230601.170613 112 Thursday, June 1, 2023 Approved
Latest Apache Maven snapshot 20230601.170142 63 Thursday, June 1, 2023 Approved
Latest Apache Maven snapshot 20230601.152500 59 Thursday, June 1, 2023 Approved
Latest Apache Maven snapshot 20230531.135240 121 Wednesday, May 31, 2023 Approved
Latest Apache Maven snapshot 20230531.074109 90 Wednesday, May 31, 2023 Approved
Latest Apache Maven snapshot 20230526.162248 212 Friday, May 26, 2023 Approved
Latest Apache Maven snapshot 20230524.105059 163 Wednesday, May 24, 2023 Approved
Latest Apache Maven snapshot 20230524.065135 46 Wednesday, May 24, 2023 Approved
Latest Apache Maven snapshot 20230523.143651 137 Tuesday, May 23, 2023 Approved
Latest Apache Maven snapshot 20230523.085050 83 Tuesday, May 23, 2023 Approved
Latest Apache Maven snapshot 20230522.192001 117 Monday, May 22, 2023 Approved
Latest Apache Maven snapshot 20230519.160911 190 Friday, May 19, 2023 Approved
Latest Apache Maven snapshot 20230519.155020 66 Friday, May 19, 2023 Approved
Latest Apache Maven snapshot 20230517.051948 172 Wednesday, May 17, 2023 Approved
Latest Apache Maven snapshot 20230516.091109 120 Tuesday, May 16, 2023 Approved
Latest Apache Maven snapshot 20230516.085715 64 Tuesday, May 16, 2023 Approved
Latest Apache Maven snapshot 20230515.132440 124 Monday, May 15, 2023 Approved
Latest Apache Maven snapshot 20230511.170613 136 Sunday, May 14, 2023 Approved
Latest Apache Maven snapshot 20230508.090901 282 Monday, May 8, 2023 Approved
Latest Apache Maven snapshot 20230505.152149 172 Friday, May 5, 2023 Approved
Latest Apache Maven snapshot 20230505.131238 71 Friday, May 5, 2023 Approved
Latest Apache Maven snapshot 20230505.080058 67 Friday, May 5, 2023 Approved
Latest Apache Maven snapshot 20230502.183828 187 Tuesday, May 2, 2023 Approved
Latest Apache Maven snapshot 20230426.135359 244 Wednesday, April 26, 2023 Approved
Latest Apache Maven snapshot 20230421.192905 160 Friday, April 21, 2023 Approved
Latest Apache Maven snapshot 20230420.105843 128 Thursday, April 20, 2023 Approved
Latest Apache Maven snapshot 20230417.132123 140 Monday, April 17, 2023 Approved
Latest Apache Maven snapshot 20230417.122427 59 Monday, April 17, 2023 Approved
Latest Apache Maven snapshot 20230416.142757 125 Sunday, April 16, 2023 Approved
Latest Apache Maven snapshot 20230416.125402 64 Sunday, April 16, 2023 Approved
Latest Apache Maven snapshot 20230415.115904 90 Saturday, April 15, 2023 Approved
Latest Apache Maven snapshot 20230413.195449 119 Thursday, April 13, 2023 Approved
Latest Apache Maven snapshot 20230413.093527 81 Thursday, April 13, 2023 Approved
Latest Apache Maven snapshot 20230412.110916 113 Wednesday, April 12, 2023 Approved
Latest Apache Maven snapshot 20230412.102706 70 Wednesday, April 12, 2023 Approved
Latest Apache Maven snapshot 20230412.095631 59 Wednesday, April 12, 2023 Approved
Latest Apache Maven snapshot 20230406.085150 142 Thursday, April 6, 2023 Approved
Latest Apache Maven snapshot 20230401.015635 156 Saturday, April 1, 2023 Approved
Latest Apache Maven snapshot 20230327.172203 159 Monday, March 27, 2023 Approved
Latest Apache Maven snapshot 20230326.235846 129 Monday, March 27, 2023 Approved
Latest Apache Maven snapshot 20230323.103656 138 Thursday, March 23, 2023 Approved
Latest Apache Maven snapshot 20230323.053214 56 Thursday, March 23, 2023 Approved
Latest Apache Maven snapshot 20230319.201952 157 Sunday, March 19, 2023 Approved
Latest Apache Maven snapshot 20230318.102650 95 Saturday, March 18, 2023 Approved
Latest Apache Maven snapshot 20230315.094330 147 Wednesday, March 15, 2023 Approved
Latest Apache Maven snapshot 20230314.155119 141 Tuesday, March 14, 2023 Approved
Latest Apache Maven snapshot 20230313.183607 121 Monday, March 13, 2023 Approved
Latest Apache Maven snapshot 20230313.001732 771 Monday, March 13, 2023 Approved
Latest Apache Maven snapshot 20230311.192450 88 Sunday, March 12, 2023 Approved
Latest Apache Maven snapshot 20230308.231355 153 Thursday, March 9, 2023 Approved
Latest Apache Maven snapshot 20230308.230215 80 Wednesday, March 8, 2023 Approved
Latest Apache Maven snapshot 20230308.140337 99 Wednesday, March 8, 2023 Approved
Latest Apache Maven snapshot 20230308.080458 106 Wednesday, March 8, 2023 Approved
Latest Apache Maven snapshot 20230308.001509 100 Wednesday, March 8, 2023 Approved
Latest Apache Maven snapshot 20230307.172650 87 Tuesday, March 7, 2023 Approved
Latest Apache Maven snapshot 20230307.154515 79 Tuesday, March 7, 2023 Approved
Latest Apache Maven snapshot 20230306.101829 118 Monday, March 6, 2023 Approved
Latest Apache Maven snapshot 20230305.124409 121 Sunday, March 5, 2023 Approved
Latest Apache Maven snapshot 20230304.235240 90 Sunday, March 5, 2023 Approved
Latest Apache Maven snapshot 20230303.170604 104 Friday, March 3, 2023 Approved
Latest Apache Maven snapshot 20230303.075307 89 Friday, March 3, 2023 Approved
Latest Apache Maven snapshot 20230302.004933 130 Thursday, March 2, 2023 Approved
Latest Apache Maven snapshot 20230301.101822 78 Wednesday, March 1, 2023 Approved
Latest Apache Maven snapshot 20230227.123848 140 Monday, February 27, 2023 Approved
Latest Apache Maven snapshot 20230226.182826 120 Sunday, February 26, 2023 Approved
Latest Apache Maven snapshot 20230223.171600 125 Thursday, February 23, 2023 Approved
Latest Apache Maven snapshot 20230222.130435 139 Wednesday, February 22, 2023 Approved
Latest Apache Maven snapshot 20230221.102422 123 Tuesday, February 21, 2023 Approved
Latest Apache Maven snapshot 20230219.144638 141 Sunday, February 19, 2023 Approved
Latest Apache Maven snapshot 20230217.200346 115 Friday, February 17, 2023 Approved
Latest Apache Maven snapshot 20230215.075013 150 Wednesday, February 15, 2023 Approved
Latest Apache Maven snapshot 20230207.212450 173 Tuesday, February 7, 2023 Approved
Latest Apache Maven snapshot 20230207.194730 73 Tuesday, February 7, 2023 Approved
Latest Apache Maven snapshot 20230206.200350 124 Monday, February 6, 2023 Approved
Latest Apache Maven snapshot 20230205.123326 134 Sunday, February 5, 2023 Approved
Latest Apache Maven snapshot 20230201.072004 169 Wednesday, February 1, 2023 Approved
Latest Apache Maven snapshot 20230201.071734 54 Sunday, February 5, 2023 Approved
Latest Apache Maven snapshot 20230130.152100 147 Monday, January 30, 2023 Approved
Latest Apache Maven snapshot 20230130.141155 59 Monday, January 30, 2023 Approved
Latest Apache Maven snapshot 20230127.155712 163 Friday, January 27, 2023 Approved
Latest Apache Maven snapshot 20230127.145640 61 Friday, January 27, 2023 Approved
Latest Apache Maven snapshot 20230126.104250 145 Thursday, January 26, 2023 Approved
Latest Apache Maven snapshot 20230125.142250 123 Wednesday, January 25, 2023 Approved
Latest Apache Maven snapshot 20230119.233918 172 Friday, January 20, 2023 Approved
Latest Apache Maven snapshot 20230119.105549 124 Thursday, January 19, 2023 Approved
Latest Apache Maven snapshot 20230116.133116 167 Monday, January 16, 2023 Approved
Latest Apache Maven snapshot 20230115.224818 132 Sunday, January 15, 2023 Approved
Latest Apache Maven snapshot 20230115.191217 74 Sunday, January 15, 2023 Approved
Latest Apache Maven snapshot 20230113.165714 126 Friday, January 13, 2023 Approved
Latest Apache Maven snapshot 20230113.110115 91 Friday, January 13, 2023 Approved
Latest Apache Maven snapshot 20230111.062640 166 Wednesday, January 11, 2023 Approved
Latest Apache Maven snapshot 20230109.154924 134 Monday, January 9, 2023 Approved
Latest Apache Maven snapshot 20230103.211243 178 Tuesday, January 3, 2023 Approved
Latest Apache Maven snapshot 20230103.155640 94 Tuesday, January 3, 2023 Approved
Latest Apache Maven snapshot 20230101.201606 141 Sunday, January 1, 2023 Approved
Latest Apache Maven snapshot 20230101.190510 69 Sunday, January 1, 2023 Approved
Latest Apache Maven snapshot 20221231.163631 108 Saturday, December 31, 2022 Approved
Latest Apache Maven snapshot 20221230.222028 110 Friday, December 30, 2022 Approved
Latest Apache Maven snapshot 20221229.223700 126 Thursday, December 29, 2022 Approved
Latest Apache Maven snapshot 20221229.131401 87 Thursday, December 29, 2022 Approved
Latest Apache Maven snapshot 20221226.151650 155 Monday, December 26, 2022 Approved
Latest Apache Maven snapshot 20221224.204359 109 Sunday, December 25, 2022 Approved
Latest Apache Maven snapshot 20221205.1710 242 Monday, December 5, 2022 Approved
Latest Apache Maven snapshot 20221205.1615 61 Monday, December 5, 2022 Approved
Latest Apache Maven snapshot 20221205.1013 110 Monday, December 5, 2022 Approved
Latest Apache Maven snapshot 20221203.2011 149 Saturday, December 3, 2022 Approved
Latest Apache Maven snapshot 20221203.1709 59 Saturday, December 3, 2022 Approved
Latest Apache Maven snapshot 20221202.1615 127 Friday, December 2, 2022 Approved
Latest Apache Maven snapshot 20221201.2211 111 Thursday, December 1, 2022 Approved
Latest Apache Maven snapshot 20221201.1330 148 Thursday, December 1, 2022 Approved
Latest Apache Maven snapshot 20221126.2012 178 Saturday, November 26, 2022 Approved
Latest Apache Maven snapshot 20221122.2312 174 Tuesday, November 22, 2022 Approved
Latest Apache Maven snapshot 20221122.1617 117 Tuesday, November 22, 2022 Approved
Latest Apache Maven snapshot 20221122.1412 84 Tuesday, November 22, 2022 Approved
Latest Apache Maven snapshot 20221121.1816 136 Monday, November 21, 2022 Approved
Latest Apache Maven snapshot 20221121.1014 112 Monday, November 21, 2022 Approved
Latest Apache Maven snapshot 20221117.1815 165 Thursday, November 17, 2022 Approved
Latest Apache Maven snapshot 20221116.0818 161 Wednesday, November 16, 2022 Approved
Latest Apache Maven snapshot 20221109.2313 214 Wednesday, November 9, 2022 Approved
Latest Apache Maven snapshot 20221109.1910 88 Wednesday, November 9, 2022 Approved
Latest Apache Maven snapshot 20221109.1343 96 Wednesday, November 9, 2022 Approved
Latest Apache Maven snapshot 20221107.1817 170 Monday, November 7, 2022 Approved
Latest Apache Maven snapshot 20221103.0112 186 Thursday, November 3, 2022 Approved
Latest Apache Maven snapshot 20221030.0913 202 Sunday, October 30, 2022 Approved
Latest Apache Maven snapshot 20221026.2214 233 Wednesday, October 26, 2022 Approved
Latest Apache Maven snapshot 20221024.1232 186 Monday, October 24, 2022 Approved
Latest Apache Maven snapshot 20221021.1627 214 Friday, October 21, 2022 Approved
Latest Apache Maven snapshot 20221020.2218 136 Thursday, October 20, 2022 Approved
Latest Apache Maven snapshot 20221019.0738 224 Wednesday, October 19, 2022 Approved
Latest Apache Maven snapshot 20221018.1114 147 Tuesday, October 18, 2022 Approved
Latest Apache Maven snapshot 20221015.0123 179 Saturday, October 15, 2022 Approved
Latest Apache Maven snapshot 20221014.2214 120 Friday, October 14, 2022 Approved
Latest Apache Maven snapshot 20221014.2115 59 Friday, October 14, 2022 Approved
Latest Apache Maven snapshot 20221014.0920 220 Friday, October 14, 2022 Approved
Latest Apache Maven snapshot 20221013.1424 752 Thursday, October 13, 2022 Approved
Latest Apache Maven snapshot 20221011.1623 191 Tuesday, October 11, 2022 Approved
Latest Apache Maven snapshot 20221010.2217 156 Monday, October 10, 2022 Approved
Latest Apache Maven snapshot 20221010.1922 88 Monday, October 10, 2022 Approved
Latest Apache Maven snapshot 20221005.1640 196 Wednesday, October 5, 2022 Approved
Latest Apache Maven snapshot 20221005.1519 97 Wednesday, October 5, 2022 Approved
Latest Apache Maven snapshot 20221002.1015 179 Sunday, October 2, 2022 Approved
Latest Apache Maven snapshot 20220929.1519 171 Thursday, September 29, 2022 Approved
Latest Apache Maven snapshot 20220918.2213 221 Sunday, September 18, 2022 Approved
Latest Apache Maven snapshot 20220916.1344 158 Friday, September 16, 2022 Approved
Latest Apache Maven snapshot 20220914.2314 183 Wednesday, September 14, 2022 Approved
Latest Apache Maven snapshot 20220910.2014 194 Saturday, September 10, 2022 Approved
Latest Apache Maven snapshot 20220907.2213 187 Wednesday, September 7, 2022 Approved
Latest Apache Maven snapshot 20220831.1910 217 Wednesday, August 31, 2022 Approved
Latest Apache Maven snapshot 20220825.0553 217 Thursday, August 25, 2022 Approved
Latest Apache Maven snapshot 20220824.1826 114 Wednesday, August 24, 2022 Approved
Latest Apache Maven snapshot 20220823.2112 188 Tuesday, August 23, 2022 Approved
Latest Apache Maven snapshot 20220823.1111 120 Tuesday, August 23, 2022 Approved
Latest Apache Maven snapshot 20220822.0711 171 Monday, August 22, 2022 Approved
Latest Apache Maven snapshot 20220729.1014 257 Friday, July 29, 2022 Approved
Latest Apache Maven snapshot 20220728.2111 130 Thursday, July 28, 2022 Approved
Latest Apache Maven snapshot 20220724.1013 198 Sunday, July 24, 2022 Approved
Latest Apache Maven snapshot 20220719.0117 193 Tuesday, July 19, 2022 Approved
Latest Apache Maven snapshot 20220718.1815 104 Monday, July 18, 2022 Approved
Latest Apache Maven snapshot 20220718.1721 71 Monday, July 18, 2022 Approved
Latest Apache Maven snapshot 20220718.1225 104 Monday, July 18, 2022 Approved
Latest Apache Maven snapshot 20220627.1243 285 Monday, June 27, 2022 Approved
Latest Apache Maven snapshot 20220626.1813 188 Sunday, June 26, 2022 Approved
Latest Apache Maven snapshot 20220617.1226 250 Friday, June 17, 2022 Approved
Latest Apache Maven snapshot 20220615.1013 189 Wednesday, June 15, 2022 Approved
Latest Apache Maven snapshot 20220611.1615 227 Saturday, June 11, 2022 Approved
Latest Apache Maven snapshot 20220603.2312 266 Friday, June 3, 2022 Approved
Latest Apache Maven snapshot 20220603.2013 110 Friday, June 3, 2022 Approved
Latest Apache Maven snapshot 20220602.1227 194 Thursday, June 2, 2022 Approved
Latest Apache Maven snapshot 20220531.0820 207 Tuesday, May 31, 2022 Approved
Latest Apache Maven snapshot 20220530.2213 144 Monday, May 30, 2022 Approved
Latest Apache Maven snapshot 20220530.1224 132 Monday, May 30, 2022 Approved
Latest Apache Maven snapshot 20220529.1324 186 Sunday, May 29, 2022 Approved
Latest Apache Maven snapshot 20220527.2112 177 Friday, May 27, 2022 Approved
Latest Apache Maven snapshot 20220521.1715 301 Saturday, May 21, 2022 Approved
Latest Apache Maven snapshot 20220519.1519 208 Thursday, May 19, 2022 Approved
Latest Apache Maven snapshot 20220518.1911 189 Wednesday, May 18, 2022 Approved
Latest Apache Maven snapshot 20220518.1815 99 Wednesday, May 18, 2022 Approved
Latest Apache Maven snapshot 20220517.0817 212 Tuesday, May 17, 2022 Approved
Latest Apache Maven snapshot 20220516.1910 201 Monday, May 16, 2022 Approved
Latest Apache Maven snapshot 20220513.0714 235 Friday, May 13, 2022 Approved
Latest Apache Maven snapshot 20220511.1515 215 Wednesday, May 11, 2022 Approved
Latest Apache Maven snapshot 20220509.0913 226 Monday, May 9, 2022 Approved
Latest Apache Maven snapshot 20220505.2013 233 Thursday, May 5, 2022 Approved
Latest Apache Maven snapshot 20220502.1619 218 Monday, May 2, 2022 Approved
Latest Apache Maven snapshot 20220427.1514 229 Wednesday, April 27, 2022 Approved
Latest Apache Maven snapshot 20220424.1513 221 Sunday, April 24, 2022 Approved
Latest Apache Maven snapshot 20220424.0912 110 Sunday, April 24, 2022 Approved
Latest Apache Maven snapshot 20220423.0814 158 Saturday, April 23, 2022 Approved
Latest Apache Maven snapshot 20220422.2014 152 Friday, April 22, 2022 Approved
Latest Apache Maven snapshot 20220416.1814 256 Saturday, April 16, 2022 Approved
Latest Apache Maven snapshot 20220415.1814 132 Friday, April 15, 2022 Approved
Latest Apache Maven snapshot 20220413.1220 216 Wednesday, April 13, 2022 Approved
Latest Apache Maven snapshot 20220412.2012 156 Tuesday, April 12, 2022 Approved
Latest Apache Maven snapshot 20220408.1411 218 Friday, April 8, 2022 Approved
Latest Apache Maven snapshot 20220408.1013 111 Friday, April 8, 2022 Approved
Latest Apache Maven snapshot 20220408.0912 96 Friday, April 8, 2022 Approved
Latest Apache Maven snapshot 20220401.2112 231 Friday, April 1, 2022 Approved
Latest Apache Maven snapshot 20220327.1316 223 Sunday, March 27, 2022 Approved
Latest Apache Maven snapshot 20220325.2311 142 Friday, March 25, 2022 Approved
Latest Apache Maven snapshot 20220325.1816 80 Friday, March 25, 2022 Approved
Latest Apache Maven snapshot 20220325.1714 84 Friday, March 25, 2022 Approved
Latest Apache Maven snapshot 20220316.0218 232 Wednesday, March 16, 2022 Approved
Latest Apache Maven snapshot 20220315.0712 163 Tuesday, March 15, 2022 Approved
Latest Apache Maven snapshot 20220313.1315 195 Sunday, March 13, 2022 Approved
Latest Apache Maven snapshot 20220309.1412 207 Wednesday, March 9, 2022 Approved
Latest Apache Maven snapshot 20220309.1318 87 Wednesday, March 9, 2022 Approved
Latest Apache Maven snapshot 20220306.0046 206 Sunday, March 6, 2022 Approved
Latest Apache Maven snapshot 20220303.1109 188 Thursday, March 3, 2022 Approved
Latest Apache Maven snapshot 20220227.1313 213 Sunday, February 27, 2022 Approved
Latest Apache Maven snapshot 20220227.1217 77 Sunday, February 27, 2022 Approved
Latest Apache Maven snapshot 20220226.2210 118 Saturday, February 26, 2022 Approved
Latest Apache Maven snapshot 20220222.0042 200 Tuesday, February 22, 2022 Approved
Latest Apache Maven snapshot 20220221.0912 142 Monday, February 21, 2022 Approved
Latest Apache Maven snapshot 20220201.1510 262 Tuesday, February 1, 2022 Approved
Latest Apache Maven snapshot 20220124.0812 218 Monday, January 24, 2022 Approved
Latest Apache Maven snapshot 20220121.1713 164 Friday, January 21, 2022 Approved
Latest Apache Maven snapshot 20220118.2114 272 Tuesday, January 18, 2022 Approved
Latest Apache Maven snapshot 20220118.1109 146 Tuesday, January 18, 2022 Approved
Latest Apache Maven snapshot 20220117.2110 172 Monday, January 17, 2022 Approved
Latest Apache Maven snapshot 20220116.2109 158 Sunday, January 16, 2022 Approved
Latest Apache Maven snapshot 20220116.0206 118 Sunday, January 16, 2022 Approved
Latest Apache Maven snapshot 20220115.1909 96 Saturday, January 15, 2022 Approved
Latest Apache Maven snapshot 20220114.1218 145 Friday, January 14, 2022 Approved
Latest Apache Maven snapshot 20220111.1617 193 Tuesday, January 11, 2022 Approved
Latest Apache Maven snapshot 20220111.1512 94 Tuesday, January 11, 2022 Approved
Latest Apache Maven snapshot 20220110.0814 172 Monday, January 10, 2022 Approved
Latest Apache Maven snapshot 20220108.2213 145 Saturday, January 8, 2022 Approved
Latest Apache Maven snapshot 20220108.1616 107 Saturday, January 8, 2022 Approved
Latest Apache Maven snapshot 20220107.1012 145 Friday, January 7, 2022 Approved
Latest Apache Maven snapshot 20220106.1721 157 Thursday, January 6, 2022 Approved
Latest Apache Maven snapshot 20220105.0042 173 Wednesday, January 5, 2022 Approved
Latest Apache Maven snapshot 20220102.1616 153 Sunday, January 2, 2022 Approved
Latest Apache Maven snapshot 20211230.1719 147 Thursday, December 30, 2021 Approved
Latest Apache Maven snapshot 20211230.1511 111 Thursday, December 30, 2021 Approved
Latest Apache Maven snapshot 20211229.0038 168 Wednesday, December 29, 2021 Approved
Latest Apache Maven snapshot 20211226.2210 151 Sunday, December 26, 2021 Approved
Latest Apache Maven snapshot 20211226.1812 94 Sunday, December 26, 2021 Approved
Latest Apache Maven snapshot 20211223.1218 161 Thursday, December 23, 2021 Approved
Latest Apache Maven snapshot 20211222.1218 169 Wednesday, December 22, 2021 Approved
Latest Apache Maven snapshot 20211220.2109 168 Monday, December 20, 2021 Approved
Latest Apache Maven snapshot 20211218.1409 153 Saturday, December 18, 2021 Approved
Latest Apache Maven snapshot 20211213.1217 184 Monday, December 13, 2021 Approved
Latest Apache Maven snapshot 20211207.0311 207 Tuesday, December 7, 2021 Approved
Latest Apache Maven snapshot 20211202.1217 169 Thursday, December 2, 2021 Approved
Latest Apache Maven snapshot 20211201.1011 128 Wednesday, December 1, 2021 Approved
Latest Apache Maven snapshot 20211129.1410 125 Monday, November 29, 2021 Approved
Latest Apache Maven snapshot 20211125.1217 198 Thursday, November 25, 2021 Approved
Latest Apache Maven snapshot 20211120.1615 159 Saturday, November 20, 2021 Approved
Latest Apache Maven snapshot 20211115.1109 154 Monday, November 15, 2021 Approved
Latest Apache Maven snapshot 20211112.1909 154 Friday, November 12, 2021 Approved
Latest Apache Maven snapshot 20211110.2011 146 Wednesday, November 10, 2021 Approved
Latest Apache Maven snapshot 20211101.1217 162 Monday, November 1, 2021 Approved
Latest Apache Maven snapshot 20211030.1908 137 Saturday, October 30, 2021 Approved
Latest Apache Maven snapshot 20211024.1011 150 Sunday, October 24, 2021 Approved
Latest Apache Maven snapshot 20211022.2109 127 Friday, October 22, 2021 Approved
Latest Apache Maven snapshot 20211018.2108 156 Monday, October 18, 2021 Approved
Latest Apache Maven snapshot 20211017.1215 135 Sunday, October 17, 2021 Approved
Latest Apache Maven snapshot 20211017.0909 91 Sunday, October 17, 2021 Approved
Latest Apache Maven snapshot 20211016.1908 97 Saturday, October 16, 2021 Approved
Latest Apache Maven snapshot 20211013.1511 124 Wednesday, October 13, 2021 Approved
Latest Apache Maven snapshot 20211011.2108 146 Monday, October 11, 2021 Approved
Latest Apache Maven snapshot 20211011.0159 126 Monday, October 11, 2021 Approved
Latest Apache Maven snapshot 20211010.2310 94 Sunday, October 10, 2021 Approved
Latest Apache Maven snapshot 20211010.1215 107 Sunday, October 10, 2021 Approved
Latest Apache Maven snapshot 20211010.1108 84 Sunday, October 10, 2021 Approved
Latest Apache Maven snapshot 20211009.1509 116 Saturday, October 9, 2021 Approved
Latest Apache Maven snapshot 20211009.1108 92 Saturday, October 9, 2021 Approved
Latest Apache Maven snapshot 20211003.1810 123 Sunday, October 3, 2021 Approved
Latest Apache Maven snapshot 20211002.1908 97 Saturday, October 2, 2021 Approved
Latest Apache Maven snapshot 20211002.1510 85 Saturday, October 2, 2021 Approved
Latest Apache Maven snapshot 20211002.1408 89 Saturday, October 2, 2021 Approved
Latest Apache Maven snapshot 20211002.1314 86 Saturday, October 2, 2021 Approved
Latest Apache Maven snapshot 20211002.1108 94 Saturday, October 2, 2021 Approved
Latest Apache Maven snapshot 20211001.1317 109 Friday, October 1, 2021 Approved
Latest Apache Maven snapshot 20211001.0910 111 Friday, October 1, 2021 Approved
Latest Apache Maven snapshot 20210930.1811 114 Thursday, September 30, 2021 Approved
Latest Apache Maven snapshot 20210927.1907 131 Monday, September 27, 2021 Approved
Latest Apache Maven snapshot 20210926.1215 103 Sunday, September 26, 2021 Approved
Latest Apache Maven snapshot 20210925.1108 107 Saturday, September 25, 2021 Approved
Latest Apache Maven snapshot 20210924.2108 96 Friday, September 24, 2021 Approved
Latest Apache Maven snapshot 20210924.2010 86 Friday, September 24, 2021 Approved
Latest Apache Maven snapshot 20210920.0910 105 Monday, September 20, 2021 Approved
Latest Apache Maven snapshot 20210919.2209 86 Sunday, September 19, 2021 Approved
Latest Apache Maven snapshot 20210916.2109 126 Thursday, September 16, 2021 Approved
Latest Apache Maven snapshot 20210914.1908 103 Tuesday, September 14, 2021 Approved
Latest Apache Maven snapshot 20210914.1811 98 Tuesday, September 14, 2021 Approved
Latest Apache Maven snapshot 20210914.1615 106 Tuesday, September 14, 2021 Approved
Latest Apache Maven snapshot 20210913.2209 103 Monday, September 13, 2021 Approved
Latest Apache Maven snapshot 20210912.1108 114 Sunday, September 12, 2021 Approved
Latest Apache Maven snapshot 20210911.1214 103 Saturday, September 11, 2021 Approved
Latest Apache Maven snapshot 20210903.0910 123 Friday, September 3, 2021 Approved
Latest Apache Maven snapshot 20210831.1908 99 Tuesday, August 31, 2021 Approved
Latest Apache Maven snapshot 20210820.0149 119 Friday, August 20, 2021 Approved
Latest Apache Maven snapshot 20210818.0910 131 Wednesday, August 18, 2021 Approved
Latest Apache Maven snapshot 20210818.0811 90 Wednesday, August 18, 2021 Approved
Latest Apache Maven snapshot 20210817.1011 98 Tuesday, August 17, 2021 Approved
Latest Apache Maven snapshot 20210814.0221 144 Saturday, August 14, 2021 Approved
Latest Apache Maven snapshot 20210803.0910 109 Tuesday, August 3, 2021 Approved
Latest Apache Maven snapshot 20210802.1215 105 Monday, August 2, 2021 Approved
Latest Apache Maven snapshot 20210801.1907 102 Sunday, August 1, 2021 Approved
Latest Apache Maven snapshot 20210727.1511 106 Tuesday, July 27, 2021 Approved
Latest Apache Maven snapshot 20210726.1908 92 Monday, July 26, 2021 Approved
Latest Apache Maven snapshot 20210725.2109 95 Sunday, July 25, 2021 Approved
Latest Apache Maven snapshot 20210725.1408 101 Sunday, July 25, 2021 Approved
Latest Apache Maven snapshot 20210723.1215 94 Friday, July 23, 2021 Approved
Latest Apache Maven snapshot 20210720.0159 96 Tuesday, July 20, 2021 Approved
Latest Apache Maven snapshot 20210719.1511 88 Monday, July 19, 2021 Approved
Latest Apache Maven snapshot 20210716.2009 106 Friday, July 16, 2021 Approved
Latest Apache Maven snapshot 20210714.1215 98 Wednesday, July 14, 2021 Approved
Latest Apache Maven snapshot 20210711.1907 96 Sunday, July 11, 2021 Approved
Latest Apache Maven snapshot 20210706.0708 107 Tuesday, July 6, 2021 Approved
Latest Apache Maven snapshot 20210704.1714 95 Sunday, July 4, 2021 Approved
Latest Apache Maven snapshot 20210703.1907 102 Saturday, July 3, 2021 Approved
Latest Apache Maven snapshot 20210703.1811 89 Saturday, July 3, 2021 Approved
Latest Apache Maven snapshot 20210703.1214 103 Saturday, July 3, 2021 Approved
Latest Apache Maven snapshot 20210702.1810 97 Friday, July 2, 2021 Approved
Latest Apache Maven snapshot 20210702.1718 114 Friday, July 2, 2021 Approved
Latest Apache Maven snapshot 20210627.0035 103 Sunday, June 27, 2021 Approved
Latest Apache Maven snapshot 20210625.1907 102 Friday, June 25, 2021 Approved
Latest Apache Maven snapshot 20210624.1907 105 Thursday, June 24, 2021 Approved
Latest Apache Maven snapshot 20210618.2310 129 Friday, June 18, 2021 Approved
Latest Apache Maven snapshot 20210615.2009 118 Tuesday, June 15, 2021 Approved
Latest Apache Maven snapshot 20210612.1109 96 Saturday, June 12, 2021 Approved
Latest Apache Maven snapshot 20210609.1829 110 Wednesday, June 9, 2021 Approved
Latest Apache Maven snapshot 20210528.1840 97 Friday, May 28, 2021 Approved
Latest Apache Maven snapshot 20210525.1118 110 Tuesday, May 25, 2021 Approved
Latest Apache Maven snapshot 20210522.1013 103 Saturday, May 22, 2021 Approved
Latest Apache Maven snapshot 20210515.1322 112 Saturday, May 15, 2021 Approved
Latest Apache Maven snapshot 20210512.0030 96 Wednesday, May 12, 2021 Approved
Latest Apache Maven snapshot 20210506.0910 105 Thursday, May 6, 2021 Approved
Latest Apache Maven snapshot 20210505.0811 90 Wednesday, May 5, 2021 Approved
Latest Apache Maven snapshot 20210504.1213 95 Tuesday, May 4, 2021 Approved
Latest Apache Maven snapshot 20210503.0716 100 Monday, May 3, 2021 Approved
Latest Apache Maven snapshot 20210502.1735 82 Sunday, May 2, 2021 Approved
Latest Apache Maven snapshot 20210422.1919 105 Thursday, April 22, 2021 Approved
Latest Apache Maven snapshot 20210419.1514 100 Monday, April 19, 2021 Approved
Latest Apache Maven snapshot 20210408.2014 102 Thursday, April 8, 2021 Approved
Latest Apache Maven snapshot 20210408.1918 91 Thursday, April 8, 2021 Approved
Latest Apache Maven snapshot 20210405.1918 87 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210405.1828 117 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210405.1742 91 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210405.1112 97 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210405.1014 94 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210405.0915 98 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210405.0816 128 Monday, April 5, 2021 Approved
Latest Apache Maven snapshot 20210404.2215 100 Sunday, April 4, 2021 Approved
Latest Apache Maven snapshot 20210404.2014 98 Sunday, April 4, 2021 Approved
Latest Apache Maven snapshot 20210404.1917 96 Sunday, April 4, 2021 Approved
Latest Apache Maven snapshot 20210404.1741 108 Sunday, April 4, 2021 Approved
Latest Apache Maven snapshot 20210404.1219 97 Sunday, April 4, 2021 Approved
Latest Apache Maven snapshot 20210404.0815 101 Sunday, April 4, 2021 Approved
Latest Apache Maven snapshot 20210403.1741 99 Saturday, April 3, 2021 Approved
Latest Apache Maven snapshot 20210402.1514 90 Friday, April 2, 2021 Approved
Latest Apache Maven snapshot 20210327.1740 95 Saturday, March 27, 2021 Approved
Latest Apache Maven snapshot 20210327.0319 88 Saturday, March 27, 2021 Approved
Latest Apache Maven snapshot 20210322.1509 97 Monday, March 22, 2021 Approved
Latest Apache Maven snapshot 20210321.1731 115 Sunday, March 21, 2021 Approved
Latest Apache Maven snapshot 20210320.1615 106 Saturday, March 20, 2021 Approved
Latest Apache Maven snapshot 20210319.2108 81 Friday, March 19, 2021 Approved
Latest Apache Maven snapshot 20210316.2210 80 Tuesday, March 16, 2021 Approved
Latest Apache Maven snapshot 20210316.1811 110 Tuesday, March 16, 2021 Approved
Latest Apache Maven snapshot 20210313.2108 112 Saturday, March 13, 2021 Approved
Latest Apache Maven snapshot 20210313.1727 93 Saturday, March 13, 2021 Approved
Latest Apache Maven snapshot 20210313.1212 95 Saturday, March 13, 2021 Approved
Latest Apache Maven snapshot 20210312.1812 99 Friday, March 12, 2021 Approved
Latest Apache Maven snapshot 20210309.2108 109 Tuesday, March 9, 2021 Approved
Latest Apache Maven snapshot 20210127.1102 124 Wednesday, January 27, 2021 Approved

This package has no dependencies.

Discussion for the Latest Apache Maven snapshot Package

Ground Rules:

  • This discussion is only about Latest Apache Maven snapshot and the Latest Apache Maven snapshot package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Latest Apache Maven snapshot, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus