summaryrefslogtreecommitdiff
path: root/net.adoptium.java/java8.json
blob: 96a6d65207202a75295a2b72e068fd7905c1bfcb (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
{
    "formatVersion": 1,
    "name": "Java 8",
    "releaseTime": "2021-07-29T19:22:38+00:00",
    "runtimes": [
        {
            "checksum": {
                "hash": "bb8c8cc575b69e68e12a213674ec2e3848baff4f1955d2973d98e67666ab94d7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-10-18T12:58:56+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jre_x64_linux_hotspot_8u432b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "786522da4c761104dd8274c81edc90126a25acaafbbbc5da886b3fb51f33cba2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-10-18T12:58:56+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jre_aarch64_linux_hotspot_8u432b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "55aac241ad7cb7c1903d4810ad705ffe2f2536a88b6a88efabb4942a9f09db33",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-10-18T12:58:56+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jre_x64_mac_hotspot_8u432b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "bb6f73909ea5386edcb2f570fe2da33e2a48b008f404fce75a417d6c170bad13",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-10-18T12:58:56+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jre_x64_windows_hotspot_8u432b06.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "2e50c4a352570e806d3503745b6a647b914421932f7072cb695861842caf3303",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-10-18T12:58:56+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jre_x86-32_windows_hotspot_8u432b06.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "49894dbe2f915dfad026cf7b4013118c0284e88359172499b1b25a4dac195ff1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-10-18T12:58:56+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u432-b06/OpenJDK8U-jre_arm_linux_hotspot_8u432b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "814a1e262c10cb3f056adbdb20396564fe9ea0f039a863bae6b648f7680b30cc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-25T19:28:42+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05.1/OpenJDK8U-jre_x64_mac_hotspot_8u422b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "0ac516cc1eadffb4cd3cfc9736a33d58ea6a396bf85729036c973482f7c063d9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-18T20:33:44+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05/OpenJDK8U-jre_x64_linux_hotspot_8u422b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "8fbefff2c578f73d95118d830347589ddc9aa84510200a5a5001901c2dea4810",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-18T20:33:44+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05/OpenJDK8U-jre_aarch64_linux_hotspot_8u422b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "99d532fd102005700e81f8e6cbf0f93a70e40b336e65b96280d734260efc13aa",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-18T20:33:44+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05/OpenJDK8U-jre_x64_mac_hotspot_8u422b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "7ac37757292c85ed00a2cc7a38cc0b82d48b337eddea9c7f71414bc7bf439af0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-18T20:33:44+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05/OpenJDK8U-jre_x64_windows_hotspot_8u422b05.zip",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "cd055924a79649025a2335ac86637763e351c184c08a74af6e48739641cd17a6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-18T20:33:44+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05/OpenJDK8U-jre_x86-32_windows_hotspot_8u422b05.zip",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "13bdefdeae6f18bc9c87bba18c853b8b12c5442ce07ff0a3956ce28776d695ff",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-07-18T20:33:44+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u422-b05/OpenJDK8U-jre_arm_linux_hotspot_8u422b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "a8d994332a2ff15d48bf04405c3b2f6bd331a928dd96639b15e62891f7172363",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:04:04+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_x64_linux_hotspot_8u412b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "3f2402cc352bbafd8c966320edbd889f227500f36bcec3d91fb9de9ea43b5506",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:04:04+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_x64_windows_hotspot_8u412b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "17550a6a4ddf71ac81ba8f276467bc58f036c123c0f1bafcafd69f70e3e49cf5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:04:04+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_aarch64_linux_hotspot_8u412b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "1237e4f4238211d9137eec838e5d7cabdc9d93d41001cf41f6de3a4eb90884ef",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:04:04+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_x64_mac_hotspot_8u412b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "1a6b470ac83b241223447a1e6cb55c4a8f78af0146b9387e9842625041226654",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:04:04+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_arm_linux_hotspot_8u412b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "e2898330e90a6273710faf7c5abb30065d8b3b87416c276239c6c75c18ed1cc8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:04:04+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_x86-32_windows_hotspot_8u412b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "1d8c109e96bdb35ffff667dfb911ce03fb9f0f924048dcc8fdbd45198b263ecd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-01-19T15:54:22+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jre_x64_linux_hotspot_8u402b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "618c71eb71e1850f3e606d85186da4d81f898bd62d8478bd5a5415b28e23fb25",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-01-19T15:54:22+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jre_x64_windows_hotspot_8u402b06.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "08c53bba0f602706c8b396e27f28353f75c1e0f00d65aaf4f024508393176a62",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-01-19T15:54:22+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jre_x64_mac_hotspot_8u402b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "782f842c22fe660c5acbea8c1d7b4e812fe658a9e48cd2e8e776d088c7ab32d3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-01-19T15:54:22+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jre_aarch64_linux_hotspot_8u402b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "f97542f56f8ea0fc2c0574282cefcc2f7b573f9d7729a56fe503d641ab8048f5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-01-19T15:54:22+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jre_x86-32_windows_hotspot_8u402b06.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "d613a775573fc17ee972e62b5120dc34d8cac1810bb352e71bc01980ce3c48a8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-01-19T15:54:22+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jre_arm_linux_hotspot_8u402b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "37b997f12cd572da979283fccafec9ba903041a209605b50fcb46cc34f1a9917",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-10-19T18:08:54+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jre_aarch64_linux_hotspot_8u392b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "a6b7e671cc12f9fc16db59419bda8be00da037e14aaf5d5afb78042c145b76ed",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-10-19T18:08:54+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jre_x64_windows_hotspot_8u392b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "69196e433b5a40c99c1d78fd890cfb9c9d2f2d419b83c0dcf9a43def4b55fd1a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-10-19T18:08:54+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jre_x86-32_windows_hotspot_8u392b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "91d31027da0d985be3549714389593d9e0da3da5057d87e3831c7c538b9a2a0f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-10-19T18:08:54+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jre_x64_linux_hotspot_8u392b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "f1f15920ed299e10c789aef6274d88d45eb21b72f9a7b0d246a352107e344e6a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-10-19T18:08:54+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jre_x64_mac_hotspot_8u392b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "877953bfabcdbcd000c11364d806456ca579a921085de2ca942280ebe168cac2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-10-19T18:08:54+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jre_arm_linux_hotspot_8u392b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "1fad165cc243e8db1b9cf226134acdfe3dc5919cd98c5fd9210de3cf9edeabd7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-07-21T15:59:31+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jre_x64_linux_hotspot_8u382b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "8cf329aa76d5b6abe35dd94e5087d9d14993fa13b43bbaed3b26bda4c57162c4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-07-21T15:59:31+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jre_aarch64_linux_hotspot_8u382b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "976068897ed670ff775f14227982a71af88dfdeee03f9070f7c75356c2c05890",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-07-21T15:59:31+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jre_x64_windows_hotspot_8u382b05.zip",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "4e23fb0c42389178012fd67e11b79c5f93488f42a2d121a3f792e3fba804a241",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-07-21T15:59:31+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jre_x64_mac_hotspot_8u382b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "63b4ba50fccb3aa9bf712c6c32ef6241167212800f13f393d66fff1fd124f445",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-07-21T15:59:31+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jre_x86-32_windows_hotspot_8u382b05.zip",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "b92fb3972372b5d1f9fb51815def903105722b747f680b7ecf2ba2ba863ab156",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-07-21T15:59:31+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jre_arm_linux_hotspot_8u382b05.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "b6fdfe32085a884c11b31f66aa67ac62811df7112fb6fb08beea61376a86fbb4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-04-20T17:44:02+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jre_x64_linux_hotspot_8u372b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "106a38b8d1c33cef43832e58b9678de41d8cccbefc40b8926846de4f3c357290",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-04-20T17:44:02+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jre_x64_windows_hotspot_8u372b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "f8e440273c8feb3fcfaca88ba18fec291deae18a548adde8a37cd1db08107b95",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-04-20T17:44:02+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jre_aarch64_linux_hotspot_8u372b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "6c876ea7bfa778ae78ec5a976e557b2b981a592a3639eb0d3dc3c8d3dda8d321",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-04-20T17:44:02+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jre_x64_mac_hotspot_8u372b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "33141cfa30f78eefbd34b47f31c19e5517a1b9b401166214358294cb618ed1cc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-04-20T17:44:02+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jre_x86-32_windows_hotspot_8u372b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "e58e017012838ae4f0db78293e3246cc09958e6ea9a2393c5947ec003bf736dd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-04-20T17:44:02+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jre_arm_linux_hotspot_8u372b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "c8c4e180f915fc7c163240bf363dcdf2b481cd2723fabfc3d08ccf12e049611f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-01-20T15:38:33+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jre_x64_linux_hotspot_8u362b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "79a1c5d7b1bc4decd4a3d95661f1451b9b0a60599040a577043cc5e2aeb1867e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-01-20T15:38:33+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jre_x64_mac_hotspot_8u362b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "3569dcac27e080e93722ace6ed7a1e2f16d44a61c61bae652c4050af58d12d8b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-01-20T15:38:33+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jre_x64_windows_hotspot_8u362b09.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "ab1c3756c0f94e982edf77e7048263d2c7fc1048c57dd1185e5f441f007e9653",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-01-20T15:38:33+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jre_x86-32_windows_hotspot_8u362b09.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "cbe45788fa2d9d04d6b10f8aec7dbb15a018dbafe897ed75e31876d0367d56a5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-01-20T15:38:33+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jre_aarch64_linux_hotspot_8u362b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "82d8524838b07ee438d42f4c33b6ecfe89ae83efac9af0605c76d75195bdcd99",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-01-20T15:38:33+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jre_arm_linux_hotspot_8u362b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "40b6b4c3d8f7332ea479527b530413bf0dbc13cff3c0ed9fcadf1ca053bed106",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T11:41:13+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jre_x64_linux_hotspot_8u352b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "cce4db7c4311378d8d2a174b2cf680d57b52a4036f37c995b14f936b6fc1141a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T11:41:13+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jre_aarch64_linux_hotspot_8u352b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "c4beda0568d5fc83a90cf329023a8029a619678b32574170f70fc2e8601f1592",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T11:41:13+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jre_x64_mac_hotspot_8u352b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "d5ef8ced672a1b391e7949190b8d24db16290e06f257816d5bd0969aed593852",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T11:41:13+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jre_arm_linux_hotspot_8u352b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "072986277701a967e15bf4c4be0c15a69fda00ab973e5e69e62b0f078d6614a4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T11:41:13+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jre_x64_windows_hotspot_8u352b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "0ba6603e6a5d37d4571567bf598e61900103f699f3a7c3120303aa2677ad575e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-10-25T11:41:13+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jre_x86-32_windows_hotspot_8u352b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "2422a8831fe414b9dba4c443ee3562431dfcde27577124f0db58ec903afc262a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-04T20:29:04+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jre_x64_linux_hotspot_8u345b01.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "65b8bd74382d6514d2458ff4375468651791a55a186a5bffe0803204801e9c94",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-04T20:29:04+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jre_aarch64_linux_hotspot_8u345b01.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "6161240769bd784e5ad55105fab9782d787ad34b7b8efd1f730a05f2659455d2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-04T20:29:04+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jre_x64_mac_hotspot_8u345b01.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "a9dd1ea4280a85158191101688bbf1920c4676a3849e22dc7783fb61f60d6199",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-04T20:29:04+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jre_arm_linux_hotspot_8u345b01.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "11729d2dc627fc363df4f03d4d08a47df10bed3258f39c41c062a667f9c62d49",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-04T20:29:04+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jre_x64_windows_hotspot_8u345b01.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "052f3f8ee51d57d48813cda1b9e3a31a68f1f2f261570de58c4a2d59387fb1bd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-04T20:29:04+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jre_x86-32_windows_hotspot_8u345b01.zip",
            "vendor": "eclipse",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "45d6a063d887a202384cf05c6fe6174d45ae1fffc6c87b4c7364fcde008d2215",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.342+7",
            "packageType": "jre",
            "releaseTime": "2022-08-02T13:35:44+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07.1/OpenJDK8U-jre_x64_windows_hotspot_8u342b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 342
            }
        },
        {
            "checksum": {
                "hash": "8362dc39dd92faff221c7ca314ed2ff289c17e1447cd2ed01f3b8541c9f1e9eb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.342+7",
            "packageType": "jre",
            "releaseTime": "2022-07-25T12:49:43+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07/OpenJDK8U-jre_x64_linux_hotspot_8u342b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 342
            }
        },
        {
            "checksum": {
                "hash": "d7b1f5a930f4de9874628c384b02f75bdbedf1d73598929b831f2a438317832c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.342+7",
            "packageType": "jre",
            "releaseTime": "2022-07-25T12:49:43+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07/OpenJDK8U-jre_x64_windows_hotspot_8u342b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 342
            }
        },
        {
            "checksum": {
                "hash": "7e6cb9ee2bbbc1b960e5e443fe7e6145a46e06678b6d0b0683fd4996d40c8fcf",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.342+7",
            "packageType": "jre",
            "releaseTime": "2022-07-25T12:49:43+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07/OpenJDK8U-jre_aarch64_linux_hotspot_8u342b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 342
            }
        },
        {
            "checksum": {
                "hash": "f1ca3cf3ceaf87651ffb740e586c705fa5ea5c89e040d0c9a6d8c0f4945be852",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.342+7",
            "packageType": "jre",
            "releaseTime": "2022-07-25T12:49:43+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07/OpenJDK8U-jre_x86-32_windows_hotspot_8u342b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 342
            }
        },
        {
            "checksum": {
                "hash": "50d826bd3f77f137a89abf0cdd135cb2715c2f673f48fa0801612b4e33e1fff0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.342+7",
            "packageType": "jre",
            "releaseTime": "2022-07-25T12:49:43+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07/OpenJDK8U-jre_arm_linux_hotspot_8u342b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 342
            }
        },
        {
            "checksum": {
                "hash": "34454309b43d585047baaefc36c1850d0192cccc8b52cdc4aadb192b8e3e4c81",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-27T16:48:29+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jre_x64_linux_hotspot_8u332b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "be92e658ed7f6b14b3b945700d7a4f87467c682b70dfbf682ca4562b93cfc8e0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-27T16:48:29+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jre_aarch64_linux_hotspot_8u332b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "ed8b8ee11768bf405a1564b91857e0b836a05d35a802ce56138a578988922949",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-27T16:48:29+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jre_x64_mac_hotspot_8u332b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "72adfae646b7866aedd28c20a874181c8f3835ccb16610c47e0ca0780f8f9a9c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-27T16:48:29+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jre_arm_linux_hotspot_8u332b09.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "e85179ac15fb70ade453ab0997b1a115c0067a77d5e9a9b9ce4464bd417f6716",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-27T16:48:29+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jre_x64_windows_hotspot_8u332b09.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "4a2b80c0e6dad84ae6dddd7942e36efbbf4ad66031c89a13690b0b28afabb2af",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-27T16:48:29+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jre_x86-32_windows_hotspot_8u332b09.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "42d4ada88e39b0f222ffdcf3c833f442af22852687992997eca82c573e65b86f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-25T15:24:46+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_x64_mac_hotspot_8u322b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "d270fc127296784307d76052d7acbd65c7e5dbf48c1cbdddabe3923c56ec60a0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-25T15:24:46+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_x64_windows_hotspot_8u322b06.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "9c4607cee01919a21c57a36e8c009a7aca7aefd63010c64d7a3023fe8590ebe1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-25T15:24:46+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_x64_linux_hotspot_8u322b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "22496d5e677aaccc5a85e90584d0a012c51a08898f0e09e259eabe67ed81da2b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-25T15:24:46+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_aarch64_linux_hotspot_8u322b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "82b0680111b418de038d46f27f26265e185add30ab98522d187b7f1c8014d652",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-25T15:24:46+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_x86-32_windows_hotspot_8u322b06.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "48181f17b85a13c0e2f260c8f4b39483e61664cf07ea00e6210a666fb5210492",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-25T15:24:46+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jre_arm_linux_hotspot_8u322b06.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "961df2d520987c2252496fbee024f84c8c8c4d0be80e9fe043d221191666899e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-21T22:05:48+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jre_aarch64_linux_hotspot_8u312b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "18fd13e77621f712326bfcf79c3e3cc08c880e3e4b8f63a1e5da619f3054b063",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-21T22:05:48+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jre_x64_linux_hotspot_8u312b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "c8cf94118bd073c3caf0cde2389993ef7f482b46daa7b6f6d680f90d6de1dd3d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-21T22:05:48+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jre_x64_mac_hotspot_8u312b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "a4623365d70e7bc969e84b7f29b6b2eecb6c0686863ed67651506e2b5adf43b0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-21T22:05:48+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jre_x64_windows_hotspot_8u312b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "789cfa21858156084020ee885ade643556dc57ddec2b44745b5489edb7945b64",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-21T22:05:48+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jre_x86-32_windows_hotspot_8u312b07.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "5f37cbf311a5c2928aff8e83a82aebcf37b5911b193b5ab8538108381dcd6276",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-21T22:05:48+00:00",
            "runtimeOS": "linux-arm32",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jre_arm_linux_hotspot_8u312b07.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "a74e63657ad04151a8f95202071d2895f1cc9295c910ad3c361ff1cc27395107",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-07-29T19:22:38+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jre_x64_linux_hotspot_8u302b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "4a9943a2c2e929728e3c31a213c80d36b186b085b401a8c6313101bd7a28c046",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-07-29T19:22:38+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jre_x64_windows_hotspot_8u302b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "4e7306d505c76e663c791537e2543ec6f5e55d154a6dd9df205104a2f016f40a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-07-29T19:22:38+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jre_x64_mac_hotspot_8u302b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "9951a36430c14548f78569135956e929db2554bfc706bb3fe0bf9a14acd28055",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-07-29T19:22:38+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jre_aarch64_linux_hotspot_8u302b08.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "93a9eff9ecc32c3e4c3bedf6fc2de9dda9215ec643296770b3787803754cc9c4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-07-29T19:22:38+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jre_x86-32_windows_hotspot_8u302b08.zip",
            "vendor": "eclipse",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        }
    ],
    "uid": "net.adoptium.java",
    "version": "java8"
}