mirror of
https://github.com/ScoopInstaller/Java.git
synced 2026-08-03 09:39:21 +08:00
53 lines
2.3 KiB
JSON
53 lines
2.3 KiB
JSON
{
|
|
"description": "Eclipse Temurin is a runtime provided by Eclipse Adoptium for general use across the Java ecosystem",
|
|
"homepage": "https://adoptium.net",
|
|
"version": "20.0.0-36.0.202303010350",
|
|
"license": "GPL-2.0-only WITH Classpath-exception-2.0",
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://github.com/adoptium/temurin20-binaries/releases/download/jdk20-2023-03-01-17-34-beta/OpenJDK20U-jdk_x64_windows_hotspot_2023-03-01-17-34.zip",
|
|
"hash": "1c27d886516f8fb11e0a9fe930eebeee9a0fbb2e465d778b9221faf942d86ae6"
|
|
},
|
|
"32bit": {
|
|
"url": "https://github.com/adoptium/temurin20-binaries/releases/download/jdk20-2023-03-01-17-34-beta/OpenJDK20U-jdk_x86-32_windows_hotspot_2023-03-01-17-34.zip",
|
|
"hash": "1f150d5216eab20ac963e60fdde8b8b5d045413462c8eb1c8a43eb4e95f2e783"
|
|
}
|
|
},
|
|
"extract_to": "tmp",
|
|
"installer": {
|
|
"script": [
|
|
"(Get-ChildItem -Directory \"$dir\\tmp\").FullName | % { Move-Item \"$_\\*\" \"$dir\" }",
|
|
"Remove-Item -Recurse \"$dir\\tmp\""
|
|
]
|
|
},
|
|
"env_add_path": "bin",
|
|
"env_set": {
|
|
"JAVA_HOME": "$dir"
|
|
},
|
|
"checkver": {
|
|
"url": "https://api.adoptium.net/v3/assets/version/%5B8%2C%29?release_type=ea&jvm_impl=hotspot&heap_size=normal&os=windows&architecture=x64&image_type=jdk&project=jdk&vendor=eclipse&page_size=1&sort_order=DESC",
|
|
"script": [
|
|
"$ver = (json_path $page $..version_data.semver).replace('+', '-').replace('-beta','')",
|
|
"$link = (json_path $page $..release_link).replace('%2B', '+')",
|
|
"$name = json_path $page $..binaries[0].package.name",
|
|
"Write-Output \"$ver $link $name\""
|
|
],
|
|
"regex": "(?<ver>.*?) https://github.com/(?<link>.*?)/tag/(?<tag>.*?) (?<name>(?<prefix>OpenJDK[\\dU]*-[dejkr]{3})_x64_(?<suffix>.*))",
|
|
"replace": "${ver}"
|
|
},
|
|
"autoupdate": {
|
|
"architecture": {
|
|
"64bit": {
|
|
"url": "https://github.com/$matchLink/download/$matchTag/$matchName"
|
|
},
|
|
"32bit": {
|
|
"url": "https://github.com/$matchLink/download/$matchTag/$matchPrefix_x86-32_$matchSuffix"
|
|
}
|
|
},
|
|
"hash": {
|
|
"url": "$url.sha256.txt",
|
|
"find": "^([a-fA-F0-9]+)\\s"
|
|
}
|
|
}
|
|
}
|