Skip to content

Commit e2885e6

Browse files
Merge pull request #3916 from OpenLiberty/staging
Added Support for MP 7.0 zip
2 parents 810b561 + d298d3e commit e2885e6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/content/_assets/js/builds.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ var allowed_builds = {
5858
'jakartaee9.zip',
5959
'javaee8.zip',
6060
'kernel.zip',
61+
'microProfile7.zip',
6162
'microProfile6.zip',
6263
'microProfile5.zip',
6364
'microProfile4.zip',
@@ -417,6 +418,11 @@ function render_builds(builds, parent) {
417418
'<td headers="' +
418419
tableID +
419420
'_package">MicroProfile 6</td>';
421+
} else if (package_name.indexOf('microprofile7') > -1) {
422+
package_column =
423+
'<td headers="' +
424+
tableID +
425+
'_package">MicroProfile 7</td>';
420426
} else if (package_name.indexOf('kernel') > -1) {
421427
package_column =
422428
'<td headers="' +
@@ -758,6 +764,7 @@ function sortBetaLocations(package_locations_param) {
758764
"jakartaee9",
759765
"webProfile10",
760766
"webProfile9",
767+
"microProfile7",
761768
"microProfile6",
762769
"microProfile5",
763770
"javaee8",

0 commit comments

Comments
 (0)