forked from bazel-contrib/rules_jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrozen_deps_install.json
6198 lines (6198 loc) · 344 KB
/
frozen_deps_install.json
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
{
"dependency_tree": {
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": -568385146,
"__RESOLVED_ARTIFACTS_HASH": 1240627045,
"conflict_resolution": {
"com.google.errorprone:error_prone_annotations:2.11.0": "com.google.errorprone:error_prone_annotations:2.18.0",
"com.google.guava:guava:30.1.1-jre": "com.google.guava:guava:31.1-jre",
"com.google.guava:guava:31.1-android": "com.google.guava:guava:31.1-jre",
"com.google.protobuf:protobuf-java:3.21.7": "com.google.protobuf:protobuf-java:3.21.12"
},
"dependencies": [
{
"coord": "com.beust:jcommander:1.48",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar"
],
"packages": [
"com.beust.jcommander",
"com.beust.jcommander.converters",
"com.beust.jcommander.defaultprovider",
"com.beust.jcommander.internal",
"com.beust.jcommander.validators"
],
"sha256": "a7313fcfde070930e40ec79edf3c5948cf34e4f0d25cb3a09f9963d8bdd84113",
"url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar"
},
{
"coord": "com.beust:jcommander:jar:sources:1.48",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48-sources.jar"
],
"packages": [],
"sha256": "034401849e035a879dbd4c1937249a7d0c7a61c54bf9e668187718e56770ecb3",
"url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48-sources.jar"
},
{
"coord": "com.github.spotbugs:spotbugs-annotations:4.7.0",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:3.0.2"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.0/spotbugs-annotations-4.7.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.0/spotbugs-annotations-4.7.0.jar"
],
"packages": [
"edu.umd.cs.findbugs.annotations"
],
"sha256": "8e6677102aa0de50841644cf9a57d6d503550ad774049a76c75bf157a8beebd5",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.0/spotbugs-annotations-4.7.0.jar"
},
{
"coord": "com.github.spotbugs:spotbugs-annotations:jar:sources:4.7.0",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.0/spotbugs-annotations-4.7.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.0/spotbugs-annotations-4.7.0-sources.jar"
],
"packages": [],
"sha256": "b338136e3e82d585348cde58a8fe3a678e16f51a35c31c1463e05fefef557aad",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.7.0/spotbugs-annotations-4.7.0-sources.jar"
},
{
"coord": "com.github.spotbugs:spotbugs:4.7.0",
"dependencies": [
"com.github.spotbugs:spotbugs-annotations:4.7.0",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:2.10.1",
"commons-codec:commons-codec:1.11",
"commons-logging:commons-logging:1.2",
"jaxen:jaxen:1.2.0",
"net.jcip:jcip-annotations:1.0",
"net.sf.saxon:Saxon-HE:11.3",
"org.apache.bcel:bcel:6.5.0",
"org.apache.commons:commons-lang3:3.12.0",
"org.apache.commons:commons-text:1.9",
"org.apache.httpcomponents:httpclient:4.5.13",
"org.apache.httpcomponents:httpcore:4.4.15",
"org.dom4j:dom4j:2.1.3",
"org.ow2.asm:asm-analysis:9.3",
"org.ow2.asm:asm-commons:9.3",
"org.ow2.asm:asm-tree:9.3",
"org.ow2.asm:asm-util:9.3",
"org.ow2.asm:asm:9.4",
"org.xmlresolver:xmlresolver:4.2.0",
"org.xmlresolver:xmlresolver:jar:data:4.2.0",
"xml-apis:xml-apis:1.4.01"
],
"directDependencies": [
"com.github.spotbugs:spotbugs-annotations:4.7.0",
"com.google.code.gson:gson:2.10.1",
"jaxen:jaxen:1.2.0",
"net.jcip:jcip-annotations:1.0",
"net.sf.saxon:Saxon-HE:11.3",
"org.apache.bcel:bcel:6.5.0",
"org.apache.commons:commons-lang3:3.12.0",
"org.apache.commons:commons-text:1.9",
"org.dom4j:dom4j:2.1.3",
"org.ow2.asm:asm-analysis:9.3",
"org.ow2.asm:asm-commons:9.3",
"org.ow2.asm:asm-tree:9.3",
"org.ow2.asm:asm-util:9.3",
"org.ow2.asm:asm:9.4"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.0/spotbugs-4.7.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.0/spotbugs-4.7.0.jar"
],
"packages": [
"edu.umd.cs.findbugs",
"edu.umd.cs.findbugs.asm",
"edu.umd.cs.findbugs.ba",
"edu.umd.cs.findbugs.ba.bcp",
"edu.umd.cs.findbugs.ba.ca",
"edu.umd.cs.findbugs.ba.ch",
"edu.umd.cs.findbugs.ba.constant",
"edu.umd.cs.findbugs.ba.deref",
"edu.umd.cs.findbugs.ba.generic",
"edu.umd.cs.findbugs.ba.heap",
"edu.umd.cs.findbugs.ba.interproc",
"edu.umd.cs.findbugs.ba.jsr305",
"edu.umd.cs.findbugs.ba.npe",
"edu.umd.cs.findbugs.ba.obl",
"edu.umd.cs.findbugs.ba.type",
"edu.umd.cs.findbugs.ba.vna",
"edu.umd.cs.findbugs.bcel",
"edu.umd.cs.findbugs.bcel.generic",
"edu.umd.cs.findbugs.bugReporter",
"edu.umd.cs.findbugs.bytecode",
"edu.umd.cs.findbugs.charsets",
"edu.umd.cs.findbugs.classfile",
"edu.umd.cs.findbugs.classfile.analysis",
"edu.umd.cs.findbugs.classfile.engine",
"edu.umd.cs.findbugs.classfile.engine.asm",
"edu.umd.cs.findbugs.classfile.engine.bcel",
"edu.umd.cs.findbugs.classfile.impl",
"edu.umd.cs.findbugs.config",
"edu.umd.cs.findbugs.detect",
"edu.umd.cs.findbugs.filter",
"edu.umd.cs.findbugs.graph",
"edu.umd.cs.findbugs.gui",
"edu.umd.cs.findbugs.gui2",
"edu.umd.cs.findbugs.internalAnnotations",
"edu.umd.cs.findbugs.io",
"edu.umd.cs.findbugs.jaif",
"edu.umd.cs.findbugs.launchGUI",
"edu.umd.cs.findbugs.log",
"edu.umd.cs.findbugs.model",
"edu.umd.cs.findbugs.plan",
"edu.umd.cs.findbugs.plugins",
"edu.umd.cs.findbugs.props",
"edu.umd.cs.findbugs.sarif",
"edu.umd.cs.findbugs.sourceViewer",
"edu.umd.cs.findbugs.util",
"edu.umd.cs.findbugs.visitclass",
"edu.umd.cs.findbugs.workflow",
"edu.umd.cs.findbugs.xml"
],
"sha256": "94c44d86c83b8fe63b20023e510874aef721b1081982051706e1da841572f295",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.0/spotbugs-4.7.0.jar"
},
{
"coord": "com.github.spotbugs:spotbugs:jar:sources:4.7.0",
"dependencies": [
"com.github.spotbugs:spotbugs-annotations:jar:sources:4.7.0",
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.code.gson:gson:jar:sources:2.10.1",
"commons-codec:commons-codec:jar:sources:1.11",
"commons-logging:commons-logging:jar:sources:1.2",
"jaxen:jaxen:jar:sources:1.2.0",
"net.jcip:jcip-annotations:jar:sources:1.0",
"net.sf.saxon:Saxon-HE:jar:sources:11.3",
"org.apache.bcel:bcel:jar:sources:6.5.0",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.apache.commons:commons-text:jar:sources:1.9",
"org.apache.httpcomponents:httpclient:jar:sources:4.5.13",
"org.apache.httpcomponents:httpcore:jar:sources:4.4.15",
"org.dom4j:dom4j:jar:sources:2.1.3",
"org.ow2.asm:asm-analysis:jar:sources:9.3",
"org.ow2.asm:asm-commons:jar:sources:9.3",
"org.ow2.asm:asm-tree:jar:sources:9.3",
"org.ow2.asm:asm-util:jar:sources:9.3",
"org.ow2.asm:asm:jar:sources:9.4",
"org.xmlresolver:xmlresolver:jar:sources:4.2.0",
"xml-apis:xml-apis:jar:sources:1.4.01"
],
"directDependencies": [
"com.github.spotbugs:spotbugs-annotations:jar:sources:4.7.0",
"com.google.code.gson:gson:jar:sources:2.10.1",
"jaxen:jaxen:jar:sources:1.2.0",
"net.jcip:jcip-annotations:jar:sources:1.0",
"net.sf.saxon:Saxon-HE:jar:sources:11.3",
"org.apache.bcel:bcel:jar:sources:6.5.0",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.apache.commons:commons-text:jar:sources:1.9",
"org.dom4j:dom4j:jar:sources:2.1.3",
"org.ow2.asm:asm-analysis:jar:sources:9.3",
"org.ow2.asm:asm-commons:jar:sources:9.3",
"org.ow2.asm:asm-tree:jar:sources:9.3",
"org.ow2.asm:asm-util:jar:sources:9.3",
"org.ow2.asm:asm:jar:sources:9.4"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.0/spotbugs-4.7.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.0/spotbugs-4.7.0-sources.jar"
],
"packages": [],
"sha256": "6e90f856826b48a3031e2cb903534b4fdb494759863ea14e8df93c9cf15a272c",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.7.0/spotbugs-4.7.0-sources.jar"
},
{
"coord": "com.google.android:annotations:4.1.1.4",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar"
],
"packages": [
"android.annotation"
],
"sha256": "ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15",
"url": "https://repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4.jar"
},
{
"coord": "com.google.android:annotations:jar:sources:4.1.1.4",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4-sources.jar"
],
"packages": [],
"sha256": "e9b667aa958df78ea1ad115f7bbac18a5869c3128b1d5043feb360b0cfce9d40",
"url": "https://repo1.maven.org/maven2/com/google/android/annotations/4.1.1.4/annotations-4.1.1.4-sources.jar"
},
{
"coord": "com.google.api.grpc:proto-google-common-protos:2.17.0",
"dependencies": [
"com.google.protobuf:protobuf-java:3.21.12"
],
"directDependencies": [
"com.google.protobuf:protobuf-java:3.21.12"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0.jar"
],
"packages": [
"com.google.api",
"com.google.cloud",
"com.google.cloud.audit",
"com.google.cloud.location",
"com.google.geo.type",
"com.google.logging.type",
"com.google.longrunning",
"com.google.rpc",
"com.google.rpc.context",
"com.google.type"
],
"sha256": "4ef1fe0c327fc1521d1d753b0b1c4a875a54bd14ebded3afff0ca395320b6ea9",
"url": "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0.jar"
},
{
"coord": "com.google.api.grpc:proto-google-common-protos:jar:sources:2.17.0",
"dependencies": [
"com.google.protobuf:protobuf-java:jar:sources:3.21.12"
],
"directDependencies": [
"com.google.protobuf:protobuf-java:jar:sources:3.21.12"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0-sources.jar"
],
"packages": [],
"sha256": "cadaaa7232e1469abf515b99f2642b120fed9f68d6f36899ee493058b2159f18",
"url": "https://repo1.maven.org/maven2/com/google/api/grpc/proto-google-common-protos/2.17.0/proto-google-common-protos-2.17.0-sources.jar"
},
{
"coord": "com.google.auth:google-auth-library-credentials:1.4.0",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.4.0/google-auth-library-credentials-1.4.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.4.0/google-auth-library-credentials-1.4.0.jar"
],
"packages": [
"com.google.auth"
],
"sha256": "6ad4416d9360a1df3a660c43493e9605416ddd4de953ffbb14dd582a591b09a1",
"url": "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.4.0/google-auth-library-credentials-1.4.0.jar"
},
{
"coord": "com.google.auth:google-auth-library-credentials:jar:sources:1.4.0",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.4.0/google-auth-library-credentials-1.4.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.4.0/google-auth-library-credentials-1.4.0-sources.jar"
],
"packages": [],
"sha256": "2ebd10e88fa862919728bf7604b5b25aa51c19732c6a1d7fa1e9d68688c2ecee",
"url": "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-credentials/1.4.0/google-auth-library-credentials-1.4.0-sources.jar"
},
{
"coord": "com.google.auth:google-auth-library-oauth2-http:1.4.0",
"dependencies": [
"com.google.auth:google-auth-library-credentials:1.4.0",
"com.google.auto.value:auto-value-annotations:1.10.1",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:2.10.1",
"com.google.guava:guava:31.1-jre",
"com.google.http-client:google-http-client-gson:1.41.0",
"com.google.http-client:google-http-client:1.41.0",
"com.google.j2objc:j2objc-annotations:1.3",
"commons-codec:commons-codec:1.11",
"commons-logging:commons-logging:1.2",
"io.opencensus:opencensus-api:0.31.0",
"io.opencensus:opencensus-contrib-http-util:0.28.0",
"org.apache.httpcomponents:httpclient:4.5.13",
"org.apache.httpcomponents:httpcore:4.4.15"
],
"directDependencies": [
"com.google.auth:google-auth-library-credentials:1.4.0",
"com.google.auto.value:auto-value-annotations:1.10.1",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.guava:guava:31.1-jre",
"com.google.http-client:google-http-client-gson:1.41.0",
"com.google.http-client:google-http-client:1.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.4.0/google-auth-library-oauth2-http-1.4.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.4.0/google-auth-library-oauth2-http-1.4.0.jar"
],
"packages": [
"com.google.auth.http",
"com.google.auth.oauth2"
],
"sha256": "bbf99bba3394c699c48b2e67257dfa96b84c6ee54c348bd426c94207b84254ba",
"url": "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.4.0/google-auth-library-oauth2-http-1.4.0.jar"
},
{
"coord": "com.google.auth:google-auth-library-oauth2-http:jar:sources:1.4.0",
"dependencies": [
"com.google.auth:google-auth-library-credentials:jar:sources:1.4.0",
"com.google.auto.value:auto-value-annotations:jar:sources:1.10.1",
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.code.gson:gson:jar:sources:2.10.1",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.http-client:google-http-client-gson:jar:sources:1.41.0",
"com.google.http-client:google-http-client:jar:sources:1.41.0",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"commons-codec:commons-codec:jar:sources:1.11",
"commons-logging:commons-logging:jar:sources:1.2",
"io.opencensus:opencensus-api:jar:sources:0.31.0",
"io.opencensus:opencensus-contrib-http-util:jar:sources:0.28.0",
"org.apache.httpcomponents:httpclient:jar:sources:4.5.13",
"org.apache.httpcomponents:httpcore:jar:sources:4.4.15"
],
"directDependencies": [
"com.google.auth:google-auth-library-credentials:jar:sources:1.4.0",
"com.google.auto.value:auto-value-annotations:jar:sources:1.10.1",
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.http-client:google-http-client-gson:jar:sources:1.41.0",
"com.google.http-client:google-http-client:jar:sources:1.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.4.0/google-auth-library-oauth2-http-1.4.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.4.0/google-auth-library-oauth2-http-1.4.0-sources.jar"
],
"packages": [],
"sha256": "7af3571aad62df42a56051c212c00a334c8cbd886b5bb06da1abc82417e3f5b7",
"url": "https://repo1.maven.org/maven2/com/google/auth/google-auth-library-oauth2-http/1.4.0/google-auth-library-oauth2-http-1.4.0-sources.jar"
},
{
"coord": "com.google.auto.value:auto-value-annotations:1.10.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.10.1/auto-value-annotations-1.10.1.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.10.1/auto-value-annotations-1.10.1.jar"
],
"packages": [
"com.google.auto.value",
"com.google.auto.value.extension.memoized",
"com.google.auto.value.extension.serializable",
"com.google.auto.value.extension.toprettystring"
],
"sha256": "a4fe0a211925e938a8510d741763ee1171a11bf931f5891ef4d4ee84fca72be2",
"url": "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.10.1/auto-value-annotations-1.10.1.jar"
},
{
"coord": "com.google.auto.value:auto-value-annotations:jar:sources:1.10.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.10.1/auto-value-annotations-1.10.1-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.10.1/auto-value-annotations-1.10.1-sources.jar"
],
"packages": [],
"sha256": "44e6ce2884c18869422765b238f7f173faccd24643fabb5e95597382e80d50a8",
"url": "https://repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.10.1/auto-value-annotations-1.10.1-sources.jar"
},
{
"coord": "com.google.auto.value:auto-value:1.10.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.1/auto-value-1.10.1.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.1/auto-value-1.10.1.jar"
],
"packages": [
"autovalue.shaded.com.google.auto.common",
"autovalue.shaded.com.google.auto.service",
"autovalue.shaded.com.google.common.annotations",
"autovalue.shaded.com.google.common.base",
"autovalue.shaded.com.google.common.cache",
"autovalue.shaded.com.google.common.collect",
"autovalue.shaded.com.google.common.escape",
"autovalue.shaded.com.google.common.eventbus",
"autovalue.shaded.com.google.common.graph",
"autovalue.shaded.com.google.common.hash",
"autovalue.shaded.com.google.common.html",
"autovalue.shaded.com.google.common.io",
"autovalue.shaded.com.google.common.math",
"autovalue.shaded.com.google.common.net",
"autovalue.shaded.com.google.common.primitives",
"autovalue.shaded.com.google.common.reflect",
"autovalue.shaded.com.google.common.util.concurrent",
"autovalue.shaded.com.google.common.xml",
"autovalue.shaded.com.google.errorprone.annotations",
"autovalue.shaded.com.google.errorprone.annotations.concurrent",
"autovalue.shaded.com.google.escapevelocity",
"autovalue.shaded.com.google.j2objc.annotations",
"autovalue.shaded.com.squareup.javapoet",
"autovalue.shaded.kotlin",
"autovalue.shaded.kotlin.annotation",
"autovalue.shaded.kotlin.collections",
"autovalue.shaded.kotlin.collections.builders",
"autovalue.shaded.kotlin.collections.unsigned",
"autovalue.shaded.kotlin.comparisons",
"autovalue.shaded.kotlin.coroutines",
"autovalue.shaded.kotlin.coroutines.intrinsics",
"autovalue.shaded.kotlin.coroutines.jvm.internal",
"autovalue.shaded.kotlin.experimental",
"autovalue.shaded.kotlin.internal",
"autovalue.shaded.kotlin.jvm",
"autovalue.shaded.kotlin.jvm.functions",
"autovalue.shaded.kotlin.jvm.internal",
"autovalue.shaded.kotlin.jvm.internal.markers",
"autovalue.shaded.kotlin.random",
"autovalue.shaded.kotlin.ranges",
"autovalue.shaded.kotlin.reflect",
"autovalue.shaded.kotlin.sequences",
"autovalue.shaded.kotlin.text",
"autovalue.shaded.kotlinx.metadata",
"autovalue.shaded.kotlinx.metadata.impl",
"autovalue.shaded.kotlinx.metadata.impl.extensions",
"autovalue.shaded.kotlinx.metadata.internal.metadata",
"autovalue.shaded.kotlinx.metadata.internal.metadata.deserialization",
"autovalue.shaded.kotlinx.metadata.internal.metadata.jvm",
"autovalue.shaded.kotlinx.metadata.internal.metadata.jvm.deserialization",
"autovalue.shaded.kotlinx.metadata.internal.metadata.jvm.serialization",
"autovalue.shaded.kotlinx.metadata.internal.metadata.serialization",
"autovalue.shaded.kotlinx.metadata.internal.protobuf",
"autovalue.shaded.kotlinx.metadata.jvm",
"autovalue.shaded.kotlinx.metadata.jvm.impl",
"autovalue.shaded.net.ltgt.gradle.incap",
"autovalue.shaded.org.checkerframework.checker.nullness.qual",
"autovalue.shaded.org.checkerframework.framework.qual",
"autovalue.shaded.org.jetbrains.annotations",
"autovalue.shaded.org.objectweb.asm",
"com.google.auto.value.extension",
"com.google.auto.value.extension.memoized.processor",
"com.google.auto.value.extension.serializable.processor",
"com.google.auto.value.extension.serializable.serializer",
"com.google.auto.value.extension.serializable.serializer.impl",
"com.google.auto.value.extension.serializable.serializer.interfaces",
"com.google.auto.value.extension.serializable.serializer.runtime",
"com.google.auto.value.extension.toprettystring.processor",
"com.google.auto.value.processor"
],
"sha256": "ea78010d82efdb2f919b16faed9e6427f07d2998a15c4f619cdc6a6164ecd336",
"url": "https://repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.1/auto-value-1.10.1.jar"
},
{
"coord": "com.google.auto.value:auto-value:jar:sources:1.10.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.1/auto-value-1.10.1-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.1/auto-value-1.10.1-sources.jar"
],
"packages": [],
"sha256": "39c581c92f8d48817e5f0a70832fd719aeb2f925aacfb3822b8c6f1ec7a618fe",
"url": "https://repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.1/auto-value-1.10.1-sources.jar"
},
{
"coord": "com.google.code.findbugs:jsr305:3.0.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
],
"packages": [
"javax.annotation",
"javax.annotation.concurrent",
"javax.annotation.meta"
],
"sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"url": "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
},
{
"coord": "com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar"
],
"packages": [],
"sha256": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b",
"url": "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar"
},
{
"coord": "com.google.code.gson:gson:2.10.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar"
],
"packages": [
"com.google.gson",
"com.google.gson.annotations",
"com.google.gson.internal",
"com.google.gson.internal.bind",
"com.google.gson.internal.bind.util",
"com.google.gson.internal.reflect",
"com.google.gson.internal.sql",
"com.google.gson.reflect",
"com.google.gson.stream"
],
"sha256": "4241c14a7727c34feea6507ec801318a3d4a90f070e4525681079fb94ee4c593",
"url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar"
},
{
"coord": "com.google.code.gson:gson:jar:sources:2.10.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1-sources.jar"
],
"packages": [],
"sha256": "eee1cc5c1f4267ee194cc245777e68084738ef390acd763354ce0ff6bfb7bcc1",
"url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1-sources.jar"
},
{
"coord": "com.google.errorprone:error_prone_annotations:2.18.0",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar"
],
"packages": [
"com.google.errorprone.annotations",
"com.google.errorprone.annotations.concurrent"
],
"sha256": "9e6814cb71816988a4fd1b07a993a8f21bb7058d522c162b1de849e19bea54ae",
"url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.jar"
},
{
"coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.18.0",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0-sources.jar"
],
"packages": [],
"sha256": "a2c0783981c8ad48faaa6ea8de6f1926d8e87c125f5df5ce531a9810b943e032",
"url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0-sources.jar"
},
{
"coord": "com.google.googlejavaformat:google-java-format:1.15.0",
"dependencies": [
"com.google.guava:guava:31.1-jre"
],
"directDependencies": [
"com.google.guava:guava:31.1-jre"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0.jar"
],
"packages": [
"com.google.googlejavaformat",
"com.google.googlejavaformat.java",
"com.google.googlejavaformat.java.filer",
"com.google.googlejavaformat.java.java14",
"com.google.googlejavaformat.java.javadoc"
],
"sha256": "4f546cfe159547ac3b9547daa9649e728f6abc254979c975f1cb9971793692c3",
"url": "https://repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0.jar"
},
{
"coord": "com.google.googlejavaformat:google-java-format:jar:sources:1.15.0",
"dependencies": [
"com.google.guava:guava:jar:sources:31.1-jre"
],
"directDependencies": [
"com.google.guava:guava:jar:sources:31.1-jre"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0-sources.jar"
],
"packages": [],
"sha256": "c55f0bd9fa6862a0629bb129ddbf425327f4869cbc9d503fd17c76cf8c2ef30c",
"url": "https://repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.15.0/google-java-format-1.15.0-sources.jar"
},
{
"coord": "com.google.guava:failureaccess:1.0.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
],
"packages": [
"com.google.common.util.concurrent.internal"
],
"sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
"url": "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
},
{
"coord": "com.google.guava:failureaccess:jar:sources:1.0.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar"
],
"packages": [],
"sha256": "092346eebbb1657b51aa7485a246bf602bb464cc0b0e2e1c7e7201fadce1e98f",
"url": "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar"
},
{
"coord": "com.google.guava:guava:31.1-jre",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.18.0",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"org.checkerframework:checker-qual:3.12.0"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.18.0",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"org.checkerframework:checker-qual:3.12.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"
],
"packages": [
"com.google.common.annotations",
"com.google.common.base",
"com.google.common.base.internal",
"com.google.common.cache",
"com.google.common.collect",
"com.google.common.escape",
"com.google.common.eventbus",
"com.google.common.graph",
"com.google.common.hash",
"com.google.common.html",
"com.google.common.io",
"com.google.common.math",
"com.google.common.net",
"com.google.common.primitives",
"com.google.common.reflect",
"com.google.common.util.concurrent",
"com.google.common.xml",
"com.google.thirdparty.publicsuffix"
],
"sha256": "a42edc9cab792e39fe39bb94f3fca655ed157ff87a8af78e1d6ba5b07c4a00ab",
"url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"
},
{
"coord": "com.google.guava:guava:jar:sources:31.1-jre",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.errorprone:error_prone_annotations:jar:sources:2.18.0",
"com.google.guava:failureaccess:jar:sources:1.0.1",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"org.checkerframework:checker-qual:jar:sources:3.12.0"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.errorprone:error_prone_annotations:jar:sources:2.18.0",
"com.google.guava:failureaccess:jar:sources:1.0.1",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"org.checkerframework:checker-qual:jar:sources:3.12.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre-sources.jar"
],
"packages": [],
"sha256": "8ab1853cdaf936ec88be80c17302b7c20abafbd4f54d4fb54d7011c529e3a44a",
"url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre-sources.jar"
},
{
"coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
],
"packages": [],
"sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
"url": "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
},
{
"coord": "com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"dependencies": [],
"directDependencies": [],
"file": null
},
{
"coord": "com.google.http-client:google-http-client-gson:1.41.0",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:2.10.1",
"com.google.guava:guava:31.1-jre",
"com.google.http-client:google-http-client:1.41.0",
"com.google.j2objc:j2objc-annotations:1.3",
"commons-codec:commons-codec:1.11",
"commons-logging:commons-logging:1.2",
"io.opencensus:opencensus-api:0.31.0",
"io.opencensus:opencensus-contrib-http-util:0.28.0",
"org.apache.httpcomponents:httpclient:4.5.13",
"org.apache.httpcomponents:httpcore:4.4.15"
],
"directDependencies": [
"com.google.code.gson:gson:2.10.1",
"com.google.http-client:google-http-client:1.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.41.0/google-http-client-gson-1.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.41.0/google-http-client-gson-1.41.0.jar"
],
"packages": [
"com.google.api.client.json.gson"
],
"sha256": "18766d1bbeb6d363763ef725bc82ed3c8c45f88eadbf149965e6e8c8d9b70d9f",
"url": "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.41.0/google-http-client-gson-1.41.0.jar"
},
{
"coord": "com.google.http-client:google-http-client-gson:jar:sources:1.41.0",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.code.gson:gson:jar:sources:2.10.1",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.http-client:google-http-client:jar:sources:1.41.0",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"commons-codec:commons-codec:jar:sources:1.11",
"commons-logging:commons-logging:jar:sources:1.2",
"io.opencensus:opencensus-api:jar:sources:0.31.0",
"io.opencensus:opencensus-contrib-http-util:jar:sources:0.28.0",
"org.apache.httpcomponents:httpclient:jar:sources:4.5.13",
"org.apache.httpcomponents:httpcore:jar:sources:4.4.15"
],
"directDependencies": [
"com.google.code.gson:gson:jar:sources:2.10.1",
"com.google.http-client:google-http-client:jar:sources:1.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.41.0/google-http-client-gson-1.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.41.0/google-http-client-gson-1.41.0-sources.jar"
],
"packages": [],
"sha256": "d57cf3a5ba02a65e03d1b35e0164502f09dfca08a7547f682b63bff3951aeae6",
"url": "https://repo1.maven.org/maven2/com/google/http-client/google-http-client-gson/1.41.0/google-http-client-gson-1.41.0-sources.jar"
},
{
"coord": "com.google.http-client:google-http-client:1.41.0",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.guava:guava:31.1-jre",
"com.google.j2objc:j2objc-annotations:1.3",
"commons-codec:commons-codec:1.11",
"commons-logging:commons-logging:1.2",
"io.opencensus:opencensus-api:0.31.0",
"io.opencensus:opencensus-contrib-http-util:0.28.0",
"org.apache.httpcomponents:httpclient:4.5.13",
"org.apache.httpcomponents:httpcore:4.4.15"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.guava:guava:31.1-jre",
"com.google.j2objc:j2objc-annotations:1.3",
"io.opencensus:opencensus-api:0.31.0",
"io.opencensus:opencensus-contrib-http-util:0.28.0",
"org.apache.httpcomponents:httpclient:4.5.13",
"org.apache.httpcomponents:httpcore:4.4.15"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client/1.41.0/google-http-client-1.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.41.0/google-http-client-1.41.0.jar"
],
"packages": [
"com.google.api.client.http",
"com.google.api.client.http.apache",
"com.google.api.client.http.javanet",
"com.google.api.client.http.json",
"com.google.api.client.json",
"com.google.api.client.json.rpc2",
"com.google.api.client.json.webtoken",
"com.google.api.client.testing.http",
"com.google.api.client.testing.http.apache",
"com.google.api.client.testing.http.javanet",
"com.google.api.client.testing.json",
"com.google.api.client.testing.json.webtoken",
"com.google.api.client.testing.util",
"com.google.api.client.util",
"com.google.api.client.util.escape",
"com.google.api.client.util.store"
],
"sha256": "4a42d2c383373bf61c798f1882745989b9836bb032a8a4019890ecb6cd903ef3",
"url": "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.41.0/google-http-client-1.41.0.jar"
},
{
"coord": "com.google.http-client:google-http-client:jar:sources:1.41.0",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"commons-codec:commons-codec:jar:sources:1.11",
"commons-logging:commons-logging:jar:sources:1.2",
"io.opencensus:opencensus-api:jar:sources:0.31.0",
"io.opencensus:opencensus-contrib-http-util:jar:sources:0.28.0",
"org.apache.httpcomponents:httpclient:jar:sources:4.5.13",
"org.apache.httpcomponents:httpcore:jar:sources:4.4.15"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"io.opencensus:opencensus-api:jar:sources:0.31.0",
"io.opencensus:opencensus-contrib-http-util:jar:sources:0.28.0",
"org.apache.httpcomponents:httpclient:jar:sources:4.5.13",
"org.apache.httpcomponents:httpcore:jar:sources:4.4.15"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/http-client/google-http-client/1.41.0/google-http-client-1.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.41.0/google-http-client-1.41.0-sources.jar"
],
"packages": [],
"sha256": "e01bf612119655934574002ad15c0e80b174949d118ab2378d291d065cab3ebd",
"url": "https://repo1.maven.org/maven2/com/google/http-client/google-http-client/1.41.0/google-http-client-1.41.0-sources.jar"
},
{
"coord": "com.google.j2objc:j2objc-annotations:1.3",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
],
"packages": [
"com.google.j2objc.annotations"
],
"sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b",
"url": "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
},
{
"coord": "com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar"
],
"packages": [],
"sha256": "ba4df669fec153fa4cd0ef8d02c6d3ef0702b7ac4cabe080facf3b6e490bb972",
"url": "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar"
},
{
"coord": "com.google.protobuf:protobuf-java-util:3.17.2",
"dependencies": [
"com.google.code.gson:gson:2.10.1",
"com.google.errorprone:error_prone_annotations:2.18.0",
"com.google.guava:guava:31.1-jre",
"com.google.protobuf:protobuf-java:3.21.12"
],
"directDependencies": [
"com.google.code.gson:gson:2.10.1",
"com.google.errorprone:error_prone_annotations:2.18.0",
"com.google.guava:guava:31.1-jre",
"com.google.protobuf:protobuf-java:3.21.12"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.jar"
],
"packages": [
"com.google.protobuf.util"
],
"sha256": "849925333aac23f46f9a154a52e441117017d5673e04e5636993bcc3cf1924d9",
"url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2.jar"
},
{
"coord": "com.google.protobuf:protobuf-java-util:jar:sources:3.17.2",
"dependencies": [
"com.google.code.gson:gson:jar:sources:2.10.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.18.0",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.protobuf:protobuf-java:jar:sources:3.21.12"
],
"directDependencies": [
"com.google.code.gson:gson:jar:sources:2.10.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.18.0",
"com.google.guava:guava:jar:sources:31.1-jre",
"com.google.protobuf:protobuf-java:jar:sources:3.21.12"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2-sources.jar"
],
"packages": [],
"sha256": "bf3b9ba1861619717e433477c76eb5772c24b9f6e18da72a14052bec07e18efb",
"url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/3.17.2/protobuf-java-util-3.17.2-sources.jar"
},
{
"coord": "com.google.protobuf:protobuf-java:3.21.12",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12.jar"
],
"packages": [
"com.google.protobuf",
"com.google.protobuf.compiler"
],
"sha256": "3f3edbda9286246080f3eaf561dd6b0d5a2b1f1008f6909115c8609ceae9df87",
"url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12.jar"
},
{
"coord": "com.google.protobuf:protobuf-java:jar:sources:3.21.12",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12-sources.jar"
],
"packages": [],
"sha256": "58e3c7ed26ea646dfe332249971db684e7564100379251631950c69fabdcb34c",
"url": "https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.21.12/protobuf-java-3.21.12-sources.jar"
},
{