Skip to content

Commit

Permalink
Merge pull request #331 from AGulev/microsoft-11.0.15
Browse files Browse the repository at this point in the history
Add Microsoft Java 11.0.15
  • Loading branch information
marko-zivic-93 committed Jun 8, 2022
2 parents 05b9e39 + 72dec17 commit ec303d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions __tests__/distributors/microsoft-installer.test.ts
Expand Up @@ -27,6 +27,11 @@ describe('findPackageForDownload', () => {
'11.0.13',
'11.0.13',
'https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
],
[
'11.0.15',
'11.0.15',
'https://aka.ms/download-jdk/microsoft-jdk-11.0.15-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}'
]
])('version is %s -> %s', async (input, expectedVersion, expectedUrl) => {
const result = await distribution['findPackageForDownload'](input);
Expand Down
3 changes: 3 additions & 0 deletions dist/setup/index.js
Expand Up @@ -101729,6 +101729,9 @@ class MicrosoftDistributions extends base_installer_1.JavaBase {
jdkVersions.push({
version: [11, 0, 13, 8, 1]
});
jdkVersions.push({
version: [11, 0, 15]
});
}
return jdkVersions;
});
Expand Down
3 changes: 3 additions & 0 deletions src/distributions/microsoft/installer.ts
Expand Up @@ -93,6 +93,9 @@ export class MicrosoftDistributions extends JavaBase {
jdkVersions.push({
version: [11, 0, 13, 8, 1]
});
jdkVersions.push({
version: [11, 0, 15]
});
}

return jdkVersions;
Expand Down

0 comments on commit ec303d3

Please sign in to comment.