summaryrefslogtreecommitdiff
path: root/net.adoptium.java/java21.json
blob: 58294404268e7fddc554fbc95459bac0623fffec (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
{
    "formatVersion": 1,
    "name": "Java 21",
    "releaseTime": "2023-10-10T13:55:52+00:00",
    "runtimes": [
        {
            "checksum": {
                "hash": "991be6ac6725e76109ecbd131d658f992dcbeacba3a8b4b6650302c8012b52fb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.10+7",
            "packageType": "jre",
            "releaseTime": "2026-01-21T11:30:56+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_x64_linux_hotspot_21.0.10_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "3ca84da7c4f57eee8d7e7f0645dc904a3a06456d32b37a4dd57a5e7527245250",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.10+7",
            "packageType": "jre",
            "releaseTime": "2026-01-21T11:30:56+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.10_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "008d2bb904c0e07500b92bf4b0f8d434d694b13d5189f06358a52d46b1351f37",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.10+7",
            "packageType": "jre",
            "releaseTime": "2026-01-21T11:30:56+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_x64_mac_hotspot_21.0.10_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "c3be8c87f1a5cdc727903546eb810e112f94cd7222dac6a9d3f3146ee932008d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.10+7",
            "packageType": "jre",
            "releaseTime": "2026-01-21T11:30:56+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.10_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "a6ac6789e51a2c245f41430c42e72b39ec706a449812fc5e4cbfc55ceed1e5ae",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.10+7",
            "packageType": "jre",
            "releaseTime": "2026-01-21T11:30:56+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_x64_windows_hotspot_21.0.10_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "b32a02d2fc8b41c38faf937599e5841f702000ef1ab39a8ddb22d1c5a1d32740",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.10+7",
            "packageType": "jre",
            "releaseTime": "2026-01-21T11:30:56+00:00",
            "runtimeOS": "windows-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.10_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 10
            }
        },
        {
            "checksum": {
                "hash": "1f7f6506b598e85d7d8ff8b36563d98657d2d81b16bfca3cd242d7906cfbd11b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.9+10",
            "packageType": "jre",
            "releaseTime": "2025-10-23T19:54:37+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.9_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 21,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "aeab55d064a1a27a3744b0880b9b414077b4ed2b1790817eea3df60aec946431",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.9+10",
            "packageType": "jre",
            "releaseTime": "2025-10-23T19:54:37+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jre_x64_linux_hotspot_21.0.9_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 21,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "1d041073c65e834bdb4da732485a54ff829859dcd1549e7992f15bd73341be29",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.9+10",
            "packageType": "jre",
            "releaseTime": "2025-10-23T19:54:37+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.9_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 21,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "39c5e23f3ce4d420663afba8ffde28034b72e2b3e240943dc2321bc1f912eef9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.9+10",
            "packageType": "jre",
            "releaseTime": "2025-10-23T19:54:37+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jre_x64_windows_hotspot_21.0.9_10.zip",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 21,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "418099dc1e6dfe9b374fedbb33a10786964a1c465e5b09c385ecb1a4e2fe883c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.9+10",
            "packageType": "jre",
            "releaseTime": "2025-10-23T19:54:37+00:00",
            "runtimeOS": "windows-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.9_10.zip",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 21,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "945abc49249f1e89a2a6a008d70d63dc42b25bbe5e1711ff97aeec70063008d2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.9+10",
            "packageType": "jre",
            "releaseTime": "2025-10-23T19:54:37+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.9%2B10/OpenJDK21U-jre_x64_mac_hotspot_21.0.9_10.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 10,
                "major": 21,
                "minor": 0,
                "security": 9
            }
        },
        {
            "checksum": {
                "hash": "34464861ed170ea0e5acdf870011f9e92f836e712b620ba37c4b2d0e5aeb8675",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.8+9",
            "packageType": "jre",
            "releaseTime": "2025-07-17T08:02:15+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jre_x64_mac_hotspot_21.0.8_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "f54f6e2a907c4aef95ce6d7388474c6d5d87ae87899dd309561672bcfda9121e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.8+9",
            "packageType": "jre",
            "releaseTime": "2025-07-17T08:02:15+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.8_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "7849fd9e0d48c6638a1f82a81000ef170e32600fd7a32fc257668e7e7ae041b4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.8+9",
            "packageType": "jre",
            "releaseTime": "2025-07-17T08:02:15+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.8_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "968c283e104059dae86ea1d670672a80170f27a39529d815843ec9c1f0fa2a03",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.8+9",
            "packageType": "jre",
            "releaseTime": "2025-07-17T08:02:15+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jre_x64_linux_hotspot_21.0.8_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "238d74ec4ec9422d416fa98805ba375eecd8bc8f971bd0c61a21051a4fe42db8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.8+9",
            "packageType": "jre",
            "releaseTime": "2025-07-17T08:02:15+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jre_x64_windows_hotspot_21.0.8_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "559b35e0ccb5b72b42d477aa104eb00256b79e26391348689beb36f65f7da95c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.8+9",
            "packageType": "jre",
            "releaseTime": "2025-07-17T08:02:15+00:00",
            "runtimeOS": "windows-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.8%2B9/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.8_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 8
            }
        },
        {
            "checksum": {
                "hash": "61dca7744d0b92d5d270f03e2ff32d64e95f3f7c8d0acbe642d7733ccb8523ac",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.7+6",
            "packageType": "jre",
            "releaseTime": "2025-04-16T14:21:40+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.7%2B6/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.7_6.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 21,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "c43f6adf33cc76f9060cedc879f004958296d8f924c6c9838d2f6eec4478ac0f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.7+6",
            "packageType": "jre",
            "releaseTime": "2025-04-16T14:21:40+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.7%2B6/OpenJDK21U-jre_x64_mac_hotspot_21.0.7_6.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 21,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "6d48379e00d47e6fdd417e96421e973898ac90765ea8ff2d09ae0af6d5d6a1c6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.7+6",
            "packageType": "jre",
            "releaseTime": "2025-04-16T14:21:40+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.7%2B6/OpenJDK21U-jre_x64_linux_hotspot_21.0.7_6.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 21,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "ab455a401d25e0cd20e652d2ee72e9f56beba0d9faac5a5c62c9b27a19df804b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.7+6",
            "packageType": "jre",
            "releaseTime": "2025-04-16T14:21:40+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.7%2B6/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.7_6.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 21,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "b2850a96293048ed3020f8bfca2d92a785ae9bf80c7d96bbfe3ec4ccf45aef98",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.7+6",
            "packageType": "jre",
            "releaseTime": "2025-04-16T14:21:40+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.7%2B6/OpenJDK21U-jre_x64_windows_hotspot_21.0.7_6.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 21,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "0e2d89e3d66739ffff74f7ed9582ebe3f7748898a0eaec96164e4ec5e8236b28",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.7+6",
            "packageType": "jre",
            "releaseTime": "2025-04-16T14:21:40+00:00",
            "runtimeOS": "windows-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.7%2B6/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.7_6.zip",
            "vendor": "eclipse",
            "version": {
                "build": 6,
                "major": 21,
                "minor": 0,
                "security": 7
            }
        },
        {
            "checksum": {
                "hash": "9b792bbd408676483caaeb619439190abf1552fe11ab05b19c80d408e5f49c25",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.6+7",
            "packageType": "jre",
            "releaseTime": "2025-01-22T17:42:31+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.6_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "707c981a4ff9e680a9ea5d6f625eafe8bc47e1f89140a67d761fde24fc02ab49",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.6+7",
            "packageType": "jre",
            "releaseTime": "2025-01-22T17:42:31+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_x64_windows_hotspot_21.0.6_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "7fc9d6837da5fa1f12e0f41901fd70a73154914b8c8ecbbcad2d44176a989937",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.6+7",
            "packageType": "jre",
            "releaseTime": "2025-01-22T17:42:31+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_x64_linux_hotspot_21.0.6_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "632f7cba1aa752ae4108eccf3abc8b7e51b75d262e11e0cb9077b847438e5549",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.6+7",
            "packageType": "jre",
            "releaseTime": "2025-01-22T17:42:31+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_x64_mac_hotspot_21.0.6_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "f1b78f2bd6d505d5e0539261737740ad11ade3233376b4ca52e6c72fbefd2bf6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.6+7",
            "packageType": "jre",
            "releaseTime": "2025-01-22T17:42:31+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.6_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "031153a95c4946bfa6874b39cb6d85d57d71eb5502af649466f899a6575868a6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.6+7",
            "packageType": "jre",
            "releaseTime": "2025-01-22T17:42:31+00:00",
            "runtimeOS": "windows-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.6%2B7/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.6_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 6
            }
        },
        {
            "checksum": {
                "hash": "e4d02c33aeaf8e1148c1c505e129a709c5bc1889e855d4fb4f001b1780db42b4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.5+11",
            "packageType": "jre",
            "releaseTime": "2024-10-16T16:34:23+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.5_11.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 11,
                "major": 21,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "0e0dcb571f7bf7786c111fe066932066d9eab080c9f86d8178da3e564324ee81",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.5+11",
            "packageType": "jre",
            "releaseTime": "2024-10-16T16:34:23+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_x64_mac_hotspot_21.0.5_11.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 11,
                "major": 21,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "553dda64b3b1c3c16f8afe402377ffebe64fb4a1721a46ed426a91fd18185e62",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.5+11",
            "packageType": "jre",
            "releaseTime": "2024-10-16T16:34:23+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_x64_linux_hotspot_21.0.5_11.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 11,
                "major": 21,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "12249a1c5386957c93fc372260c483ae921b1ec6248a5136725eabd0abc07f93",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.5+11",
            "packageType": "jre",
            "releaseTime": "2024-10-16T16:34:23+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.5_11.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 11,
                "major": 21,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "1749b36cfac273cee11802bf3e90caada5062de6a3fef1a3814c0568b25fd654",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.5+11",
            "packageType": "jre",
            "releaseTime": "2024-10-16T16:34:23+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_x64_windows_hotspot_21.0.5_11.zip",
            "vendor": "eclipse",
            "version": {
                "build": 11,
                "major": 21,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "2f689ae673479c87f07daf6b7729de022a5fc415d3304ed4d25031eac0b9ce42",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.5+11",
            "packageType": "jre",
            "releaseTime": "2024-10-16T16:34:23+00:00",
            "runtimeOS": "windows-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_aarch64_windows_hotspot_21.0.5_11.zip",
            "vendor": "eclipse",
            "version": {
                "build": 11,
                "major": 21,
                "minor": 0,
                "security": 5
            }
        },
        {
            "checksum": {
                "hash": "d3affbb011ca6c722948f6345d15eba09bded33f9947d4d67e09723e2518c12a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.4+7",
            "packageType": "jre",
            "releaseTime": "2024-07-17T15:29:34+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_x64_linux_hotspot_21.0.4_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "58845ce4275f3ec74fba075597c8216bb201773da036c4703be8b7b7b457355d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.4+7",
            "packageType": "jre",
            "releaseTime": "2024-07-17T15:29:34+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.4_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "f67f17413d012672da11163dd73600e0d92eef6f6ff27c6ae25523bd9df74222",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.4+7",
            "packageType": "jre",
            "releaseTime": "2024-07-17T15:29:34+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_x64_mac_hotspot_21.0.4_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "b58f6117d26a138da4cb962b974efc4be4b88b65093366146965d16ad3c45e75",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.4+7",
            "packageType": "jre",
            "releaseTime": "2024-07-17T15:29:34+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_x64_windows_hotspot_21.0.4_7.zip",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "14b39c00ec0ec6e0c465f784261449d0a1c4256b3b15c63c222397ccb31758aa",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.4+7",
            "packageType": "jre",
            "releaseTime": "2024-07-17T15:29:34+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.4_7.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 7,
                "major": 21,
                "minor": 0,
                "security": 4
            }
        },
        {
            "checksum": {
                "hash": "f79eaa741cb9ec4d20c7fd57a0fc52c715da183bc68eb19f4778b816b89ef003",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.3+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:23:34+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_x64_windows_hotspot_21.0.3_9.zip",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "f1af100c4afca2035f446967323230150cfe5872b5a664d98c86963e5c066e0d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.3+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:23:34+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_x64_linux_hotspot_21.0.3_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "c7c31bc6f5ab4c4b6f4559e11c2fa9541ae6757ab8da6dd85c29163913bd9238",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.3+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:23:34+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.3_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "8df56361b834c4681ef304ae9dc8406ce3d79c8572d2d6c2fefcbea55be7d86b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.3+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:23:34+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.3_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "d7fc89c196ed03deb8a98f6599e1b2e78859ec8ec752142549cd3710f3e1a025",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.3+9",
            "packageType": "jre",
            "releaseTime": "2024-04-18T17:23:34+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.3%2B9/OpenJDK21U-jre_x64_mac_hotspot_21.0.3_9.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 9,
                "major": 21,
                "minor": 0,
                "security": 3
            }
        },
        {
            "checksum": {
                "hash": "e7d2eb566cbabae99385684989cf894f9ef86b2462a1911ea48fe50e197ce53a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.2+13",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:30:24+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_x64_mac_hotspot_21.0.2_13.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 13,
                "major": 21,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "c5704de3e0b6fb977db97b9b50d68dd65630e330375fd721ce9621dc407a4fb2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.2+13",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:30:24+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.2_13.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 13,
                "major": 21,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "51141204fe01a9f9dd74eab621d5eca7511eac67315c9975dbde5f2625bdca55",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.2+13",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:30:24+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_x64_linux_hotspot_21.0.2_13.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 13,
                "major": 21,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "a29b88541bc11276de4c4cbdfac60e374ef8a34a415f61cb02a2b6a46f0e1064",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.2+13",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:30:24+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_x64_windows_hotspot_21.0.2_13.zip",
            "vendor": "eclipse",
            "version": {
                "build": 13,
                "major": 21,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "64c78854184c92a4da5cda571c8e357043bfaf03a03434eef58550cc3410d8a4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.2+13",
            "packageType": "jre",
            "releaseTime": "2024-01-18T15:30:24+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.2_13.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 13,
                "major": 21,
                "minor": 0,
                "security": 2
            }
        },
        {
            "checksum": {
                "hash": "38bb68f9db9c85a63496570c53a1bcbac18c808677595d7e939d2f5b38e9a7aa",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.1+12",
            "packageType": "jre",
            "releaseTime": "2023-10-24T09:03:26+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jre_x64_windows_hotspot_21.0.1_12.zip",
            "vendor": "eclipse",
            "version": {
                "build": 12,
                "major": 21,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "c21a2648ec21bc4701acfb6b7a1fd90aca001db1efb8454e2980d4c8dcd9e310",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.1+12",
            "packageType": "jre",
            "releaseTime": "2023-10-24T09:03:26+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jre_x64_mac_hotspot_21.0.1_12.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 12,
                "major": 21,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "277f4084bee875f127a978253cfbaad09c08df597feaf5ccc82d2206962279a3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.1+12",
            "packageType": "jre",
            "releaseTime": "2023-10-24T09:03:26+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jre_x64_linux_hotspot_21.0.1_12.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 12,
                "major": 21,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "4582c4cc0c6d498ba7a23fdb0a5179c9d9c0d7a26f2ee8610468d5c2954fcf2f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.1+12",
            "packageType": "jre",
            "releaseTime": "2023-10-24T09:03:26+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.1_12.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 12,
                "major": 21,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "bc384961d3a866198b1055a80fdff7fb6946aa6823b3ce624cc8c3125a26bed5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.1+12",
            "packageType": "jre",
            "releaseTime": "2023-10-24T09:03:26+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jre_aarch64_mac_hotspot_21.0.1_12.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 12,
                "major": 21,
                "minor": 0,
                "security": 1
            }
        },
        {
            "checksum": {
                "hash": "080a53a3f75b94450779199f09c8d91b53637d315f128c58a4f160fb6272502d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.0+35",
            "packageType": "jre",
            "releaseTime": "2023-10-10T13:55:52+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_x64_linux_hotspot_21_35.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 35,
                "major": 21,
                "minor": 0,
                "security": 0
            }
        },
        {
            "checksum": {
                "hash": "5a36cde2956749aaad502e1df6729072e5483265fce142230516261da9a391db",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.0+35",
            "packageType": "jre",
            "releaseTime": "2023-10-10T13:55:52+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_aarch64_linux_hotspot_21_35.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 35,
                "major": 21,
                "minor": 0,
                "security": 0
            }
        },
        {
            "checksum": {
                "hash": "a0193a92a73302aaa7641267d95fdf4ef53e964b750e71ee60a166cb488dda8d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.0+35",
            "packageType": "jre",
            "releaseTime": "2023-10-10T13:55:52+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_x64_mac_hotspot_21_35.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 35,
                "major": 21,
                "minor": 0,
                "security": 0
            }
        },
        {
            "checksum": {
                "hash": "3753e9b1d7186191766954f7957cc0c3c4de9633366dbfdfa573e30b371b7ab7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.0+35",
            "packageType": "jre",
            "releaseTime": "2023-10-10T13:55:52+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_x64_windows_hotspot_21_35.zip",
            "vendor": "eclipse",
            "version": {
                "build": 35,
                "major": 21,
                "minor": 0,
                "security": 0
            }
        },
        {
            "checksum": {
                "hash": "884d183a903b79819a9744d0020822dc97bf327b0369568d345b400fad66936e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "eclipse_temurin_jre21.0.0+35",
            "packageType": "jre",
            "releaseTime": "2023-10-10T13:55:52+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jre_aarch64_mac_hotspot_21_35.tar.gz",
            "vendor": "eclipse",
            "version": {
                "build": 35,
                "major": 21,
                "minor": 0,
                "security": 0
            }
        }
    ],
    "uid": "net.adoptium.java",
    "version": "java21"
}