-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathlockfile.json
More file actions
1290 lines (1290 loc) · 58.3 KB
/
lockfile.json
File metadata and controls
1290 lines (1290 loc) · 58.3 KB
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
{
"artifactId": "databricks-sdk-java",
"groupId": "com.databricks",
"version": "0.103.0",
"lockFileVersion": 1,
"dependencies": [
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-annotations",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "face5c37bee1f0768f5f198d077fc29d163becca95de9e0f13962c84d1047662",
"scope": "provided",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.6/jackson-annotations-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": true,
"id": "com.fasterxml.jackson.core:jackson-annotations:2.18.6",
"children": []
},
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-databind",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "45d124736ea29dc374171fc1a8a9958e0f44407c1e0aae0297d8eee267fb592e",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.6/jackson-databind-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": true,
"id": "com.fasterxml.jackson.core:jackson-databind:2.18.6",
"children": [
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-annotations",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "face5c37bee1f0768f5f198d077fc29d163becca95de9e0f13962c84d1047662",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.6/jackson-annotations-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-annotations:2.18.6",
"parent": "com.fasterxml.jackson.core:jackson-databind:2.18.6",
"children": []
},
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-core",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "e7e1bfa50f0a79db37e6aa37db111cf03aebf4a484b359d21127ab43ab2398c6",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.6/jackson-core-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": true,
"id": "com.fasterxml.jackson.core:jackson-core:2.18.6",
"parent": "com.fasterxml.jackson.core:jackson-databind:2.18.6",
"children": []
}
]
},
{
"groupId": "com.fasterxml.jackson.datatype",
"artifactId": "jackson-datatype-guava",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "ce2f0c5a89f5b06573a3f4e58d997f56dc3dea400e3ce13d5bb309ae526cead4",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-guava/2.18.6/jackson-datatype-guava-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": true,
"id": "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.18.6",
"children": [
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-core",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "e7e1bfa50f0a79db37e6aa37db111cf03aebf4a484b359d21127ab43ab2398c6",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.6/jackson-core-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-core:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.18.6",
"children": []
},
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-databind",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "45d124736ea29dc374171fc1a8a9958e0f44407c1e0aae0297d8eee267fb592e",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.6/jackson-databind-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-databind:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.18.6",
"children": []
},
{
"groupId": "com.google.guava",
"artifactId": "guava",
"version": "25.1-jre",
"checksumAlgorithm": "SHA-256",
"checksum": "6db0c3a244c397429c2e362ea2837c3622d5b68bb95105d37c21c36e5bc70abf",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.jar",
"selectedVersion": "32.0.0-android",
"included": false,
"id": "com.google.guava:guava:25.1-jre",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.18.6",
"children": []
}
]
},
{
"groupId": "com.fasterxml.jackson.datatype",
"artifactId": "jackson-datatype-jdk8",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "b3287d74a95741b95295922f64e35e9204825fdd950606613a706d045bdc7443",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.18.6/jackson-datatype-jdk8-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": true,
"id": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.6",
"children": [
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-core",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "e7e1bfa50f0a79db37e6aa37db111cf03aebf4a484b359d21127ab43ab2398c6",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.6/jackson-core-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-core:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.6",
"children": []
},
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-databind",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "45d124736ea29dc374171fc1a8a9958e0f44407c1e0aae0297d8eee267fb592e",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.6/jackson-databind-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-databind:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.6",
"children": []
}
]
},
{
"groupId": "com.fasterxml.jackson.datatype",
"artifactId": "jackson-datatype-jsr310",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "d600821e90b08353425d3fa31d6a5e08f38b190be93ed284097e6fa66cac1bb4",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.18.6/jackson-datatype-jsr310-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": true,
"id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.6",
"children": [
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-annotations",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "face5c37bee1f0768f5f198d077fc29d163becca95de9e0f13962c84d1047662",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.18.6/jackson-annotations-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-annotations:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.6",
"children": []
},
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-core",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "e7e1bfa50f0a79db37e6aa37db111cf03aebf4a484b359d21127ab43ab2398c6",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.18.6/jackson-core-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-core:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.6",
"children": []
},
{
"groupId": "com.fasterxml.jackson.core",
"artifactId": "jackson-databind",
"version": "2.18.6",
"checksumAlgorithm": "SHA-256",
"checksum": "45d124736ea29dc374171fc1a8a9958e0f44407c1e0aae0297d8eee267fb592e",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.18.6/jackson-databind-2.18.6.jar",
"selectedVersion": "2.18.6",
"included": false,
"id": "com.fasterxml.jackson.core:jackson-databind:2.18.6",
"parent": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.6",
"children": []
}
]
},
{
"groupId": "com.google.auth",
"artifactId": "google-auth-library-oauth2-http",
"version": "1.20.0",
"checksumAlgorithm": "SHA-256",
"checksum": "ab3ee74eeccb12fca40f4444af4d45df9e290f2c3f4751e855697dedf52f7a73",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.20.0/google-auth-library-oauth2-http-1.20.0.jar",
"selectedVersion": "1.20.0",
"included": true,
"id": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": [
{
"groupId": "com.google.auth",
"artifactId": "google-auth-library-credentials",
"version": "1.20.0",
"checksumAlgorithm": "SHA-256",
"checksum": "b3054d8757807f8af8015b535fb288ed67456444922211f0f929f4c04e69b0b7",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/1.20.0/google-auth-library-credentials-1.20.0.jar",
"selectedVersion": "1.20.0",
"included": true,
"id": "com.google.auth:google-auth-library-credentials:1.20.0",
"parent": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": []
},
{
"groupId": "com.google.auto.value",
"artifactId": "auto-value-annotations",
"version": "1.10.4",
"checksumAlgorithm": "SHA-256",
"checksum": "e1c45e6beadaef9797cb0d9afd5a45621ad061cd8632012f85582853a3887825",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar",
"selectedVersion": "1.10.4",
"included": false,
"id": "com.google.auto.value:auto-value-annotations:1.10.4",
"parent": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": []
},
{
"groupId": "com.google.code.findbugs",
"artifactId": "jsr305",
"version": "3.0.2",
"checksumAlgorithm": "SHA-256",
"checksum": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"selectedVersion": "3.0.2",
"included": true,
"id": "com.google.code.findbugs:jsr305:3.0.2",
"parent": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": []
},
{
"groupId": "com.google.guava",
"artifactId": "guava",
"version": "32.0.0-android",
"checksumAlgorithm": "SHA-256",
"checksum": "96952b394133aa20ad3f18f4fb09582b12a8aa95e78c40203c7fb9efedcc2f7c",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/guava/32.0.0-android/guava-32.0.0-android.jar",
"selectedVersion": "32.0.0-android",
"included": true,
"id": "com.google.guava:guava:32.0.0-android",
"parent": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": [
{
"groupId": "com.google.code.findbugs",
"artifactId": "jsr305",
"version": "3.0.2",
"checksumAlgorithm": "SHA-256",
"checksum": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"selectedVersion": "3.0.2",
"included": false,
"id": "com.google.code.findbugs:jsr305:3.0.2",
"parent": "com.google.guava:guava:32.0.0-android",
"children": []
},
{
"groupId": "com.google.errorprone",
"artifactId": "error_prone_annotations",
"version": "2.18.0",
"checksumAlgorithm": "SHA-256",
"checksum": "9e6814cb71816988a4fd1b07a993a8f21bb7058d522c162b1de849e19bea54ae",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar",
"selectedVersion": "2.18.0",
"included": false,
"id": "com.google.errorprone:error_prone_annotations:2.18.0",
"parent": "com.google.guava:guava:32.0.0-android",
"children": []
},
{
"groupId": "com.google.guava",
"artifactId": "failureaccess",
"version": "1.0.1",
"checksumAlgorithm": "SHA-256",
"checksum": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"selectedVersion": "1.0.1",
"included": true,
"id": "com.google.guava:failureaccess:1.0.1",
"parent": "com.google.guava:guava:32.0.0-android",
"children": []
},
{
"groupId": "com.google.guava",
"artifactId": "listenablefuture",
"version": "9999.0-empty-to-avoid-conflict-with-guava",
"checksumAlgorithm": "SHA-256",
"checksum": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
"selectedVersion": "9999.0-empty-to-avoid-conflict-with-guava",
"included": true,
"id": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"parent": "com.google.guava:guava:32.0.0-android",
"children": []
},
{
"groupId": "com.google.j2objc",
"artifactId": "j2objc-annotations",
"version": "2.8",
"checksumAlgorithm": "SHA-256",
"checksum": "f02a95fa1a5e95edb3ed859fd0fb7df709d121a35290eff8b74dce2ab7f4d6ed",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar",
"selectedVersion": "2.8",
"included": false,
"id": "com.google.j2objc:j2objc-annotations:2.8",
"parent": "com.google.guava:guava:32.0.0-android",
"children": []
},
{
"groupId": "org.checkerframework",
"artifactId": "checker-qual",
"version": "3.33.0",
"checksumAlgorithm": "SHA-256",
"checksum": "e316255bbfcd9fe50d165314b85abb2b33cb2a66a93c491db648e498a82c2de1",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar",
"selectedVersion": "3.33.0",
"included": true,
"id": "org.checkerframework:checker-qual:3.33.0",
"parent": "com.google.guava:guava:32.0.0-android",
"children": []
}
]
},
{
"groupId": "com.google.http-client",
"artifactId": "google-http-client",
"version": "1.43.3",
"checksumAlgorithm": "SHA-256",
"checksum": "60aca7428c5a1ff3655b70541a98ff3d70dded48ac1324dae1af39f1b61914af",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar",
"selectedVersion": "1.43.3",
"included": true,
"id": "com.google.http-client:google-http-client:1.43.3",
"parent": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": [
{
"groupId": "com.google.code.findbugs",
"artifactId": "jsr305",
"version": "3.0.2",
"checksumAlgorithm": "SHA-256",
"checksum": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"selectedVersion": "3.0.2",
"included": false,
"id": "com.google.code.findbugs:jsr305:3.0.2",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": []
},
{
"groupId": "com.google.errorprone",
"artifactId": "error_prone_annotations",
"version": "2.18.0",
"checksumAlgorithm": "SHA-256",
"checksum": "9e6814cb71816988a4fd1b07a993a8f21bb7058d522c162b1de849e19bea54ae",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar",
"selectedVersion": "2.18.0",
"included": false,
"id": "com.google.errorprone:error_prone_annotations:2.18.0",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": []
},
{
"groupId": "com.google.guava",
"artifactId": "guava",
"version": "30.1.1-android",
"checksumAlgorithm": "SHA-256",
"checksum": "355f79352f8c252f2bdaa06c687c4836a38016caccfc4c28d16ae77ecfdffa2f",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/guava/30.1.1-android/guava-30.1.1-android.jar",
"selectedVersion": "32.0.0-android",
"included": false,
"id": "com.google.guava:guava:30.1.1-android",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": []
},
{
"groupId": "com.google.j2objc",
"artifactId": "j2objc-annotations",
"version": "2.8",
"checksumAlgorithm": "SHA-256",
"checksum": "f02a95fa1a5e95edb3ed859fd0fb7df709d121a35290eff8b74dce2ab7f4d6ed",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar",
"selectedVersion": "2.8",
"included": false,
"id": "com.google.j2objc:j2objc-annotations:2.8",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": []
},
{
"groupId": "io.opencensus",
"artifactId": "opencensus-api",
"version": "0.31.1",
"checksumAlgorithm": "SHA-256",
"checksum": "f1474d47f4b6b001558ad27b952e35eda5cc7146788877fc52938c6eba24b382",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar",
"selectedVersion": "0.31.1",
"included": true,
"id": "io.opencensus:opencensus-api:0.31.1",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": [
{
"groupId": "io.grpc",
"artifactId": "grpc-context",
"version": "1.27.2",
"checksumAlgorithm": "SHA-256",
"checksum": "bcbf9055dff453fd6508bd7cca2a0aa2d5f059a9c94beed1f5fda1dc015607b8",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar",
"selectedVersion": "1.27.2",
"included": true,
"id": "io.grpc:grpc-context:1.27.2",
"parent": "io.opencensus:opencensus-api:0.31.1",
"children": []
}
]
},
{
"groupId": "io.opencensus",
"artifactId": "opencensus-contrib-http-util",
"version": "0.31.1",
"checksumAlgorithm": "SHA-256",
"checksum": "3ea995b55a4068be22989b70cc29a4d788c2d328d1d50613a7a9afd13fdd2d0a",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar",
"selectedVersion": "0.31.1",
"included": true,
"id": "io.opencensus:opencensus-contrib-http-util:0.31.1",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": [
{
"groupId": "com.google.guava",
"artifactId": "guava",
"version": "29.0-android",
"checksumAlgorithm": "SHA-256",
"checksum": "00ba22cb0e32610db7cf8ab4c20017c85d11788600734ff1d86995345eb5bc3b",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-android/guava-29.0-android.jar",
"selectedVersion": "32.0.0-android",
"included": false,
"id": "com.google.guava:guava:29.0-android",
"parent": "io.opencensus:opencensus-contrib-http-util:0.31.1",
"children": []
},
{
"groupId": "io.opencensus",
"artifactId": "opencensus-api",
"version": "0.31.1",
"checksumAlgorithm": "SHA-256",
"checksum": "f1474d47f4b6b001558ad27b952e35eda5cc7146788877fc52938c6eba24b382",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar",
"selectedVersion": "0.31.1",
"included": false,
"id": "io.opencensus:opencensus-api:0.31.1",
"parent": "io.opencensus:opencensus-contrib-http-util:0.31.1",
"children": []
}
]
},
{
"groupId": "org.apache.httpcomponents",
"artifactId": "httpclient",
"version": "4.5.14",
"checksumAlgorithm": "SHA-256",
"checksum": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar",
"selectedVersion": "4.5.14",
"included": false,
"id": "org.apache.httpcomponents:httpclient:4.5.14",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": []
},
{
"groupId": "org.apache.httpcomponents",
"artifactId": "httpcore",
"version": "4.4.16",
"checksumAlgorithm": "SHA-256",
"checksum": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar",
"selectedVersion": "4.4.16",
"included": false,
"id": "org.apache.httpcomponents:httpcore:4.4.16",
"parent": "com.google.http-client:google-http-client:1.43.3",
"children": []
}
]
},
{
"groupId": "com.google.http-client",
"artifactId": "google-http-client-gson",
"version": "1.43.3",
"checksumAlgorithm": "SHA-256",
"checksum": "e31a4edcb9c83954a2587e14fa2f3f8f4aad56152381b3321a3bd0bcae03fa26",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar",
"selectedVersion": "1.43.3",
"included": true,
"id": "com.google.http-client:google-http-client-gson:1.43.3",
"parent": "com.google.auth:google-auth-library-oauth2-http:1.20.0",
"children": [
{
"groupId": "com.google.code.gson",
"artifactId": "gson",
"version": "2.10.1",
"checksumAlgorithm": "SHA-256",
"checksum": "4241c14a7727c34feea6507ec801318a3d4a90f070e4525681079fb94ee4c593",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar",
"selectedVersion": "2.8.9",
"included": false,
"id": "com.google.code.gson:gson:2.10.1",
"parent": "com.google.http-client:google-http-client-gson:1.43.3",
"children": []
},
{
"groupId": "com.google.http-client",
"artifactId": "google-http-client",
"version": "1.43.3",
"checksumAlgorithm": "SHA-256",
"checksum": "60aca7428c5a1ff3655b70541a98ff3d70dded48ac1324dae1af39f1b61914af",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar",
"selectedVersion": "1.43.3",
"included": false,
"id": "com.google.http-client:google-http-client:1.43.3",
"parent": "com.google.http-client:google-http-client-gson:1.43.3",
"children": []
}
]
}
]
},
{
"groupId": "com.google.auto.value",
"artifactId": "auto-value",
"version": "1.10.4",
"checksumAlgorithm": "SHA-256",
"checksum": "f3c438d1f82904bbcb452084d488b660f3c7488e9274c3a58f049e121632d434",
"scope": "provided",
"resolved": "https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value/1.10.4/auto-value-1.10.4.jar",
"selectedVersion": "1.10.4",
"included": true,
"id": "com.google.auto.value:auto-value:1.10.4",
"children": []
},
{
"groupId": "com.google.auto.value",
"artifactId": "auto-value-annotations",
"version": "1.10.4",
"checksumAlgorithm": "SHA-256",
"checksum": "e1c45e6beadaef9797cb0d9afd5a45621ad061cd8632012f85582853a3887825",
"scope": "provided",
"resolved": "https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value-annotations/1.10.4/auto-value-annotations-1.10.4.jar",
"selectedVersion": "1.10.4",
"included": true,
"id": "com.google.auto.value:auto-value-annotations:1.10.4",
"children": []
},
{
"groupId": "com.google.protobuf",
"artifactId": "protobuf-java",
"version": "3.25.5",
"checksumAlgorithm": "SHA-256",
"checksum": "8540247fad9e06baefa8fb45eb313802d019f485f14300e0f9d6b556ed88e753",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar",
"selectedVersion": "3.25.5",
"included": true,
"id": "com.google.protobuf:protobuf-java:3.25.5",
"children": []
},
{
"groupId": "com.google.protobuf",
"artifactId": "protobuf-java-util",
"version": "3.25.5",
"checksumAlgorithm": "SHA-256",
"checksum": "dacc58b2c3d2fa8d4bddc1acb881e78d6cf7c137dd78bc1d67f6aca732436a8d",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar",
"selectedVersion": "3.25.5",
"included": true,
"id": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": [
{
"groupId": "com.google.code.findbugs",
"artifactId": "jsr305",
"version": "3.0.2",
"checksumAlgorithm": "SHA-256",
"checksum": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"selectedVersion": "3.0.2",
"included": false,
"id": "com.google.code.findbugs:jsr305:3.0.2",
"parent": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": []
},
{
"groupId": "com.google.code.gson",
"artifactId": "gson",
"version": "2.8.9",
"checksumAlgorithm": "SHA-256",
"checksum": "d3999291855de495c94c743761b8ab5176cfeabe281a5ab0d8e8d45326fd703e",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar",
"selectedVersion": "2.8.9",
"included": true,
"id": "com.google.code.gson:gson:2.8.9",
"parent": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": []
},
{
"groupId": "com.google.errorprone",
"artifactId": "error_prone_annotations",
"version": "2.18.0",
"checksumAlgorithm": "SHA-256",
"checksum": "9e6814cb71816988a4fd1b07a993a8f21bb7058d522c162b1de849e19bea54ae",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar",
"selectedVersion": "2.18.0",
"included": true,
"id": "com.google.errorprone:error_prone_annotations:2.18.0",
"parent": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": []
},
{
"groupId": "com.google.guava",
"artifactId": "guava",
"version": "32.0.1-jre",
"checksumAlgorithm": "SHA-256",
"checksum": "bd7fa227591fb8509677d0d1122cf95158f3b8a9f45653f58281d879f6dc48c5",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/guava/guava/32.0.1-jre/guava-32.0.1-jre.jar",
"selectedVersion": "32.0.0-android",
"included": false,
"id": "com.google.guava:guava:32.0.1-jre",
"parent": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": []
},
{
"groupId": "com.google.j2objc",
"artifactId": "j2objc-annotations",
"version": "2.8",
"checksumAlgorithm": "SHA-256",
"checksum": "f02a95fa1a5e95edb3ed859fd0fb7df709d121a35290eff8b74dce2ab7f4d6ed",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar",
"selectedVersion": "2.8",
"included": true,
"id": "com.google.j2objc:j2objc-annotations:2.8",
"parent": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": []
},
{
"groupId": "com.google.protobuf",
"artifactId": "protobuf-java",
"version": "3.25.5",
"checksumAlgorithm": "SHA-256",
"checksum": "8540247fad9e06baefa8fb45eb313802d019f485f14300e0f9d6b556ed88e753",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar",
"selectedVersion": "3.25.5",
"included": false,
"id": "com.google.protobuf:protobuf-java:3.25.5",
"parent": "com.google.protobuf:protobuf-java-util:3.25.5",
"children": []
}
]
},
{
"groupId": "commons-io",
"artifactId": "commons-io",
"version": "2.14.0",
"checksumAlgorithm": "SHA-256",
"checksum": "e35d1df7232568ed4b81d9a9ed94a0159b3ff6cf1915cc21eef5cb55d7b157a2",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/commons-io/commons-io/2.14.0/commons-io-2.14.0.jar",
"selectedVersion": "2.14.0",
"included": true,
"id": "commons-io:commons-io:2.14.0",
"children": []
},
{
"groupId": "org.apache.commons",
"artifactId": "commons-configuration2",
"version": "2.13.0",
"checksumAlgorithm": "SHA-256",
"checksum": "7622799663317f95c81019b32b39e0c82e42b388f00abe6e5ab26489d90d9a6b",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-configuration2/2.13.0/commons-configuration2-2.13.0.jar",
"selectedVersion": "2.13.0",
"included": true,
"id": "org.apache.commons:commons-configuration2:2.13.0",
"children": [
{
"groupId": "commons-logging",
"artifactId": "commons-logging",
"version": "1.3.5",
"checksumAlgorithm": "SHA-256",
"checksum": "6d7a744e4027649fbb50895df9497d109f98c766a637062fe8d2eabbb3140ba4",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.3.5/commons-logging-1.3.5.jar",
"selectedVersion": "1.3.5",
"included": true,
"id": "commons-logging:commons-logging:1.3.5",
"parent": "org.apache.commons:commons-configuration2:2.13.0",
"children": []
},
{
"groupId": "org.apache.commons",
"artifactId": "commons-lang3",
"version": "3.20.0",
"checksumAlgorithm": "SHA-256",
"checksum": "69e5c9fa35da7a51a5fd2099dfe56a2d8d32cf233e2f6d770e796146440263f4",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.20.0/commons-lang3-3.20.0.jar",
"selectedVersion": "3.20.0",
"included": true,
"id": "org.apache.commons:commons-lang3:3.20.0",
"parent": "org.apache.commons:commons-configuration2:2.13.0",
"children": []
},
{
"groupId": "org.apache.commons",
"artifactId": "commons-text",
"version": "1.14.0",
"checksumAlgorithm": "SHA-256",
"checksum": "121fce2282910c8f0c3ba793a5436b31beb710423cbe2d574a3fb7a73c508e92",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.14.0/commons-text-1.14.0.jar",
"selectedVersion": "1.14.0",
"included": true,
"id": "org.apache.commons:commons-text:1.14.0",
"parent": "org.apache.commons:commons-configuration2:2.13.0",
"children": [
{
"groupId": "org.apache.commons",
"artifactId": "commons-lang3",
"version": "3.18.0",
"checksumAlgorithm": "SHA-256",
"checksum": "4eeeae8d20c078abb64b015ec158add383ac581571cddc45c68f0c9ae0230720",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.18.0/commons-lang3-3.18.0.jar",
"selectedVersion": "3.20.0",
"included": false,
"id": "org.apache.commons:commons-lang3:3.18.0",
"parent": "org.apache.commons:commons-text:1.14.0",
"children": []
}
]
}
]
},
{
"groupId": "org.apache.httpcomponents",
"artifactId": "httpclient",
"version": "4.5.14",
"checksumAlgorithm": "SHA-256",
"checksum": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar",
"selectedVersion": "4.5.14",
"included": true,
"id": "org.apache.httpcomponents:httpclient:4.5.14",
"children": [
{
"groupId": "commons-codec",
"artifactId": "commons-codec",
"version": "1.11",
"checksumAlgorithm": "SHA-256",
"checksum": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar",
"selectedVersion": "1.11",
"included": true,
"id": "commons-codec:commons-codec:1.11",
"parent": "org.apache.httpcomponents:httpclient:4.5.14",
"children": []
},
{
"groupId": "commons-logging",
"artifactId": "commons-logging",
"version": "1.2",
"checksumAlgorithm": "SHA-256",
"checksum": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar",
"selectedVersion": "1.3.5",
"included": false,
"id": "commons-logging:commons-logging:1.2",
"parent": "org.apache.httpcomponents:httpclient:4.5.14",
"children": []
},
{
"groupId": "org.apache.httpcomponents",
"artifactId": "httpcore",
"version": "4.4.16",
"checksumAlgorithm": "SHA-256",
"checksum": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar",
"selectedVersion": "4.4.16",
"included": true,
"id": "org.apache.httpcomponents:httpcore:4.4.16",
"parent": "org.apache.httpcomponents:httpclient:4.5.14",
"children": []
}
]
},
{
"groupId": "org.json",
"artifactId": "json",
"version": "20240303",
"checksumAlgorithm": "SHA-256",
"checksum": "3cf6cd6892e32e2b4c1c39e0f52f5248a2f5b37646fdfbb79a66b46b618414ed",
"scope": "compile",
"resolved": "https://repo.maven.apache.org/maven2/org/json/json/20240303/json-20240303.jar",
"selectedVersion": "20240303",
"included": true,
"id": "org.json:json:20240303",
"children": []
},
{
"groupId": "org.junit.jupiter",
"artifactId": "junit-jupiter",
"version": "5.10.0",
"checksumAlgorithm": "SHA-256",
"checksum": "8e4bde23ee28fc443975654a7b28c410a3b78d6be96b78c99ab73695ec344f7c",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.10.0/junit-jupiter-5.10.0.jar",
"selectedVersion": "5.10.0",
"included": true,
"id": "org.junit.jupiter:junit-jupiter:5.10.0",
"children": [
{
"groupId": "org.junit.jupiter",
"artifactId": "junit-jupiter-api",
"version": "5.10.0",
"checksumAlgorithm": "SHA-256",
"checksum": "108088fd7ea46a8e65a0ce7f5d75ae3ff7865606770a078715f5a6e5709e17d8",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.10.0/junit-jupiter-api-5.10.0.jar",
"selectedVersion": "5.10.0",
"included": true,
"id": "org.junit.jupiter:junit-jupiter-api:5.10.0",
"parent": "org.junit.jupiter:junit-jupiter:5.10.0",
"children": [
{
"groupId": "org.apiguardian",
"artifactId": "apiguardian-api",
"version": "1.1.2",
"checksumAlgorithm": "SHA-256",
"checksum": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar",
"selectedVersion": "1.1.2",
"included": true,
"id": "org.apiguardian:apiguardian-api:1.1.2",
"parent": "org.junit.jupiter:junit-jupiter-api:5.10.0",
"children": []
},
{
"groupId": "org.junit.platform",
"artifactId": "junit-platform-commons",
"version": "1.10.0",
"checksumAlgorithm": "SHA-256",
"checksum": "6083db08ca11fca1e16099d0dcfede0193d80b3762b276349d80d3da536791b2",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.10.0/junit-platform-commons-1.10.0.jar",
"selectedVersion": "1.10.0",
"included": true,
"id": "org.junit.platform:junit-platform-commons:1.10.0",
"parent": "org.junit.jupiter:junit-jupiter-api:5.10.0",
"children": [
{
"groupId": "org.apiguardian",
"artifactId": "apiguardian-api",
"version": "1.1.2",
"checksumAlgorithm": "SHA-256",
"checksum": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar",
"selectedVersion": "1.1.2",
"included": false,
"id": "org.apiguardian:apiguardian-api:1.1.2",
"parent": "org.junit.platform:junit-platform-commons:1.10.0",
"children": []
}
]
},
{
"groupId": "org.opentest4j",
"artifactId": "opentest4j",
"version": "1.3.0",
"checksumAlgorithm": "SHA-256",
"checksum": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.3.0/opentest4j-1.3.0.jar",
"selectedVersion": "1.3.0",
"included": true,
"id": "org.opentest4j:opentest4j:1.3.0",
"parent": "org.junit.jupiter:junit-jupiter-api:5.10.0",
"children": []
}
]
},
{
"groupId": "org.junit.jupiter",
"artifactId": "junit-jupiter-engine",
"version": "5.10.0",
"checksumAlgorithm": "SHA-256",
"checksum": "57ea48e6f795200791065bbc86b70b84cd05367c5c9f2ac8f9268e27154c88a8",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.10.0/junit-jupiter-engine-5.10.0.jar",
"selectedVersion": "5.10.0",
"included": true,
"id": "org.junit.jupiter:junit-jupiter-engine:5.10.0",
"parent": "org.junit.jupiter:junit-jupiter:5.10.0",
"children": [
{
"groupId": "org.apiguardian",
"artifactId": "apiguardian-api",
"version": "1.1.2",
"checksumAlgorithm": "SHA-256",
"checksum": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar",
"selectedVersion": "1.1.2",
"included": false,
"id": "org.apiguardian:apiguardian-api:1.1.2",
"parent": "org.junit.jupiter:junit-jupiter-engine:5.10.0",
"children": []
},
{
"groupId": "org.junit.jupiter",
"artifactId": "junit-jupiter-api",
"version": "5.10.0",
"checksumAlgorithm": "SHA-256",
"checksum": "108088fd7ea46a8e65a0ce7f5d75ae3ff7865606770a078715f5a6e5709e17d8",
"scope": "test",
"resolved": "https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.10.0/junit-jupiter-api-5.10.0.jar",
"selectedVersion": "5.10.0",
"included": false,
"id": "org.junit.jupiter:junit-jupiter-api:5.10.0",
"parent": "org.junit.jupiter:junit-jupiter-engine:5.10.0",
"children": []
},
{