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:
182,066
Downloads of v 11.0.2.9:
38,759
Last Update:
14 Mar 2019
Package Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
Tags:
java jdk admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Java SE
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
182,066
Downloads of v 11.0.2.9:
38,759
Maintainer(s):
Software Author(s):
- Sun Microsystems/Oracle Corporation
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.
All Checks are Passing
2 Passing Test
To install Java SE, run the following command from the command line or from PowerShell:
To upgrade Java SE, run the following command from the command line or from PowerShell:
To uninstall Java SE, 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 jdk11 --internalize --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 jdk11 -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 jdk11 -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 jdk11 installed
win_chocolatey:
name: jdk11
state: present
version: 11.0.2.9
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 'jdk11' do
action :install
version '11.0.2.9'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: jdk11,
Version: 11.0.2.9,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller jdk11
{
Name = 'jdk11'
Ensure = 'Present'
Version = '11.0.2.9'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jdk11':
provider => 'chocolatey',
ensure => '11.0.2.9',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install jdk11 version="11.0.2.9" 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.
This package was approved as a trusted package on 04 Aug 2019.
By default this package installs JDK with source codes(zip).
If you don't want to install source codes
choco install jdk11 -params "source=false"
If you want auto update
choco install jdk11 -params "static=false"
If you want to specfiy install directory (you need \\ for escape)
choco install jdk11 -params 'installdir=c:\\java11'
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common
#installs jdk11
try {
$params = "$env:chocolateyPackageParameters"
$params = (ConvertFrom-StringData $params.Replace(";", "`n"))
out-installdir($params)
chocolatey-install $params
set-path
} catch {
if ($_.Exception.InnerException) {
$msg = $_.Exception.InnerException.Message
} else {
$msg = $_.Exception.Message
}
throw
}
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
$common = $(Join-Path $script_path "common.ps1")
. $common
function Uninstall-ChocolateyPath {
param(
[string] $pathToUninstall,
[System.EnvironmentVariableTarget] $pathType = [System.EnvironmentVariableTarget]::User
)
Write-Debug "Running 'Uninstall-ChocolateyPath' with pathToUninstall:`'$pathToUninstall`'";
#get the PATH variable
$envPath = $env:PATH
if ($envPath.ToLower().Contains($pathToUninstall.ToLower()))
{
Write-Host "PATH environment variable has $pathToUninstall in it. Removing..."
$actualPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
$statementTerminator = ";"
# remove $pathToUninstall
$actualPath = (($actualPath -split $statementTerminator) -ne $pathToUninstall) -join $statementTerminator
if ($pathType -eq [System.EnvironmentVariableTarget]::Machine) {
$psArgs = "[Environment]::SetEnvironmentVariable('Path',`'$actualPath`', `'$pathType`')"
Start-ChocolateyProcessAsAdmin "$psArgs"
} else {
[Environment]::SetEnvironmentVariable('Path', $actualPath, $pathType)
}
#add it to the local path as well so users will be off and running
$env:Path = $actualPath
}
}
$java_bin = get-java-bin
Uninstall-ChocolateyPath $java_bin 'Machine'
if ([Environment]::GetEnvironmentVariable('CLASSPATH','Machine') -eq '.;') {
Install-ChocolateyEnvironmentVariable 'CLASSPATH' $null 'Machine'
}
Install-ChocolateyEnvironmentVariable 'JAVA_HOME' $null 'Machine'
$jdk_version = '11.0.2'
$build = '9'
$id = "f51449fcd52f4d52b93a989c5c56ed3c"
$script_path = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
function has_file($filename) {
return Test-Path $filename
}
function get-programfilesdir() {
$programFiles = (Get-Item "Env:ProgramFiles").Value
return $programFiles
}
function download-from-oracle($url, $output_filename) {
if (-not (has_file($output_fileName))) {
Write-Host "Downloading JDK from $url"
try {
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true }
$client = New-Object Net.WebClient
$dummy = $client.Headers.Add('Cookie', 'gpw_e24=http://www.oracle.com; oraclelicense=accept-securebackup-cookie')
$defaultCreds = [System.Net.CredentialCache]::DefaultCredentials
if ($defaultCreds -ne $null) {
$client.Credentials = $defaultCreds
}
# Copy from https://github.com/chocolatey/choco/blob/master/src/chocolatey.resources/helpers/functions/Get-WebFile.ps1
# check if a proxy is required
$explicitProxy = $env:chocolateyProxyLocation
$explicitProxyUser = $env:chocolateyProxyUser
$explicitProxyPassword = $env:chocolateyProxyPassword
if ($explicitProxy -ne $null) {
# explicit proxy
$proxy = New-Object System.Net.WebProxy($explicitProxy, $true)
if ($explicitProxyPassword -ne $null) {
$passwd = ConvertTo-SecureString $explicitProxyPassword -AsPlainText -Force
$proxy.Credentials = New-Object System.Management.Automation.PSCredential ($explicitProxyUser, $passwd)
}
Write-Host "Using explicit proxy server '$explicitProxy'."
$client.Proxy = $proxy
} elseif (!$client.Proxy.IsBypassed($url)) {
# system proxy (pass through)
$creds = [net.CredentialCache]::DefaultCredentials
if ($creds -eq $null) {
Write-Debug "Default credentials were null. Attempting backup method"
$cred = get-credential
$creds = $cred.GetNetworkCredential();
}
$proxyaddress = $client.Proxy.GetProxy($url).Authority
Write-Host "Using system proxy server '$proxyaddress'."
$proxy = New-Object System.Net.WebProxy($proxyaddress)
$proxy.Credentials = $creds
$client.Proxy = $proxy
}
$dummy = $client.DownloadFile($url, $output_filename)
} finally {
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = $null
}
}
}
function download-jdk-file($url, $output_filename) {
$dummy = download-from-oracle $url $output_filename
}
function download-jdk() {
$filename = "jdk-" + $jdk_version + "_windows-x64_bin.exe"
$url = "http://download.oracle.com/otn-pub/java/jdk/$jdk_version+$build/$id/$filename"
$output_filename = Join-Path $script_path $filename
$dummy = download-jdk-file $url $output_filename
return $output_filename
}
function get-java-home() {
if (Test-Path (Join-Path $script_path "installdir.txt")) {
return Get-Content (Join-Path $script_path "installdir.txt")
}
$program_files = get-programfilesdir
return Join-Path $program_files ("Java\jdk-" + $jdk_version)
}
function get-java-bin() {
$java_home = get-java-home
return Join-Path $java_home 'bin'
}
function chocolatey-install($params) {
$jdk_file = download-jdk
$java_home = get-java-home
$java_bin = get-java-bin
$install_options = '/s '
if ($params.static -ne $false) {
$install_options += 'STATIC=1 '
}
if ($params.installdir -ne $null) {
$install_options += 'INSTALLDIR=' + $params.installdir + ' '
}
$install_options += 'ADDLOCAL="ToolsFeature'
if ($params.source -ne $false) {
$install_options += ',SourceFeature'
}
$install_options += '"'
Install-ChocolateyInstallPackage 'jdk11' 'exe' $install_options $jdk_file
}
function set-path() {
$java_home = get-java-home
$java_bin = get-java-bin
Install-ChocolateyPath $java_bin 'Machine'
if ([Environment]::GetEnvironmentVariable('CLASSPATH','Machine') -eq $null) {
Install-ChocolateyEnvironmentVariable 'CLASSPATH' '.;' 'Machine'
}
Install-ChocolateyEnvironmentVariable 'JAVA_HOME' $java_home 'Machine'
}
function out-installdir($params) {
if ($params.installdir -ne $null) {
Out-File -InputObject $params.installdir -FilePath (Join-Path $script_path "installdir.txt")
}
}
Log in or click on link to see number of positives.
- jdk11.11.0.2.9.nupkg (d0f5d3b2fcae) - ## / 56
- jdk-11.0.2_windows-x64_bin.exe (c808bcf758f3) - ## / 67
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 |
---|---|---|---|
Java SE 11.0.2.9 | 38759 | Thursday, March 14, 2019 | Approved |
Java SE 11.0.1 | 126984 | Wednesday, October 17, 2018 | Approved |
Java SE 11.0 | 1433 | Wednesday, September 26, 2018 | Approved |
Java SE Development Kit 11.0.2 build 9
changes:
-11.0.2.9
This package has no dependencies.
Ground Rules:
- This discussion is only about Java SE and the Java SE 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 Java SE, 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.