-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathmicrosoft-lts-jdk.json
More file actions
45 lines (45 loc) · 1.68 KB
/
microsoft-lts-jdk.json
File metadata and controls
45 lines (45 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"description": "The Microsoft Build of OpenJDK is a new no-cost long-term supported distribution and Microsoft's new way to collaborate and contribute to the Java ecosystem",
"homepage": "https://www.microsoft.com/openjdk/",
"version": "25.0.2",
"license": "GPL-2.0-only WITH Classpath-exception-2.0",
"architecture": {
"64bit": {
"url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.2-windows-x64.zip",
"hash": "38d1a42d189c50b24152014ef131931f25f4cc80400ce618f0477f5e4e5aa252"
},
"arm64": {
"url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.2-windows-aarch64.zip",
"hash": "e0d9380cf3d0b5efc675664fa0db22cc9eb5d77c4fd2a132f4b58df0608593cf"
}
},
"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://learn.microsoft.com/en-us/java/openjdk/download",
"regex": "(?<ms>microsoft-jdk-((?<ver>25[\\d.]*?).(?<build>[\\d]+).[\\d]+)-windows-x64).zip"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://aka.ms/download-jdk/microsoft-jdk-$version-windows-x64.zip"
},
"arm64": {
"url": "https://aka.ms/download-jdk/microsoft-jdk-$version-windows-aarch64.zip"
}
},
"hash": {
"url": "$url.sha256sum.txt"
},
"extract_dir": "jdk-$matchVer+$matchBuild"
}
}