summaryrefslogtreecommitdiff
path: root/net.adoptium.java/java11.json
blob: 452642e839975b5b57df0500b9bb68d2ec07c6e9 (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
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
{
    "formatVersion": 1,
    "name": "Java 11",
    "releaseTime": "2021-08-01T13:49:49+00:00",
    "runtimes": [
        {
            "checksum": {
                "hash": "052f09448d5b8d9afb7a8e5049d40d7fafa8f5884afe6043bb2359787fd41e84",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-10-17T13:12:47+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.25%2B9/OpenJDK11U-jre_x64_windows_hotspot_11.0.25_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "84cd7101f39172a4db085fb52940595bb14dad6bc3afb5bf82ee497eceaf86d3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-10-17T13:12:47+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.25%2B9/OpenJDK11U-jre_x64_linux_hotspot_11.0.25_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "e37ba6636e31f3c9191ac7e3fd0ab7fb354a2f3b320d68bfb95efd1e053134c9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-10-17T13:12:47+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.25%2B9/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.25_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "97e0e32b12460e92e3b4632492b3ccd648cf03a6023ca2ee7dc81f7cfa3bd275",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-10-17T13:12:47+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.25%2B9/OpenJDK11U-jre_x64_mac_hotspot_11.0.25_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "e0c1938093da3780e4494d366a4e6b75584dde8d46a19acea6691ae11df4cda5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_x64_linux_hotspot_11.0.24_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "1fe97cdaad47d7d108f329c6e4560b46748ef7f2948a1027812ade0bbc2a3597",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.24_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "78e10f7d025898b7dc7436b2bb986570283cca3cb4a654991a4f9671231da536",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_x64_windows_hotspot_11.0.24_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "764d30489541ae088d2d0a75d46524ec35797dcdbe4a11b6bfbaee7957d8f77e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_x64_mac_hotspot_11.0.24_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "809c13c1c3abefe09c8396b18d6dd64837f30bf7bda7cbe317c6567bcd161d7a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.24_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "fa9a6abdc28c4190a101ee8ab56c78426337007d391f063b9c24ec944eff80f6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.24_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "bf893085627c6ec484e63aa1290276b23bcfee547459da6b0432ae9c5c1be22a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-07-17T21:00:29+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.24%2B8/OpenJDK11U-jre_arm_linux_hotspot_11.0.24_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "786a72296189ba8e43999532aa73730d87ec1fce558eb3c4e98b611b423375e3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_x64_linux_hotspot_11.0.23_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "7290ace47a030d89ea023c28e7aa555c9da72b4194f73b39ec9d058011bf06dd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.23_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "8ecc59f0bda845717cecbc6025c4c7fcc26d6ffe48824b8f7a5db024216c5fb4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.23_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "6af3cb9e4fb90d730639d63a0588e4812bc8caf8cf0dcc5730a81917015cd8f6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_x64_windows_hotspot_11.0.23_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "9855769dddc3f3b5a1fb530ce953025b1f7b3fac861628849b417676b1310b1f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_x64_mac_hotspot_11.0.23_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "402d7c7cd647daaf1c20839ad21048e2c0a1bab139405ae5901b3b83f5248560",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.23_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "025f994549708f7291ce3b0fa7c41f7e78ec3af3eae3f85fffe9c5fa4a54889f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:12:39+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.23%2B9/OpenJDK11U-jre_arm_linux_hotspot_11.0.23_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "9be46abd4a94474edbbaeb7a4aabab7874dd1639f2f5d95df6b974004a14f45d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-22T14:56:44+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7.1/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.22_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "3a0fec1b9ef38d6abd86cf11f6001772b086096b6ec2588d2a02f1fa86b2b1de",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_x64_linux_hotspot_11.0.22_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "63b509d8f809d2b03e26711f11194ffe0ef3382edbcc5f9255572f7d22a7e757",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.22_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "a2f404d6ce8a1911a0e8c8fd940643f3b0227a205e3bed5f521a48d0fcc14cf2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_x64_windows_hotspot_11.0.22_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "46e2bff7d5f419ac7c2fad29e78bfacf49ead4a2de1aba73b6329128f6d1f707",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.22_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "e7d3e80242ced088f8205b7e0f37a61d167f5faee513cd93fd114e2d210b237d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.22_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "a5ab40aa53ecd413a8af738e66855d423e64b5389f876a4825e2cbdb45e9cfb3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_arm_linux_hotspot_11.0.22_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "628f0a09b4a2a4d0d3975eec3a2c45d9bfcd7e699db2afd9db51aa4ae436b505",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:02:29+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jre_x64_mac_hotspot_11.0.22_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "43d29affe994a09de31bf2fb6f8ab6d6792ba4267b9a2feacaa1f6e042481b9b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_x64_mac_hotspot_11.0.21_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "8dc527e5c5da62f80ad3b6a2cd7b1789f745b1d90d5e83faba45f7a1d0b6cab8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.21_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "a93d8334a85f6cbb228694346aad0353a8cb9ff3c84b5dc3221daf2c54a11e54",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_x64_windows_hotspot_11.0.21_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "156861bb901ef18759e05f6f008595220c7d1318a46758531b957b0c950ef2c3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_x64_linux_hotspot_11.0.21_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "bcac3231195a95cac397a35410bfa3f0945ec03e5194e7b0c1d0e785a48f8b76",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.21_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "7c12ca8f195bf719368016a1c3e7f06f8f06e4a573dc3dce0befbe30a388ffa3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_arm_linux_hotspot_11.0.21_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "312402085c7dda16cb01adbc263bbedea98094399f1b59376278e727dc4a9be9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-10-18T15:19:20+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.21_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "89e610ed00f7b79ebf3d350a1076f485b614ede93c6591d1c90b2f0fe85ca01d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_x64_windows_hotspot_11.0.20.1_1.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "f05eb1d20f5c0f4e84b4722e3431b6112dd3507f8cddf47d1061dc67b28361c6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.20.1_1.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "0f69f5c05cb7fb2804be3735ed31ce92acff1a51ef29be544b89f83c90d2ea2a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.20.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "bc6ed047e50b09611b419c878e4ea3ea36594bd79f64001a5b53decf72669d33",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_x64_linux_hotspot_11.0.20.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "2fc1cc935897312c0bc2515b2e7ea1fa3b267e77305a1b51a8c3917d92af380f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_arm_linux_hotspot_11.0.20.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "c5a4003a579ea0633a4830bc5eae2f3aacf9990354bbac0393d1744e06907383",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_x64_mac_hotspot_11.0.20.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "733e7efdb2f0557859c36f3f40762782f4946c123b8a4bea851175db3b24b2f0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-29T14:10:55+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.20.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "45e190920fb3ec61ee5213a7bd98553abf2ae7692eb9daa504fcdc9d59a7cfc4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.20_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "ffb070c26ea22771f78769c569c9db3412e6486434dc6df1fd3c3438285766e7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_x64_linux_hotspot_11.0.20_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "d2c9a8af33a31a08840c37448b349fafb24d82a01a16c9231c105f0f0e09d2da",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_x64_mac_hotspot_11.0.20_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "06b88b61d85d069483d22ff4b0b8dbdfdb321bd55d8bbfe8e847980a2586b714",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_x64_windows_hotspot_11.0.20_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "b1717fa3ba6452b0fc3d62530e0ba0eaeab0b7717fd4c42770f8656b47bb75f3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.20_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "1e2a02364084b2d054e88a871f3efaa4450ae4f087b8f806fd95c15d5affcc7b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_arm_linux_hotspot_11.0.20_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "c8d737646bca7164c9a08acba6b37a08b751860daae694067bec6719e4da072e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-07-20T10:16:48+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.20_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "32dcf760664f93531594b72ce9226e9216567de5705a23c9ff5a77c797948054",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_x64_linux_hotspot_11.0.19_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "1fe4b20d808f393422610818711c728331992a4455eeeb061d3d05b45412771d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.19_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "285fc36b709d24b5976ee89fdc4ffbeb9e258bc905e7737a42efccfd2d725b59",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_x64_windows_hotspot_11.0.19_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "78a07bd60c278f65bafd0df93890d909ff60259ccbd22ad71a1c3b312906508e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.19_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "87e439b2193e1a2cf1a8782168bba83b558f54e2708f88ea8296184ea2735c89",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_x64_mac_hotspot_11.0.19_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "cb754b055177381f9f6852b7e5469904a15edddd7f8e136043c28b1e33aee47c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_arm_linux_hotspot_11.0.19_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "e0ad2091780fb180009ce2ddf7a711980829623add7a8799a08746c41d625a2c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-04-19T15:13:47+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.19_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "7c73b1a731fc840f2ecb5633906d687bfee4346a8191d3cb1c4370168b16351f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_x64_mac_hotspot_11.0.18_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "0e7b196ef8603ac3d38caaf7768b7b0a3c613d60e15a6511bcfb2c894b609e99",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_x64_linux_hotspot_11.0.18_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "949482ac232e756f342de6a8592d56b58803e10d3956abff14c4958e711a0b7c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_arm_linux_hotspot_11.0.18_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "dea0fe7fd5fc52cf5e1d3db08846b6a26238cfcc36d5527d1da6e3cb059071b3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_x64_windows_hotspot_11.0.18_10.zip",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "a53da51fe7ab5b057ae48188961acf2b4d87e58f1eae563a2cb45f1c21e0e298",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.18_10.zip",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "89bc6e93d48a37a5eff7ec5afa515c60eb3369d106d1736f5e845b3dcf8fb72c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.18_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "9e2209d4c3994db64153344a8e98687bc9b1c3b00e73e12decd02eb4e5749835",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-01-19T21:45:25+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.18_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "814a731f92dd67ad6cfb11a8b06dfad5f629f67be88ae5ae37d34e6eea6be6f4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_x64_windows_hotspot_11.0.17_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "752616097e09d7f60a3ad8bd312f90eaf50ac72577e55df229fe6e8091148f79",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_x64_linux_hotspot_11.0.17_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "bd6efe3290c8b5a42f695a55a26f3e3c9c284288574879d4b7089f31f5114177",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.17_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "2a5cbc2888f8e382c7d0a5bf2c6d2c3bad120ceff51b00d3a62805dae4473c02",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.17_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "66508958b5da6e36021d960b65490ab70cc7d44851c98301a3d6d3552f305674",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_x64_mac_hotspot_11.0.17_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "c7f16f9687ff375666760475d5367ec1112df506f4d565fb196600fc1c6d2da0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.17_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "8cf113d3d7fa808895c8d2e41bb890af21c47e38c2460e0588147a4bb8fc658d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T09:25:08+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jre_arm_linux_hotspot_11.0.17_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "85ca20dae21fb5949045df02cc47e71495a1903f77a97a93085596e5e96d0714",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_x64_windows_hotspot_11.0.16.1_1.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "a2c666055519c344017bd111dc59a881567850ed32a49d2752ce2812c3a38912",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.16.1_1.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "2ee7fe636a6a57e4718dfe597e8097b93ef8d976e4b05384433777c9f0526f5a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_arm_linux_hotspot_11.0.16.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "b6607f28fa2906d612d517f0babe4f0f895aa1c3f901edcddb493e33c1e27364",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.16.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "1ffe1a682e8179e35238bf3f93aba0cb185850e202c676f41d38cb0561883eda",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_x64_linux_hotspot_11.0.16.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "c84f38a7d87d50649ffc1f625facb4398fa54885371336a2cbf6ae2b435cbd10",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.16.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "10be61a8dd3766f7c12e2e823a6eca48cc6361d97e1b76310c752bd39770c7fe",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T17:25:17+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jre_x64_mac_hotspot_11.0.16.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "3fa9cb99229ede53d4efddb686106df77794e02b1f4defea6b70b2b53380a8c7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.16_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "74988677f1e1692f8f482ae5f75814b908bb3cf5a8b7d9872873a42e330e7595",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_x64_linux_hotspot_11.0.16_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "47ed5341463829e1c74f3a05e5de3edf6278b3fa9ad5b45e0882f87aea3d83c5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_x64_windows_hotspot_11.0.16_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "952fe98f6fe466a83b59ad93357bcf48c36a81596b260026d96f29bc84f0d6c4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_x64_mac_hotspot_11.0.16_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "658ee6d797e6ca4d25de24d45072a44ed8462e3a9feaa38ef9f6d033d18401c8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_arm_linux_hotspot_11.0.16_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "4da2313441de81e289b25b5ea36f10ab14f8c0f16085fb33eabcda502b1f6457",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.16_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "5581660d969bde6ed4642ba5dbc4ed34170794e154cfeb43d9efbf24bd51d0bc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-07-21T13:26:33+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.16_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "22831fd097dfb39e844cb34f42064ff26a0ada9cd13621d7b8bca8e9b9d3a5ee",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_x64_linux_hotspot_11.0.15_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "606b43b51acff1ff7d77cfd253c8a13e73dda3cb638f4e9d2f74d09a9c1401fb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_x64_windows_hotspot_11.0.15_10.zip",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "0a5419a45fe3680610ff15afa7d854c9b79579550327d14d616ea8ccd0e89505",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_x64_mac_hotspot_11.0.15_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "a9e1b9fcef7c2fa9911bd9f2bf51591102ee0367a667e154cf15f20d0c6faa6a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.15_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "12489d268a6758dc72c073b11a25eb494804649f4760db05b2ef9ddb71aab73e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_arm_linux_hotspot_11.0.15_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "a5f4956b6a658abc0ece6dee2a3e66ed2bfa76972e02ae46abe39caa319bde72",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.15_10.zip",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "6736f6ef503658f3ae48a54646a8ac6dc8ca286f10887dae22b41f2148882695",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-22T15:05:55+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jre_aarch64_mac_hotspot_11.0.15_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "1b2f792ad05af9dba876db962c189527e645b48f50ceb842b4e39169de553303",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T12:24:13+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_x64_mac_hotspot_11.0.14.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "49500200b482c407159e9907bb53efd2b2ad772623c3857c23c17c1304d421b5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T12:24:13+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_x64_windows_hotspot_11.0.14.1_1.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "0f885bc9b1635400fd72e56a976483412aa8b618485322acf64976093e0be039",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T12:24:13+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.14.1_1.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "6426ce7dfdacaa798ec7779e0bec30ec8510df491fb2c965e8e6bf2f88af27e9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T12:24:13+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.14.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "964a5d3c1f63209e5ad908a302220b3ba2e81a6574b7b7a5020f736e1496835f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T12:24:13+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_arm_linux_hotspot_11.0.14.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "b5a6960bc6bb0b1a967e307f908ea9b06ad7adbbd9df0b8954ab51374faa8a98",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T12:24:13+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jre_x64_linux_hotspot_11.0.14.1_1.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "f20bcf8c29057b7275876b1d9e68c13dca03789750ddfabdb213a69f3aa3fcf5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-21T22:58:05+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.14_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "f9c0b0c5f379f57424a1cb9fb304003aeb827817d8b12164388792e145011480",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-21T22:58:05+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jre_x64_linux_hotspot_11.0.14_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "cc1cb6f2ce4414b2c5760829b2cee38b935f6a5e891f4dc2b2a8df799ff2477b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-21T22:58:05+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jre_x64_mac_hotspot_11.0.14_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "d8993b00db75a69c6ea4778b6c79d26a1297cbbb14ab02765e102e0ce79c2653",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-21T22:58:05+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jre_x64_windows_hotspot_11.0.14_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "675fb486e99060e097d194178f6bd387585c06647eeac27109145a0f03ec3b92",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-21T22:58:05+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jre_arm_linux_hotspot_11.0.14_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "2ad6617fb505498254672dd4704b86a55903cbe16a7c23e0400de09ea1dbc709",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-21T22:58:05+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.14_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "76f7da05d905b5f9de8de1a34c1a206744f7589bf0eed876cd9069cb1d913806",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-21T21:55:18+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.13_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "aee2f20d005b58e79c3c6c02271f797cb387d33a135b762886990b9bf7cb262e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-21T21:55:18+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jre_arm_linux_hotspot_11.0.13_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "fb0a27e6e1f26a1ee79daa92e4cfe3ec0d676acfe114d99dd84b3414f056e8a0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-21T21:55:18+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jre_x64_linux_hotspot_11.0.13_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "b175876c6f940ff3c8e1053a668516d2987cd6b3c5661dcc7ad8787379846d15",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-21T21:55:18+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jre_x64_mac_hotspot_11.0.13_8.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "7b0c07a068506b8539408cfe60e3120f54610af463a2dbd3b2ca42b572dd567e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-21T21:55:18+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jre_x64_windows_hotspot_11.0.13_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "60ed46fd2072d2ab25333a367b0ed58f8cf6441b877628f2324273a6b5c71222",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-21T21:55:18+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.13_8.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "793be6b00b3512d8d2453cdcd9620cf79155969c6dfd9f0d2fc3270c4f1c39a4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-09-22T12:03:50+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7.1/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.12_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "5e00dd1fa87749c819ca94d8f3f352e198de44a9e2c09b0e75cc120a63edea87",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-01T13:49:49+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jre_x64_windows_hotspot_11.0.12_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "e813e270b7ea0a13f9c400ce5abd4cb811aacbd536b8909e6c7f0e346f78348c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-01T13:49:49+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jre_x64_linux_hotspot_11.0.12_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "3de9566d6e47ebde10706d0d13e9b6e5777356e379fb376b431c32cd92367645",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-01T13:49:49+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jre_x64_mac_hotspot_11.0.12_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "eebf9b6b515fd139d45410ea4a0e7c18f015acba41e677cd7a57d1fe7a553681",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-01T13:49:49+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jre_aarch64_linux_hotspot_11.0.12_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "793be6b00b3512d8d2453cdcd9620cf79155969c6dfd9f0d2fc3270c4f1c39a4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-01T13:49:49+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jre_x86-32_windows_hotspot_11.0.12_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "814533727192258f45466784fb78d635994ed7051b911688401d1493bba38e91",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-01T13:49:49+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jre_arm_linux_hotspot_11.0.12_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        }
    ],
    "uid": "net.adoptium.java",
    "version": "java11"
}