Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
11,379
Downloads of v 13367.0:
264
Last Update:
31 Jan 2018
Package Maintainer(s):
Software Author(s):
- JOSM contributors
Tags:
josm admin openstreetmap osm editor
JOSM
This is not the latest version of JOSM available.
Downloads:
11,379
Downloads of v 13367.0:
264
Maintainer(s):
Software Author(s):
- JOSM contributors
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
JOSM 13367.0
This is not the latest version of JOSM available.
All Checks are Passing
2 Passing Test
To install JOSM, run the following command from the command line or from PowerShell:
To upgrade JOSM, run the following command from the command line or from PowerShell:
To uninstall JOSM, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download josm --internalize --version=13367.0 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade josm -y --source="'STEP 3 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 josm -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure josm installed
win_chocolatey:
name: josm
state: present
version: 13367.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'josm' do
action :install
version '13367.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: josm,
Version: 13367.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller josm
{
Name = 'josm'
Ensure = 'Present'
Version = '13367.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'josm':
provider => 'chocolatey',
ensure => '13367.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install josm version="13367.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 31 Jan 2018.
JOSM is an extensible editor for OpenStreetMap (OSM) for Java 8. JOSM is open source and licensed under GPL.
It supports loading GPX tracks, background imagery and OSM data from local sources as well as from online sources and allows to edit the OSM data (nodes, ways and relations) and their metadata tags.
OpenStreetMap powers map data on thousands of web sites, mobile apps, and hardware devices. OpenStreetMap is built by a community of mappers that contribute and maintain data about roads, trails, cafés, railway stations, and much more, all over the world.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = 'josm'
fileType = 'EXE'
url = 'https://josm.openstreetmap.de/download/windows/josm-setup-13367.exe'
checksum = '8b500906d6fba27c592aaab45a8b9000ce76aac761c3862c7decd06df07fa09f'
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes= @(0)
}
Install-ChocolateyPackage @packageArgs
$ErrorActionPreference = 'Stop';
$packageName = 'josm'
$softwareName = 'JOSM *'
$installerType = 'EXE'
$validExitCodes = @(0)
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString.Trim('"'))"
$instDir = "$(Split-Path $file)\"
$silentArgs = "/S _?=$instDir"
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
Remove-Item "$file"
Remove-Item "$instDir"
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$key.Count matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $_.DisplayName"}
}
Log in or click on link to see number of positives.
- josm.13367.0.nupkg (3022b7e4dde8) - ## / 61
- josm-setup-13367.exe (8b500906d6fb) - ## / 63
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
JOSM 17428.0 | 247 | Friday, January 1, 2021 | Approved |
JOSM 17329.0 | 175 | Friday, November 27, 2020 | Approved |
JOSM 17084.0 | 209 | Thursday, October 8, 2020 | Approved |
JOSM 17013.0 | 184 | Tuesday, September 8, 2020 | Approved |
JOSM 16812.0 | 217 | Monday, August 3, 2020 | Approved |
JOSM 16731.0 | 188 | Thursday, July 2, 2020 | Approved |
JOSM 16538.0 | 163 | Saturday, June 6, 2020 | Approved |
JOSM 16239.0 | 251 | Tuesday, April 7, 2020 | Approved |
JOSM 15937.0 | 223 | Thursday, February 27, 2020 | Approved |
JOSM 15806.0 | 186 | Sunday, February 2, 2020 | Approved |
JOSM 15628.0 | 152 | Friday, January 3, 2020 | Approved |
JOSM 15553.0 | 176 | Tuesday, December 3, 2019 | Approved |
JOSM 15492.0 | 166 | Tuesday, November 5, 2019 | Approved |
JOSM 15390.0 | 176 | Tuesday, October 1, 2019 | Approved |
JOSM 15322.0 | 177 | Saturday, August 31, 2019 | Approved |
JOSM 15238.0 | 185 | Saturday, July 13, 2019 | Approved |
JOSM 15155.0 | 177 | Tuesday, June 4, 2019 | Approved |
JOSM 15031.0 | 182 | Monday, April 29, 2019 | Approved |
JOSM 14945.0 | 156 | Wednesday, April 3, 2019 | Approved |
JOSM 14824.0 | 164 | Wednesday, March 6, 2019 | Approved |
JOSM 14760.0 | 166 | Friday, February 8, 2019 | Approved |
JOSM 14620.0 | 173 | Tuesday, January 1, 2019 | Approved |
JOSM 14460.0 | 178 | Wednesday, November 28, 2018 | Approved |
JOSM 14382.0 | 192 | Thursday, November 1, 2018 | Approved |
JOSM 14289.0 | 185 | Wednesday, October 3, 2018 | Approved |
JOSM 14178.0 | 192 | Wednesday, August 22, 2018 | Approved |
JOSM 14066.0 | 188 | Monday, July 30, 2018 | Approved |
JOSM 14026.0 | 185 | Tuesday, July 10, 2018 | Approved |
JOSM 13996.0 | 168 | Wednesday, July 4, 2018 | Approved |
JOSM 13878.0 | 178 | Monday, June 4, 2018 | Approved |
JOSM 13710.0 | 221 | Tuesday, May 8, 2018 | Approved |
JOSM 13576.0 | 239 | Wednesday, March 28, 2018 | Approved |
JOSM 13500.0 | 342 | Saturday, March 10, 2018 | Approved |
JOSM 13478.0 | 223 | Friday, March 2, 2018 | Approved |
JOSM 13367.0 | 264 | Wednesday, January 31, 2018 | Approved |
JOSM 13265.0 | 268 | Monday, January 1, 2018 | Approved |
JOSM 13170.0 | 293 | Thursday, November 30, 2017 | Approved |
JOSM 13053.0 | 311 | Monday, October 30, 2017 | Approved |
JOSM 12921.0 | 321 | Tuesday, October 3, 2017 | Approved |
JOSM 12712.0 | 299 | Saturday, September 2, 2017 | Approved |
JOSM 12545.0 | 405 | Thursday, August 17, 2017 | Approved |
JOSM 12542.0 | 286 | Monday, July 31, 2017 | Approved |
JOSM 12450.0 | 268 | Wednesday, July 5, 2017 | Approved |
JOSM 12275.0 | 295 | Saturday, June 3, 2017 | Approved |
JOSM 12039.0 | 270 | Wednesday, May 10, 2017 | Approved |
JOSM 11826.0 | 279 | Tuesday, April 4, 2017 | Approved |
JOSM 11639.0 | 311 | Tuesday, February 28, 2017 | Approved |
JOSM 11526.0 | 291 | Sunday, February 12, 2017 | Approved |
JOSM 11514.0 | 280 | Tuesday, January 31, 2017 | Approved |
JOSM 11427.0 | 300 | Wednesday, January 18, 2017 | Approved |
JOSM contributors
-
- jre8 (≥ 8.0.111)
Ground Rules:
- This discussion is only about JOSM and the JOSM 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 JOSM, 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.