| 123456789101112131415161718192021222324252627 |
- param(
- [Parameter(Mandatory = $true)]
- $JdkVersion
- )
- $ErrorActionPreference = 'Stop'
- $ProgressPreference = 'SilentlyContinue' # Workaround PowerShell/PowerShell#2138
- Set-StrictMode -Version 1
- if (-not $env:JAVA_HOME) {
- throw 'You must set the JAVA_HOME environment variable to the destination of the JDK.'
- }
- $repoRoot = Resolve-Path "$PSScriptRoot/../.."
- $tempDir = "$repoRoot/obj"
- mkdir $tempDir -ea Ignore | out-null
- Write-Host "Starting download of JDK ${JdkVersion}"
- Invoke-WebRequest -UseBasicParsing -Uri "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/java/jdk-${JdkVersion}_windows-x64_bin.zip" -Out "$tempDir/jdk.zip"
- Write-Host "Done downloading JDK ${JdkVersion}"
- Expand-Archive "$tempDir/jdk.zip" -d "$tempDir/jdk/"
- Write-Host "Expanded JDK to $tempDir"
- mkdir (split-path -parent $env:JAVA_HOME) -ea ignore | out-null
- Write-Host "Installing JDK to $env:JAVA_HOME"
- Move-Item "$tempDir/jdk/jdk-${jdkVersion}" $env:JAVA_HOME
- Write-Host "Done installing JDK to $env:JAVA_HOME"
|