-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openjdk: General-Availability to 23 and Early-Access to 24 (#528)
* openjdk: General-Availability to 23 and Early-Access to 24 * fix: update openjdk-ea.json as review
- Loading branch information
1 parent
b2b92e3
commit a09a454
Showing
3 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"description": "Official production-ready open-source builds of OpenJDK 23", | ||
"homepage": "https://jdk.java.net/23", | ||
"version": "23", | ||
"license": "GPL-2.0-only WITH Classpath-exception-2.0", | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://download.java.net/java/GA/jdk23/3c5b90190c68498b986a97f276efd28a/37/GPL/openjdk-23_windows-x64_bin.zip", | ||
"hash": "cba5013874ba50cae543c86fe6423453816c77281e2751a8a9a633d966f1dc04" | ||
} | ||
}, | ||
"extract_dir": "jdk-23", | ||
"env_add_path": "bin", | ||
"env_set": { | ||
"JAVA_HOME": "$dir" | ||
}, | ||
"checkver": { | ||
"url": "https://jdk.java.net/23", | ||
"re": "/(?<type>early_access|GA)/(?<path>jdk(?<major>[\\d.]+)(?:.*)?/(?<build>[\\d]+)(?:/GPL|/binaries)?)/(?<file>openjdk-(?<version>[\\d.]+)(?<ea>-ea)?(?:\\+[\\d]+)?_windows-x64_bin.(zip|tar.gz))", | ||
"replace": "${version}-${build}${ea}" | ||
}, | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://download.java.net/java/$matchType/$matchPath/$matchFile" | ||
} | ||
}, | ||
"hash": { | ||
"url": "$url.sha256" | ||
}, | ||
"extract_dir": "jdk-$matchVersion" | ||
} | ||
} |