summaryrefslogtreecommitdiff
path: root/com.ibm.java/java17.json
blob: 45363a6771e3e00aa889f0d1422830ab635e1c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
{
    "formatVersion": 1,
    "name": "Java 17",
    "releaseTime": "2021-12-09T19:35:32+00:00",
    "runtimes": [
        {
            "checksum": {
                "hash": "8f7d27633cdd7d66ebd63ccf5b653b7605c76c35189ca1459b4826ec2654c7a4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-02-26T12:00:51+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8.1_openj9-0.57.0/ibm-semeru-open-jre_x64_linux_17.0.18.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "7c6df74259edd2dd0662e4714c131fd49e12a3f358905ad517d7e6a58f587fc0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-02-26T12:00:51+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8.1_openj9-0.57.0/ibm-semeru-open-jre_x64_mac_17.0.18.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "96970c999032f53833bad9de153b8b617e4ce6f26867489c46ffdfca5f27bd19",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-02-26T12:00:51+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8.1_openj9-0.57.0/ibm-semeru-open-jre_x64_windows_17.0.18.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "704cb122c5d9eb66d6efe551bd525768735d6a3ffaf0f227e4c19e20e4be11f9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-02-26T12:00:51+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8.1_openj9-0.57.0/ibm-semeru-open-jre_aarch64_mac_17.0.18.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "af8099780c9558602b4af15b80e0b4cfd55b7434d97e086d01087685f388df15",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-02-26T12:00:51+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8.1_openj9-0.57.0/ibm-semeru-open-jre_aarch64_linux_17.0.18.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "b6c43cc8b824d69338e15ea220f2ca5b94a04ae657c95ad4372560b4ba0163e7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:05:07+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8_openj9-0.57.0/ibm-semeru-open-jre_x64_linux_17.0.18_8_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "f52cd653e4be9b32fa17c07685fad0b1e84e464cc9e7c2f16886acd6197449a7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:05:07+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8_openj9-0.57.0/ibm-semeru-open-jre_x64_mac_17.0.18_8_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "2eaf4b3b69860bc1b46b67288d2caea56911fe8f4cd331d1d3f87a9a91e0a7a6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:05:07+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8_openj9-0.57.0/ibm-semeru-open-jre_x64_windows_17.0.18_8_openj9-0.57.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "3d582d90d2ea934d6b35059c5618ed0b2c1e63645a15a77d7c68116e5cc69d54",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:05:07+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8_openj9-0.57.0/ibm-semeru-open-jre_aarch64_mac_17.0.18_8_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "a01d4aec9c66e9f8cefd63564ee5be9d31df01b5bab8007ba7ed0410fa97a490",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.18+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:05:07+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.18%2B8_openj9-0.57.0/ibm-semeru-open-jre_aarch64_linux_17.0.18_8_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "13c8bbbb9ffa57b33a48ca018fd281e69dd6fdbb4e96ca7df72a49db614d899c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.17+10",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:45:38+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.17%2B10_openj9-0.56.0/ibm-semeru-open-jre_x64_linux_17.0.17_10_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "78f208bc8c61337aaebcbf60fe76f17d11fec3cf73cc15ae7d4f43c453a9609d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.17+10",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:45:38+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.17%2B10_openj9-0.56.0/ibm-semeru-open-jre_x64_mac_17.0.17_10_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "38c78acd02c4df866aa2ce2839012968dbddccc3c2898e4000ed08b663ff7e2d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.17+10",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:45:38+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.17%2B10_openj9-0.56.0/ibm-semeru-open-jre_x64_windows_17.0.17_10_openj9-0.56.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "05e9ee0e2884550077847bd7b269adf0d4c5f427b47a3ebda03d8beb4f62e7bb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.17+10",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:45:38+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.17%2B10_openj9-0.56.0/ibm-semeru-open-jre_aarch64_mac_17.0.17_10_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "56f11335a3c67f96f0dc8ca4ebe02239fa300fd871ab46de27103666998b2aec",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.17+10",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:45:38+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.17%2B10_openj9-0.56.0/ibm-semeru-open-jre_aarch64_linux_17.0.17_10_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "348de4a541d7e679e027942c4f056fa7c2151711cd3c86d0b582879add89fea8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.16+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T18:00:16+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.16%2B8_openj9-0.53.0/ibm-semeru-open-jre_x64_linux_17.0.16_8_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "a0b2e06bc0557573f4572b1a16400c09caa3e8ee181641bd9b3bd864e751a129",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.16+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T18:00:16+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.16%2B8_openj9-0.53.0/ibm-semeru-open-jre_x64_mac_17.0.16_8_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "6222addcf9657c89410fd9e22358ce0c2d9148aee8c2ebce2ed85465bbaeb513",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.16+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T18:00:16+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.16%2B8_openj9-0.53.0/ibm-semeru-open-jre_x64_windows_17.0.16_8_openj9-0.53.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "5b40aace93e3bbeba1effc5dac484f5bdd202be7647846a33a1c96d151aa813c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.16+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T18:00:16+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.16%2B8_openj9-0.53.0/ibm-semeru-open-jre_aarch64_mac_17.0.16_8_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "f80dcecc7ea669de08fc8ac807e9360fecaa0199051d6f23ececbb5089af3fb7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.16+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T18:00:16+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.16%2B8_openj9-0.53.0/ibm-semeru-open-jre_aarch64_linux_17.0.16_8_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "9a44da58055525719ddb87b2fe21a02562a0897b8b537a65b7a94b1ab28f7eb0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.15+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:51+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.15%2B6_openj9-0.51.0/ibm-semeru-open-jre_aarch64_linux_17.0.15_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 17,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "52cc032fda0444f4b92464f55c4135f762ce4ecb4e2e3e5835206220293e8399",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.15+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:51+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.15%2B6_openj9-0.51.0/ibm-semeru-open-jre_aarch64_mac_17.0.15_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 17,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "c4cc045bfd63fc6412251fef184c91a1acad76d74ee48561fd48c174fb1278d3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.15+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:51+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.15%2B6_openj9-0.51.0/ibm-semeru-open-jre_x64_linux_17.0.15_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 17,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "400ec6c2329e2df750125a515f3949e70018d1676d64880a1096fc10162d49d7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.15+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:51+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.15%2B6_openj9-0.51.0/ibm-semeru-open-jre_x64_mac_17.0.15_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 17,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "c31bd1b1f7a2a91075d6b86e12415b53d79fbe687499144eb1c708db2dcd11f0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.15+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:51+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.15%2B6_openj9-0.51.0/ibm-semeru-open-jre_x64_windows_17.0.15_6_openj9-0.51.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 17,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "f26b2b2d8654a09fade4c0ce5819e72e00f1e751bb11a4731537e834900c3282",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.14+7",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:47:36+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.14%2B7_openj9-0.49.0/ibm-semeru-open-jre_aarch64_linux_17.0.14_7_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "43e7328f2be26d02ca17508145665ca0213dc782c178fe1435cad1d89db98b17",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.14+7",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:47:36+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.14%2B7_openj9-0.49.0/ibm-semeru-open-jre_aarch64_mac_17.0.14_7_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "e2469f16a616ee467d6a590ec043ee9464b039d2f9859327dd36d50953cd60bf",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.14+7",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:47:36+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.14%2B7_openj9-0.49.0/ibm-semeru-open-jre_x64_linux_17.0.14_7_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "51797c57f606eb256d3e2b514a2625df87bffb2dc794031f2827be6357a24e4c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.14+7",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:47:36+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.14%2B7_openj9-0.49.0/ibm-semeru-open-jre_x64_mac_17.0.14_7_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "5f73f5207eddf290cc3a3b17231614bf8e76dbbfae1805c02232ed9953d4a9c2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.14+7",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:47:36+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.14%2B7_openj9-0.49.0/ibm-semeru-open-jre_x64_windows_17.0.14_7_openj9-0.49.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "e737c9d2f4fc5a4fd5e58ec044ef9f118ffe2fbd5a7a4953fa02cd9d56b6cb47",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.13+11",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:20:31+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.13%2B11_openj9-0.48.0/ibm-semeru-open-jre_aarch64_linux_17.0.13_11_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 11,
                "major": 17,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "0cbc8917a20d7c495d765f6986b5fe0b08133fcf48ef6b43d92b61f5c4f325d7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.13+11",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:20:31+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.13%2B11_openj9-0.48.0/ibm-semeru-open-jre_x64_linux_17.0.13_11_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 11,
                "major": 17,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "75f7940927be5a4e84b474ea102f4aca0f75818091d8ad255123d6f4f8a3f9bb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.13+11",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:20:31+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.13%2B11_openj9-0.48.0/ibm-semeru-open-jre_x64_mac_17.0.13_11_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 11,
                "major": 17,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "bbf1a6606ecd2aa3c62aa2bd4426463b299e88f4398663fdadbedfc1b3260cba",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.13+11",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:20:31+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.13%2B11_openj9-0.48.0/ibm-semeru-open-jre_aarch64_mac_17.0.13_11_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 11,
                "major": 17,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "025248ac87c433d681b241b9ce5aa0f3257b5ecb024ce46eb536343db30680e6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.13+11",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:20:31+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.13%2B11_openj9-0.48.0/ibm-semeru-open-jre_x64_windows_17.0.13_11_openj9-0.48.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 11,
                "major": 17,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "cb2bfe44358158dcaa903e1f9aeb3e895adc1d5ace1f764e0dc1b1aeb4ffb77e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-09-10T18:03:52+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.1/ibm-semeru-open-jre_aarch64_linux_17.0.12_7_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "f218a8e1596197a3e89e9eff3ef4dc3e56ff41d7e293261e02cbc589a418998e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-09-10T18:03:52+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.1/ibm-semeru-open-jre_x64_linux_17.0.12_7_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "05db8b4dfcc4fd28acb0763fa10fe155d2727e9618aa97eec9a40efc8dee28e9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-09-10T18:03:52+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.1/ibm-semeru-open-jre_x64_windows_17.0.12_7_openj9-0.46.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "9560d8a5f789cc5f7f0e7175ed8ac3c2f9db2966c5a313532fea0f5b65f36ae3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-09-10T18:03:52+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.1/ibm-semeru-open-jre_aarch64_mac_17.0.12_7_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "afae2d2197085933e56a110ac3662fd0ec21c89a9865043814ce302cbb66c1da",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-09-10T18:03:52+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.1/ibm-semeru-open-jre_x64_mac_17.0.12_7_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "c0e0ccad2ceb4e35321fcf7871571c1bc3ccaf98a41b7e15c530ea510fe646e3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:23+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.0/ibm-semeru-open-jre_aarch64_linux_17.0.12_7_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "8227ff054505167ca7f379ad0ec618614ba72ab90fb4bf8f90b7db87d2f122f7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:23+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.0/ibm-semeru-open-jre_x64_linux_17.0.12_7_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "2d68711f7acaf1b1a2b84b1414c19a854d798045b657de0f61ed6edad74470fd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:23+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.0/ibm-semeru-open-jre_x64_windows_17.0.12_7_openj9-0.46.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "015ecd9ea3ec0c67713e7f3a8f0cbd8c75e3f93423db2af50038f043c26957ec",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:23+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.0/ibm-semeru-open-jre_aarch64_mac_17.0.12_7_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "6f46c12f2961fc99f9530f4f040bba07b1dc0ffd4994bd3095e55fe203bb2cea",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.12+7",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:23+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.12%2B7_openj9-0.46.0/ibm-semeru-open-jre_x64_mac_17.0.12_7_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "b6764398cdbcf824f2b99c095d58efb69b140d0c9824239560d58478f67bc15b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.11+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:40+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_17.0.11_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 11
            }
        },
        {
            "checksum": {
                "hash": "a47d3fabdf14c0f56561e5be24d689007f42cb079af0c89db235a58899fd4ab3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.11+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:40+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_17.0.11_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 11
            }
        },
        {
            "checksum": {
                "hash": "afa9cb633c8023865af0d909fffcbf5983c352a18201f18f36fdef37b2400dbe",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.11+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:40+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_windows_17.0.11_9_openj9-0.44.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 11
            }
        },
        {
            "checksum": {
                "hash": "45217936edac4adce6094a9b4b44b5d9976528a9cd89733e2de5e7888f661782",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.11+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:40+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_mac_17.0.11_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 11
            }
        },
        {
            "checksum": {
                "hash": "3de66d04c1bd1d506272100cacf220a7576ba13588d39c692b84fd8b82b5bd0b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.11+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:40+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.11%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_mac_17.0.11_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 11
            }
        },
        {
            "checksum": {
                "hash": "ee2f15b9f0719eccf8e7d51404f1187c754dec55ef546b469786a72e1e9e1480",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.10+7",
            "packageType": "jre",
            "releaseTime": "2024-02-07T13:45:38+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_17.0.10_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "12c816256b455cfa0e6d1fc659b5ba99fa503b16778c922bc2b9d26150037009",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.10+7",
            "packageType": "jre",
            "releaseTime": "2024-02-07T13:45:38+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_17.0.10_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "a12ab9f82e08dce819f5f93a4bc0204d3281488965895cd8e5febf3b4b678a17",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.10+7",
            "packageType": "jre",
            "releaseTime": "2024-02-07T13:45:38+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_windows_17.0.10_7_openj9-0.43.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "019337733a8a6cfa6d24dc73a0b81e060718a0bef458bc4345445f46fd883468",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.10+7",
            "packageType": "jre",
            "releaseTime": "2024-02-07T13:45:38+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_mac_17.0.10_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "788ddbcc638cb88ddd565cba58ff1735eb2589f670ac5b7dc2ed40aefca82149",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.10+7",
            "packageType": "jre",
            "releaseTime": "2024-02-07T13:45:38+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_mac_17.0.10_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "9760aa27a5790a8c20a702ff5f036535f3df51d3fb291bb5254b5ae76e096bad",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.9+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:17:23+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.9%2B9_openj9-0.41.0/ibm-semeru-open-jre_aarch64_linux_17.0.9_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "1caf409f33f7738efe37742197525b5ae6244d6383b2017e7b8e925dc0b6a329",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.9+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:17:23+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.9%2B9_openj9-0.41.0/ibm-semeru-open-jre_x64_linux_17.0.9_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "2fea332c9d19227100ba0206130b9afce21ca6b0f9cf3b9dfba5dcb6dfa9fc51",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.9+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:17:23+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.9%2B9_openj9-0.41.0/ibm-semeru-open-jre_x64_windows_17.0.9_9_openj9-0.41.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "fbd093ab7218c916aa4f49ac851635020dd1c8a98a98158fc44a6565e3d182ed",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.9+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:17:23+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.9%2B9_openj9-0.41.0/ibm-semeru-open-jre_aarch64_mac_17.0.9_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "f5781de29132c04f54341349e99954ec3cfbdbc65fdebdd00feff47c68793299",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.9+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:17:23+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.9%2B9_openj9-0.41.0/ibm-semeru-open-jre_x64_mac_17.0.9_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 17,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "1cc6116a42b0f014468fe5c8b303743722b39468319f5db3a677f4a2d0e61e4b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:58+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_aarch64_linux_17.0.8.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "3fbfda5ac68c81dd1535203b4ed9e0f3943ce4eca5c74d9fb0a0d6146fee53e3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:58+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_x64_linux_17.0.8.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "b17618f30ea0b59c9eca4429cfca5ae7c0973d25afa0a63a95e9b2d9038aeda4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:58+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_x64_windows_17.0.8.1_1_openj9-0.40.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "f5c922ad6a0be1cc4371b96c6ed6efde4790d8c05827b0a0fb3e633459f4b8e0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:58+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_aarch64_mac_17.0.8.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "82d1e1dd01df31d04d43d910c90208ce16556da78edf7bf8a9812e84fbe4cadb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:58+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_x64_mac_17.0.8.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "b8904df2fee0797e493e3482fddb873b25d1e05f27053a2d96a25310c2dce3d4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+7",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:34:10+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8%2B7_openj9-0.40.0/ibm-semeru-open-jre_aarch64_linux_17.0.8_7_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "461aab09409b3ac26ded0ca921171e141c6b1400a17d8026e924109518b365d4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+7",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:34:10+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8%2B7_openj9-0.40.0/ibm-semeru-open-jre_x64_linux_17.0.8_7_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "a16cb1f64071a3ee5833c200145b22194c6107e77bbaa4ce2822f6e762e5c82d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+7",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:34:10+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8%2B7_openj9-0.40.0/ibm-semeru-open-jre_x64_windows_17.0.8_7_openj9-0.40.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "4e0547b1db4be7dc070aa32e4ca64647b63fafb75c8cef3b0756df477921c62b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+7",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:34:10+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8%2B7_openj9-0.40.0/ibm-semeru-open-jre_aarch64_mac_17.0.8_7_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "11c0145e2b25539bef889fd4803e375df2468a154671aef484f5139feb17b788",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.8+7",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:34:10+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.8%2B7_openj9-0.40.0/ibm-semeru-open-jre_x64_mac_17.0.8_7_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "601dba428fe9d9b5a883aaccbdd37f88c1fb0da2e5b5de65b40cf0a4a0e5fccb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.7+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T17:29:33+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.7%2B7_openj9-0.38.0/ibm-semeru-open-jre_aarch64_linux_17.0.7_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "ffda41aa8390d14edbce1775d652f0e4e779df025ac1404c1970802697963aab",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.7+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T17:29:33+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.7%2B7_openj9-0.38.0/ibm-semeru-open-jre_x64_linux_17.0.7_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "5891b5691a22c370c2a3a07479a03ba445dbb6d1ce0fe5b7500b5e8bffa510ac",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.7+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T17:29:33+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.7%2B7_openj9-0.38.0/ibm-semeru-open-jre_x64_windows_17.0.7_7_openj9-0.38.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "037b840e025792ebbeb191969840084ee01e77c4b90d8b4f00cd4be6b79032a7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.7+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T17:29:33+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.7%2B7_openj9-0.38.0/ibm-semeru-open-jre_x64_mac_17.0.7_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "7a93a3dcd0e2d07b35efe91db58808693605dab81f67d9b0a0b152f66260de72",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.7+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T17:29:33+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.7%2B7_openj9-0.38.0/ibm-semeru-open-jre_aarch64_mac_17.0.7_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "492bd87e39fc0eb78218746e98c4c0f6730af9c998b872c1a175c0e907d11510",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.6+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:56:48+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.6%2B10_openj9-0.36.0/ibm-semeru-open-jre_aarch64_linux_17.0.6_10_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "69ca1728f9aad7031908bd9a939b5a9a9c5e931d65bb5c72cbe6f599c7d00cc6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.6+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:56:48+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.6%2B10_openj9-0.36.0/ibm-semeru-open-jre_x64_linux_17.0.6_10_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "caca5ab1a60cf53bb67bbfbab00f7cab786e031a4e43bf4e7c9df79e2333bc67",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.6+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:56:48+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.6%2B10_openj9-0.36.0/ibm-semeru-open-jre_x64_windows_17.0.6_10_openj9-0.36.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "d64a4eccb27cfe4c2312d2b1cc40f71889bdac28c91cb04727d70e8cc04480bd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.6+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:56:48+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.6%2B10_openj9-0.36.0/ibm-semeru-open-jre_aarch64_mac_17.0.6_10_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "9ab0db7a612e5fcf742df95efa2efd1cdf3bed5045ce75495d5dd2f1904ab00f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.6+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:56:48+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.6%2B10_openj9-0.36.0/ibm-semeru-open-jre_x64_mac_17.0.6_10_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 17,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "8f934ce1745f52a067bdeb56b3b9e9192f51e674ff2956a1e53b33e44ea5ca42",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.5+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:08+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.5%2B8_openj9-0.35.0/ibm-semeru-open-jre_aarch64_linux_17.0.5_8_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "759f9c507e0faf53b260ee9f492bab8fdeb8091bdecad904134861714e4d913b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.5+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:08+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.5%2B8_openj9-0.35.0/ibm-semeru-open-jre_x64_linux_17.0.5_8_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "6b92b56a7795dbe52631c1d77addd8ffeb426d830fae192c349e8b9982a5d54d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.5+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:08+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.5%2B8_openj9-0.35.0/ibm-semeru-open-jre_x64_windows_17.0.5_8_openj9-0.35.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "17d456eaeb03dc1cac666a6fa81e0a3dbcd47c987555660b54a425f972962487",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.5+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:08+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.5%2B8_openj9-0.35.0/ibm-semeru-open-jre_x64_mac_17.0.5_8_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "0114aada7edc773346a6729c992bdd2f5ff8aedec756547f42839bb37c12e3bf",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:55+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_aarch64_linux_17.0.4.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "338ea5fe72f5a1a075c02953882a985dee437f0b60e432eacb02ba8ca15b3e0b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:55+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_x64_linux_17.0.4.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "ea0e9bf5513a512d5b9742fa4325ed48c1d2545fe8efa2f47bf3e2e18bf0c169",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:55+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_x64_windows_17.0.4.1_1_openj9-0.33.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "c389df751c0eb8791c93edfc70f2b7d67c405cfe8b33d7b128af64b615021a50",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:55+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_x64_mac_17.0.4.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "6092f04bafaee955c972c2cebdbf2daaffd76600b7754ce5863c8e39b39daa70",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:55+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_aarch64_mac_17.0.4.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "6c40c1e0d7ee0509c44465e9f26dd970904137a95fd751e6447b1d6a9ef5092a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:57:51+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4%2B8_openj9-0.33.0/ibm-semeru-open-jre_aarch64_linux_17.0.4_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "b2c176f8aa8cc7138d4c22ce9298d8f49597e1d8e3fdd33125898e5ee0182c93",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:57:51+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4%2B8_openj9-0.33.0/ibm-semeru-open-jre_x64_linux_17.0.4_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "02f7b65882c983909ed01ca57abdfd721b23cd20246609215ddb4b17681a0418",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:57:51+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4%2B8_openj9-0.33.0/ibm-semeru-open-jre_x64_windows_17.0.4_8_openj9-0.33.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "dd5a65c3bd2a6d62ca2710fa5487cc908748eee93295a0ed53ea9ce9f93209de",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:57:51+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4%2B8_openj9-0.33.0/ibm-semeru-open-jre_x64_mac_17.0.4_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "4057c94cd46b814cc5a4d683d5f0b95dbd0b9e13e8c2e11155561ad0d8bec85b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.4+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:57:51+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.4%2B8_openj9-0.33.0/ibm-semeru-open-jre_aarch64_mac_17.0.4_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "f899948ea0c5dc80a66f801db585939a25a4ae7e1f21a9a8f3bf3749c3baa87f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.3+7",
            "packageType": "jre",
            "releaseTime": "2022-04-23T04:31:04+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.3%2B7_openj9-0.32.0/ibm-semeru-open-jre_aarch64_linux_17.0.3_7_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "dad35fec82047e3a82c6e2dda8b53ee763b55aaedaed13b7b130856f4a3ffd35",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.3+7",
            "packageType": "jre",
            "releaseTime": "2022-04-23T04:31:04+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.3%2B7_openj9-0.32.0/ibm-semeru-open-jre_x64_linux_17.0.3_7_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "db31f434a615d4de198bf5c9a4e5760c283839e4e1608e900d51c72591360ce3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.3+7",
            "packageType": "jre",
            "releaseTime": "2022-04-23T04:31:04+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.3%2B7_openj9-0.32.0/ibm-semeru-open-jre_x64_windows_17.0.3_7_openj9-0.32.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "7ffcc2de9ae8b57c21b80d6aa5ea9bc0791c3ce2e22c45fc028422d6b4f9dd62",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.3+7",
            "packageType": "jre",
            "releaseTime": "2022-04-23T04:31:04+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.3%2B7_openj9-0.32.0/ibm-semeru-open-jre_x64_mac_17.0.3_7_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "7262e582454f6240fd7fe539e607bd19329f87d2aeb8c70151f0044573ece58c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.3+7",
            "packageType": "jre",
            "releaseTime": "2022-04-23T04:31:04+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.3%2B7_openj9-0.32.0/ibm-semeru-open-jre_aarch64_mac_17.0.3_7_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 17,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "862d3a95ffc0f861875c97ef589d8b6e447e9efacec1e92c05100c8fd5530324",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.2+8",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:12:15+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jre_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "0532de4469666097823eddb2340e33d04748fb43f2738b033d08456b5da56233",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.2+8",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:12:15+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jre_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "dfefd4a87a922c77dbdac2e129252f24f06b73e9a790e8075067b6f3659bfb6e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.2+8",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:12:15+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jre_x64_windows_17.0.2_8_openj9-0.30.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 17,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "881bd3ed924e6eb4d8e273942a9fc08819a4226494fb4358dde85d7976aa285e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.1+12",
            "packageType": "jre",
            "releaseTime": "2021-12-09T19:35:32+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jre_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 12,
                "major": 17,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "9b3073111bac6d32a37c84d532ab7e390d81e5fa12d354f52332a12035d55419",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.1+12",
            "packageType": "jre",
            "releaseTime": "2021-12-09T19:35:32+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jre_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 12,
                "major": 17,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "786c36009b3a9a10acefc5e0809947eb9dfe70f7e2c41847b5992dc92fb4943f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.1+12",
            "packageType": "jre",
            "releaseTime": "2021-12-09T19:35:32+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jre_x64_windows_17.0.1_12_openj9-0.29.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 12,
                "major": 17,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "5d0e4ebe1c1224cc7e183b7a5c67270b5a809a174744d9532f8a566412209f71",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre17.0.1+12",
            "packageType": "jre",
            "releaseTime": "2021-12-09T19:35:32+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jre_x64_mac_17.0.1_12_openj9-0.29.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 12,
                "major": 17,
                "minor": 0,
                "security": 1
            }
        }
    ],
    "uid": "com.ibm.java",
    "version": "java17"
}