Allow Oracle JDK 21 usage

This commit is contained in:
Julien Dubois 2023-09-22 15:02:15 +02:00
parent 0ab4596768
commit 6c633eb725
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ export class OracleDistribution extends JavaBase {
`${ORACLE_DL_BASE}/${major}/archive/jdk-${range}_${platform}-${arch}_bin.${extension}` `${ORACLE_DL_BASE}/${major}/archive/jdk-${range}_${platform}-${arch}_bin.${extension}`
); );
if (parseInt(major) < 17) { if (parseInt(major) < 21) {
throw new Error('Oracle JDK is only supported for JDK 17 and later'); throw new Error('Oracle JDK is only supported for JDK 21 and later');
} }
for (const url of possibleUrls) { for (const url of possibleUrls) {