| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
tests/distributors/distribution-factory.test.ts:127
it.each(['adopt', 'adopt-hotspot', 'adopt-openj9'])(
'does not support legacy Adopt distribution %s',
async distributionName => {
expect(
await getJavaDistribution(distributionName, installerOptions('jdk'))
).toBeNull();
}
src/distributions/distribution-factory.ts:32
switch (distributionName) {
case JavaDistribution.JdkFile: {
const {LocalDistribution} = await import('./local/installer.js');
return new LocalDistribution(normalizedInstallerOptions, jdkFile);
}
README.md:36
- **Legacy AdoptOpenJDK distributions were removed.** Replace `adopt` or `adopt-hotspot` with `temurin`, and replace `adopt-openj9` with `semeru`.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Description:
AdoptOpenJDK distribution inputs are removed in v6 instead of being treated as aliases. Users must migrate HotSpot workflows to Temurin and OpenJ9 workflows to IBM Semeru.
Runtime behavior
Migration guidance
Repository updates
Related issue:
Handled by linked issue.
Check list: