-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmaven_install.json
984 lines (984 loc) · 37.9 KB
/
maven_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
{
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": -1963022348,
"__RESOLVED_ARTIFACTS_HASH": 547790764,
"artifacts": {
"com.google.api.grpc:proto-google-common-protos": {
"shasums": {
"jar": "49edeba62f334053b91aa9455c95e38449269891b920dbc36daa74e959a3d89a",
"sources": "a802dcf2a3f32b93b27e3b85988db08de834cdd32d2a26b5f1a1f04ca4fabcab"
},
"version": "2.41.0"
},
"com.google.auto.value:auto-value-annotations": {
"shasums": {
"jar": "5a055ce4255333b3346e1a8703da5bf8ff049532286fdcd31712d624abe111dd",
"sources": "d7941e5f19bb38afcfa85350d57e5245856c23c98c2bbe32f6d31b5577f2bc33"
},
"version": "1.11.0"
},
"com.google.code.findbugs:jsr305": {
"shasums": {
"jar": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"sources": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b"
},
"version": "3.0.2"
},
"com.google.errorprone:error_prone_annotations": {
"shasums": {
"jar": "f3fc8a3a0a4020706a373b00e7f57c2512dd26d1f83d28c7d38768f8682b231e",
"sources": "2936e9b315d790d8a6364f0574bcec9c8b2d78688b317e1765c4a16f9ef80632"
},
"version": "2.28.0"
},
"com.google.guava:failureaccess": {
"shasums": {
"jar": "8a8f81cf9b359e3f6dfa691a1e776985c061ef2f223c9b2c80753e1b458e8064",
"sources": "dd3bfa5e2ec5bc5397efb2c3cef044c192313ff77089573667ff97a60c6978e0"
},
"version": "1.0.2"
},
"com.google.guava:guava": {
"shasums": {
"jar": "6b55fbe6ffee621454c03df7bea720d189789e136391a524e29506ff40654180",
"sources": "0b751c70cbeb936a3361cd967cec425ac3cb407318a4e5a601d6c5441e95bd80"
},
"version": "33.2.1-android"
},
"com.google.guava:listenablefuture": {
"shasums": {
"jar": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99"
},
"version": "9999.0-empty-to-avoid-conflict-with-guava"
},
"com.google.j2objc:j2objc-annotations": {
"shasums": {
"jar": "88241573467ddca44ffd4d74aa04c2bbfd11bf7c17e0c342c94c9de7a70a7c64",
"sources": "bd60019a0423c3a025ef6ab24fe0761f5f45ffb48a8cca74a01b678de1105d38"
},
"version": "3.0.0"
},
"com.google.protobuf:protobuf-java": {
"shasums": {
"jar": "0794eb42800cf637eebb2c8143cdc1bda3ac6a6d4adf246603f88dc2d3a240de",
"sources": "aa84a60a4c510c969a51cf5a6299cd6f2cad97aee5d4098a766f1d7bcb66e8e6"
},
"version": "4.27.5"
},
"com.google.protobuf:protobuf-kotlin": {
"shasums": {
"jar": "8c6016ce65d0a292c3392492dc3efd72e379317d6a774de5ba9441f2d200bbf6",
"sources": "f3aefae9321256904f80fdbfa6d58c358b555ae913da0060bc2e1d45b671c6b0"
},
"version": "4.27.5"
},
"com.google.truth.extensions:truth-java8-extension": {
"shasums": {
"jar": "fc06f188c2c99991b010c986010b62109dae61f96ead46234642c294a09b70ae",
"sources": "fc8fed1434426471a26ca12a21b163e3eb85274082327a54a537bd1fe0d18f25"
},
"version": "1.4.4"
},
"com.google.truth.extensions:truth-liteproto-extension": {
"shasums": {
"jar": "503bd6ecbf1d508ff05407b798b0e3044fe914e8d9971de97d46442411f56512",
"sources": "3addbea057d6dca8506b4ea15bbd2b7859052ab2f097351b7439462ffe9afbe1"
},
"version": "1.4.4"
},
"com.google.truth.extensions:truth-proto-extension": {
"shasums": {
"jar": "2e142983d689fc8ff1b4fc5f1b6c71d9b99339237ba7275937a934493b2b3f79",
"sources": "2ed4584e68c902a5df39d396222015c947ab21ddf90103e212b35e79b07b6c9a"
},
"version": "1.4.4"
},
"com.google.truth:truth": {
"shasums": {
"jar": "52c86cddadc31bc8457c1e15689fc6b75e2e97ce2a83d8b54b795d556d489f8c",
"sources": "32da2ce3fd5f2622cda8bdecc316ee1634b376a8a330c910e4e46831f2c7a4f3"
},
"version": "1.4.4"
},
"io.grpc:grpc-api": {
"shasums": {
"jar": "8fadb1f4f0a18971c082497f34cbb78a51897ca8af4b212aa2a99c7de9ad995c",
"sources": "6d0df2072702a1badfaaab3cce14f2629d4eaec85cf696347561bec19736ce8c"
},
"version": "1.66.0"
},
"io.grpc:grpc-kotlin-stub": {
"shasums": {
"jar": "9403d4c826039dc869f036087569cc686b3c901da2d5be3db75d154ddd3f8209",
"sources": "bd19ada6494a7917af870d1115f77f52949eea435e7a04a321181d11e9078e1c"
},
"version": "1.4.1"
},
"io.grpc:grpc-protobuf": {
"shasums": {
"jar": "5942dd582be6c0319bf2af9dd94886f631927b7126d57c8d84fbddd796fd7eb5",
"sources": "f92c032714e34633d9d827ff968cd49d4f6bf6bcfeb06d942d067f8b4d12af54"
},
"version": "1.66.0"
},
"io.grpc:grpc-protobuf-lite": {
"shasums": {
"jar": "7cfe945848c64dbbb338d89b28bb5568b833f71a1dc67f30dbbd94071330dc5d",
"sources": "59c648540fa3e5e282c883f3906a6fb3ac1c7fbbf68b4d6aa4c7980d4f3e97f2"
},
"version": "1.66.0"
},
"io.grpc:grpc-stub": {
"shasums": {
"jar": "39a32906304c7f442dfa56dfc6ea88887287fb398621d549e15dfdeaffae194a",
"sources": "804366607d379261778d2373b5b23375f63666acfdb325fdd789081ee635edf3"
},
"version": "1.66.0"
},
"io.grpc:protoc-gen-grpc-kotlin": {
"shasums": {
"jdk8": "62a9956b4c9aad4a06ecbbb5d425e078a0391ec57c5a26bbfbbb19f6717bcd69"
},
"version": "1.4.1"
},
"javax.annotation:javax.annotation-api": {
"shasums": {
"jar": "e04ba5195bcd555dc95650f7cc614d151e4bcd52d29a10b8aa2197f3ab89ab9b",
"sources": "128971e52e0d84a66e3b6e049dab8ad7b2c58b7e1ad37fa2debd3d40c2947b95"
},
"version": "1.3.2"
},
"junit:junit": {
"shasums": {
"jar": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3",
"sources": "34181df6482d40ea4c046b063cb53c7ffae94bdf1b1d62695bdf3adf9dea7e3a"
},
"version": "4.13.2"
},
"org.checkerframework:checker-qual": {
"shasums": {
"jar": "ccaedd33af0b7894d9f2f3b644f4d19e43928e32902e61ac4d10777830f5aac7",
"sources": "efb65eb479f61f53c6dcafbd42ed59dad09b0a0d5a7f44b7bc68df25c2dcf8fd"
},
"version": "3.42.0"
},
"org.hamcrest:hamcrest-core": {
"shasums": {
"jar": "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9",
"sources": "e223d2d8fbafd66057a8848cc94222d63c3cedd652cc48eddc0ab5c39c0f84df"
},
"version": "1.3"
},
"org.jetbrains.kotlin:kotlin-reflect": {
"shasums": {
"jar": "0f8386ddfd69e7f454a1e6b90b271dccd901d96a257fdf633ecf052fb8951d9f",
"sources": "ca0683bab01b6ce2ad97d9fa7575ad6204b32d3814dc722b9519bcdfc7315abf"
},
"version": "1.9.25"
},
"org.jetbrains.kotlin:kotlin-stdlib": {
"shasums": {
"jar": "f9cdcdbff1f5de85380ae526977e683726c2aa42db1ed6e6e50ae89e496e95fd",
"sources": "1745faecebad150a45b5ddf63b29577693a27133bb3ef2126704230af8e5ea6a"
},
"version": "1.9.25"
},
"org.jetbrains.kotlin:kotlin-stdlib-common": {
"shasums": {
"jar": "8202e7f032c8dc6698d00c62867701546a7c12c4731ebddfb8eec0788e2eeee4",
"sources": "a4200521353b67a7a5fb99c0b171ed592da6ba892fba2e35f72c7ad4c8e91edc"
},
"version": "1.9.25"
},
"org.jetbrains.kotlin:kotlin-test": {
"shasums": {
"jar": "2fc14d7d08f90115c24f7689786b2d3c8886540d65bafda0274419280ede8796",
"sources": "18fe93247344574b699376015c38bb93971cd8785f8580941c14f722bc6d69dd"
},
"version": "1.9.25"
},
"org.jetbrains.kotlinx:kotlinx-coroutines-core": {
"shasums": {
"jar": "daf50f1c9404b224a1d6dd5286f8e8ee7d63fe807f78ea98f71795c183b6025f",
"sources": "4439a01f451bb44cabda4da2d0638cebf6ab5804c85fa725af90b4d65711f3bb"
},
"version": "1.8.1"
},
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm": {
"shasums": {
"jar": "f3d4f5de1c391bbcc20f3b3435ccbac013521e76b6902d7d59635ec15c1f797e",
"sources": "737e71610738eb308ae4caa9d352c963df7c25efed7ca176de3a35a2141bed92"
},
"version": "1.8.1"
},
"org.jetbrains:annotations": {
"shasums": {
"jar": "ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478",
"sources": "42a5e144b8e81d50d6913d1007b695e62e614705268d8cf9f13dbdc478c2c68e"
},
"version": "13.0"
},
"org.jspecify:jspecify": {
"shasums": {
"jar": "e1c7e1832b6095fcfcbe57485700c7330d53d4e57e2c5bbf9c71819b02e978be",
"sources": "7c66077951afbdd89e76c11f75c81ed4deaba831994ca8f6a3648c4c89c5054b"
},
"version": "0.3.0"
},
"org.ow2.asm:asm": {
"shasums": {
"jar": "adf46d5e34940bdf148ecdd26a9ee8eea94496a72034ff7141066b3eea5c4e9d",
"sources": "11dfd88129204be18c0f592f8e066d0c07d8a6bc001f6c7b2cce5ff0588d5d71"
},
"version": "9.7"
}
},
"conflict_resolution": {
"com.google.errorprone:error_prone_annotations:2.26.1": "com.google.errorprone:error_prone_annotations:2.28.0",
"org.jetbrains:annotations:23.0.0": "org.jetbrains:annotations:13.0"
},
"dependencies": {
"com.google.api.grpc:proto-google-common-protos": [
"com.google.protobuf:protobuf-java"
],
"com.google.guava:guava": [
"com.google.code.findbugs:jsr305",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:failureaccess",
"com.google.guava:listenablefuture",
"com.google.j2objc:j2objc-annotations",
"org.checkerframework:checker-qual"
],
"com.google.protobuf:protobuf-kotlin": [
"com.google.protobuf:protobuf-java",
"org.jetbrains.kotlin:kotlin-stdlib"
],
"com.google.truth.extensions:truth-java8-extension": [
"com.google.truth:truth"
],
"com.google.truth.extensions:truth-liteproto-extension": [
"com.google.auto.value:auto-value-annotations",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"com.google.truth:truth",
"org.jspecify:jspecify"
],
"com.google.truth.extensions:truth-proto-extension": [
"com.google.auto.value:auto-value-annotations",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"com.google.protobuf:protobuf-java",
"com.google.truth.extensions:truth-liteproto-extension",
"com.google.truth:truth",
"org.jspecify:jspecify"
],
"com.google.truth:truth": [
"com.google.auto.value:auto-value-annotations",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"junit:junit",
"org.jspecify:jspecify",
"org.ow2.asm:asm"
],
"io.grpc:grpc-api": [
"com.google.code.findbugs:jsr305",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava"
],
"io.grpc:grpc-kotlin-stub": [
"io.grpc:grpc-stub",
"javax.annotation:javax.annotation-api",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm"
],
"io.grpc:grpc-protobuf": [
"com.google.api.grpc:proto-google-common-protos",
"com.google.code.findbugs:jsr305",
"com.google.guava:guava",
"com.google.protobuf:protobuf-java",
"io.grpc:grpc-api",
"io.grpc:grpc-protobuf-lite"
],
"io.grpc:grpc-protobuf-lite": [
"com.google.code.findbugs:jsr305",
"com.google.guava:guava",
"io.grpc:grpc-api"
],
"io.grpc:grpc-stub": [
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"io.grpc:grpc-api"
],
"junit:junit": [
"org.hamcrest:hamcrest-core"
],
"org.jetbrains.kotlin:kotlin-reflect": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"org.jetbrains.kotlin:kotlin-stdlib": [
"org.jetbrains:annotations"
],
"org.jetbrains.kotlin:kotlin-test": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"org.jetbrains.kotlinx:kotlinx-coroutines-core": [
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm"
],
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm": [
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains:annotations"
]
},
"packages": {
"com.google.api.grpc:proto-google-common-protos": [
"com.google.api",
"com.google.apps.card.v1",
"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.shopping.type",
"com.google.type"
],
"com.google.auto.value:auto-value-annotations": [
"com.google.auto.value",
"com.google.auto.value.extension.memoized",
"com.google.auto.value.extension.serializable",
"com.google.auto.value.extension.toprettystring"
],
"com.google.code.findbugs:jsr305": [
"javax.annotation",
"javax.annotation.concurrent",
"javax.annotation.meta"
],
"com.google.errorprone:error_prone_annotations": [
"com.google.errorprone.annotations",
"com.google.errorprone.annotations.concurrent"
],
"com.google.guava:failureaccess": [
"com.google.common.util.concurrent.internal"
],
"com.google.guava:guava": [
"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"
],
"com.google.j2objc:j2objc-annotations": [
"com.google.j2objc.annotations"
],
"com.google.protobuf:protobuf-java": [
"com.google.protobuf",
"com.google.protobuf.compiler"
],
"com.google.protobuf:protobuf-kotlin": [
"com.google.protobuf",
"com.google.protobuf.compiler",
"com.google.protobuf.kotlin"
],
"com.google.truth.extensions:truth-liteproto-extension": [
"com.google.common.truth.extensions.proto"
],
"com.google.truth.extensions:truth-proto-extension": [
"com.google.common.truth.extensions.proto"
],
"com.google.truth:truth": [
"com.google.common.truth"
],
"io.grpc:grpc-api": [
"io.grpc"
],
"io.grpc:grpc-kotlin-stub": [
"io.grpc.kotlin"
],
"io.grpc:grpc-protobuf": [
"io.grpc.protobuf"
],
"io.grpc:grpc-protobuf-lite": [
"io.grpc.protobuf.lite"
],
"io.grpc:grpc-stub": [
"io.grpc.stub",
"io.grpc.stub.annotations"
],
"io.grpc:protoc-gen-grpc-kotlin:jar:jdk8": [
"_COROUTINE",
"com.google.api",
"com.google.auto.value",
"com.google.auto.value.extension.memoized",
"com.google.auto.value.extension.serializable",
"com.google.auto.value.extension.toprettystring",
"com.google.cloud",
"com.google.cloud.audit",
"com.google.cloud.location",
"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.truth",
"com.google.common.util.concurrent",
"com.google.common.util.concurrent.internal",
"com.google.common.xml",
"com.google.errorprone.annotations",
"com.google.errorprone.annotations.concurrent",
"com.google.geo.type",
"com.google.j2objc.annotations",
"com.google.logging.type",
"com.google.longrunning",
"com.google.protobuf",
"com.google.protobuf.compiler",
"com.google.rpc",
"com.google.rpc.context",
"com.google.thirdparty.publicsuffix",
"com.google.type",
"com.squareup.kotlinpoet",
"com.squareup.kotlinpoet.jvm",
"com.squareup.kotlinpoet.tags",
"io.grpc",
"io.grpc.kotlin",
"io.grpc.kotlin.generator",
"io.grpc.kotlin.generator.protoc",
"io.grpc.kotlin.generator.protoc.testing",
"io.grpc.kotlin.generator.protoc.util.graph",
"io.grpc.kotlin.generator.protoc.util.sort",
"io.grpc.protobuf",
"io.grpc.protobuf.lite",
"io.grpc.stub",
"io.grpc.stub.annotations",
"javax.annotation",
"javax.annotation.concurrent",
"javax.annotation.meta",
"javax.annotation.security",
"javax.annotation.sql",
"junit.extensions",
"junit.framework",
"junit.runner",
"junit.textui",
"kotlin",
"kotlin.annotation",
"kotlin.collections",
"kotlin.collections.builders",
"kotlin.collections.jdk8",
"kotlin.collections.unsigned",
"kotlin.comparisons",
"kotlin.concurrent",
"kotlin.contracts",
"kotlin.coroutines",
"kotlin.coroutines.cancellation",
"kotlin.coroutines.intrinsics",
"kotlin.coroutines.jvm.internal",
"kotlin.enums",
"kotlin.experimental",
"kotlin.internal",
"kotlin.internal.jdk7",
"kotlin.internal.jdk8",
"kotlin.io",
"kotlin.io.encoding",
"kotlin.io.path",
"kotlin.jdk7",
"kotlin.js",
"kotlin.jvm",
"kotlin.jvm.functions",
"kotlin.jvm.internal",
"kotlin.jvm.internal.markers",
"kotlin.jvm.internal.unsafe",
"kotlin.jvm.jdk8",
"kotlin.jvm.optionals",
"kotlin.math",
"kotlin.properties",
"kotlin.random",
"kotlin.random.jdk8",
"kotlin.ranges",
"kotlin.reflect",
"kotlin.reflect.full",
"kotlin.reflect.jvm",
"kotlin.reflect.jvm.internal",
"kotlin.reflect.jvm.internal.calls",
"kotlin.reflect.jvm.internal.impl",
"kotlin.reflect.jvm.internal.impl.builtins",
"kotlin.reflect.jvm.internal.impl.builtins.functions",
"kotlin.reflect.jvm.internal.impl.builtins.jvm",
"kotlin.reflect.jvm.internal.impl.descriptors",
"kotlin.reflect.jvm.internal.impl.descriptors.annotations",
"kotlin.reflect.jvm.internal.impl.descriptors.deserialization",
"kotlin.reflect.jvm.internal.impl.descriptors.impl",
"kotlin.reflect.jvm.internal.impl.descriptors.java",
"kotlin.reflect.jvm.internal.impl.descriptors.runtime.components",
"kotlin.reflect.jvm.internal.impl.descriptors.runtime.structure",
"kotlin.reflect.jvm.internal.impl.incremental",
"kotlin.reflect.jvm.internal.impl.incremental.components",
"kotlin.reflect.jvm.internal.impl.load.java",
"kotlin.reflect.jvm.internal.impl.load.java.components",
"kotlin.reflect.jvm.internal.impl.load.java.descriptors",
"kotlin.reflect.jvm.internal.impl.load.java.lazy",
"kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors",
"kotlin.reflect.jvm.internal.impl.load.java.lazy.types",
"kotlin.reflect.jvm.internal.impl.load.java.sources",
"kotlin.reflect.jvm.internal.impl.load.java.structure",
"kotlin.reflect.jvm.internal.impl.load.java.typeEnhancement",
"kotlin.reflect.jvm.internal.impl.load.kotlin",
"kotlin.reflect.jvm.internal.impl.load.kotlin.header",
"kotlin.reflect.jvm.internal.impl.metadata",
"kotlin.reflect.jvm.internal.impl.metadata.builtins",
"kotlin.reflect.jvm.internal.impl.metadata.deserialization",
"kotlin.reflect.jvm.internal.impl.metadata.jvm",
"kotlin.reflect.jvm.internal.impl.metadata.jvm.deserialization",
"kotlin.reflect.jvm.internal.impl.name",
"kotlin.reflect.jvm.internal.impl.platform",
"kotlin.reflect.jvm.internal.impl.protobuf",
"kotlin.reflect.jvm.internal.impl.renderer",
"kotlin.reflect.jvm.internal.impl.resolve",
"kotlin.reflect.jvm.internal.impl.resolve.calls.inference",
"kotlin.reflect.jvm.internal.impl.resolve.constants",
"kotlin.reflect.jvm.internal.impl.resolve.deprecation",
"kotlin.reflect.jvm.internal.impl.resolve.descriptorUtil",
"kotlin.reflect.jvm.internal.impl.resolve.jvm",
"kotlin.reflect.jvm.internal.impl.resolve.sam",
"kotlin.reflect.jvm.internal.impl.resolve.scopes",
"kotlin.reflect.jvm.internal.impl.resolve.scopes.receivers",
"kotlin.reflect.jvm.internal.impl.serialization",
"kotlin.reflect.jvm.internal.impl.serialization.deserialization",
"kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins",
"kotlin.reflect.jvm.internal.impl.serialization.deserialization.descriptors",
"kotlin.reflect.jvm.internal.impl.storage",
"kotlin.reflect.jvm.internal.impl.types",
"kotlin.reflect.jvm.internal.impl.types.checker",
"kotlin.reflect.jvm.internal.impl.types.error",
"kotlin.reflect.jvm.internal.impl.types.extensions",
"kotlin.reflect.jvm.internal.impl.types.model",
"kotlin.reflect.jvm.internal.impl.types.typeUtil",
"kotlin.reflect.jvm.internal.impl.types.typesApproximation",
"kotlin.reflect.jvm.internal.impl.util",
"kotlin.reflect.jvm.internal.impl.util.capitalizeDecapitalize",
"kotlin.reflect.jvm.internal.impl.util.collectionUtils",
"kotlin.reflect.jvm.internal.impl.utils",
"kotlin.sequences",
"kotlin.streams.jdk8",
"kotlin.system",
"kotlin.text",
"kotlin.text.jdk8",
"kotlin.time",
"kotlin.time.jdk8",
"kotlinx.coroutines",
"kotlinx.coroutines.channels",
"kotlinx.coroutines.debug",
"kotlinx.coroutines.debug.internal",
"kotlinx.coroutines.flow",
"kotlinx.coroutines.flow.internal",
"kotlinx.coroutines.future",
"kotlinx.coroutines.internal",
"kotlinx.coroutines.intrinsics",
"kotlinx.coroutines.scheduling",
"kotlinx.coroutines.selects",
"kotlinx.coroutines.stream",
"kotlinx.coroutines.sync",
"kotlinx.coroutines.time",
"org.checkerframework.checker.builder.qual",
"org.checkerframework.checker.calledmethods.qual",
"org.checkerframework.checker.compilermsgs.qual",
"org.checkerframework.checker.fenum.qual",
"org.checkerframework.checker.formatter.qual",
"org.checkerframework.checker.guieffect.qual",
"org.checkerframework.checker.i18n.qual",
"org.checkerframework.checker.i18nformatter.qual",
"org.checkerframework.checker.index.qual",
"org.checkerframework.checker.initialization.qual",
"org.checkerframework.checker.interning.qual",
"org.checkerframework.checker.lock.qual",
"org.checkerframework.checker.mustcall.qual",
"org.checkerframework.checker.nullness.qual",
"org.checkerframework.checker.optional.qual",
"org.checkerframework.checker.propkey.qual",
"org.checkerframework.checker.regex.qual",
"org.checkerframework.checker.signature.qual",
"org.checkerframework.checker.signedness.qual",
"org.checkerframework.checker.tainting.qual",
"org.checkerframework.checker.units.qual",
"org.checkerframework.common.aliasing.qual",
"org.checkerframework.common.initializedfields.qual",
"org.checkerframework.common.reflection.qual",
"org.checkerframework.common.returnsreceiver.qual",
"org.checkerframework.common.subtyping.qual",
"org.checkerframework.common.util.report.qual",
"org.checkerframework.common.value.qual",
"org.checkerframework.dataflow.qual",
"org.checkerframework.framework.qual",
"org.hamcrest",
"org.hamcrest.core",
"org.hamcrest.internal",
"org.intellij.lang.annotations",
"org.jetbrains.annotations",
"org.junit",
"org.junit.experimental",
"org.junit.experimental.categories",
"org.junit.experimental.max",
"org.junit.experimental.results",
"org.junit.experimental.runners",
"org.junit.experimental.theories",
"org.junit.experimental.theories.internal",
"org.junit.experimental.theories.suppliers",
"org.junit.function",
"org.junit.internal",
"org.junit.internal.builders",
"org.junit.internal.management",
"org.junit.internal.matchers",
"org.junit.internal.requests",
"org.junit.internal.runners",
"org.junit.internal.runners.model",
"org.junit.internal.runners.rules",
"org.junit.internal.runners.statements",
"org.junit.matchers",
"org.junit.rules",
"org.junit.runner",
"org.junit.runner.manipulation",
"org.junit.runner.notification",
"org.junit.runners",
"org.junit.runners.model",
"org.junit.runners.parameterized",
"org.junit.validator",
"org.objectweb.asm",
"org.objectweb.asm.signature"
],
"javax.annotation:javax.annotation-api": [
"javax.annotation",
"javax.annotation.security",
"javax.annotation.sql"
],
"junit:junit": [
"junit.extensions",
"junit.framework",
"junit.runner",
"junit.textui",
"org.junit",
"org.junit.experimental",
"org.junit.experimental.categories",
"org.junit.experimental.max",
"org.junit.experimental.results",
"org.junit.experimental.runners",
"org.junit.experimental.theories",
"org.junit.experimental.theories.internal",
"org.junit.experimental.theories.suppliers",
"org.junit.function",
"org.junit.internal",
"org.junit.internal.builders",
"org.junit.internal.management",
"org.junit.internal.matchers",
"org.junit.internal.requests",
"org.junit.internal.runners",
"org.junit.internal.runners.model",
"org.junit.internal.runners.rules",
"org.junit.internal.runners.statements",
"org.junit.matchers",
"org.junit.rules",
"org.junit.runner",
"org.junit.runner.manipulation",
"org.junit.runner.notification",
"org.junit.runners",
"org.junit.runners.model",
"org.junit.runners.parameterized",
"org.junit.validator"
],
"org.checkerframework:checker-qual": [
"org.checkerframework.checker.builder.qual",
"org.checkerframework.checker.calledmethods.qual",
"org.checkerframework.checker.compilermsgs.qual",
"org.checkerframework.checker.fenum.qual",
"org.checkerframework.checker.formatter.qual",
"org.checkerframework.checker.guieffect.qual",
"org.checkerframework.checker.i18n.qual",
"org.checkerframework.checker.i18nformatter.qual",
"org.checkerframework.checker.index.qual",
"org.checkerframework.checker.initialization.qual",
"org.checkerframework.checker.interning.qual",
"org.checkerframework.checker.lock.qual",
"org.checkerframework.checker.mustcall.qual",
"org.checkerframework.checker.nullness.qual",
"org.checkerframework.checker.optional.qual",
"org.checkerframework.checker.propkey.qual",
"org.checkerframework.checker.regex.qual",
"org.checkerframework.checker.signature.qual",
"org.checkerframework.checker.signedness.qual",
"org.checkerframework.checker.tainting.qual",
"org.checkerframework.checker.units.qual",
"org.checkerframework.common.aliasing.qual",
"org.checkerframework.common.initializedfields.qual",
"org.checkerframework.common.reflection.qual",
"org.checkerframework.common.returnsreceiver.qual",
"org.checkerframework.common.subtyping.qual",
"org.checkerframework.common.util.count.report.qual",
"org.checkerframework.common.value.qual",
"org.checkerframework.dataflow.qual",
"org.checkerframework.framework.qual"
],
"org.hamcrest:hamcrest-core": [
"org.hamcrest",
"org.hamcrest.core",
"org.hamcrest.internal"
],
"org.jetbrains.kotlin:kotlin-reflect": [
"kotlin.reflect.full",
"kotlin.reflect.jvm",
"kotlin.reflect.jvm.internal",
"kotlin.reflect.jvm.internal.calls",
"kotlin.reflect.jvm.internal.impl",
"kotlin.reflect.jvm.internal.impl.builtins",
"kotlin.reflect.jvm.internal.impl.builtins.functions",
"kotlin.reflect.jvm.internal.impl.builtins.jvm",
"kotlin.reflect.jvm.internal.impl.descriptors",
"kotlin.reflect.jvm.internal.impl.descriptors.annotations",
"kotlin.reflect.jvm.internal.impl.descriptors.deserialization",
"kotlin.reflect.jvm.internal.impl.descriptors.impl",
"kotlin.reflect.jvm.internal.impl.descriptors.java",
"kotlin.reflect.jvm.internal.impl.descriptors.runtime.components",
"kotlin.reflect.jvm.internal.impl.descriptors.runtime.structure",
"kotlin.reflect.jvm.internal.impl.incremental",
"kotlin.reflect.jvm.internal.impl.incremental.components",
"kotlin.reflect.jvm.internal.impl.load.java",
"kotlin.reflect.jvm.internal.impl.load.java.components",
"kotlin.reflect.jvm.internal.impl.load.java.descriptors",
"kotlin.reflect.jvm.internal.impl.load.java.lazy",
"kotlin.reflect.jvm.internal.impl.load.java.lazy.descriptors",
"kotlin.reflect.jvm.internal.impl.load.java.lazy.types",
"kotlin.reflect.jvm.internal.impl.load.java.sources",
"kotlin.reflect.jvm.internal.impl.load.java.structure",
"kotlin.reflect.jvm.internal.impl.load.java.typeEnhancement",
"kotlin.reflect.jvm.internal.impl.load.kotlin",
"kotlin.reflect.jvm.internal.impl.load.kotlin.header",
"kotlin.reflect.jvm.internal.impl.metadata",
"kotlin.reflect.jvm.internal.impl.metadata.builtins",
"kotlin.reflect.jvm.internal.impl.metadata.deserialization",
"kotlin.reflect.jvm.internal.impl.metadata.jvm",
"kotlin.reflect.jvm.internal.impl.metadata.jvm.deserialization",
"kotlin.reflect.jvm.internal.impl.name",
"kotlin.reflect.jvm.internal.impl.platform",
"kotlin.reflect.jvm.internal.impl.protobuf",
"kotlin.reflect.jvm.internal.impl.renderer",
"kotlin.reflect.jvm.internal.impl.resolve",
"kotlin.reflect.jvm.internal.impl.resolve.calls.inference",
"kotlin.reflect.jvm.internal.impl.resolve.constants",
"kotlin.reflect.jvm.internal.impl.resolve.deprecation",
"kotlin.reflect.jvm.internal.impl.resolve.descriptorUtil",
"kotlin.reflect.jvm.internal.impl.resolve.jvm",
"kotlin.reflect.jvm.internal.impl.resolve.sam",
"kotlin.reflect.jvm.internal.impl.resolve.scopes",
"kotlin.reflect.jvm.internal.impl.resolve.scopes.receivers",
"kotlin.reflect.jvm.internal.impl.serialization",
"kotlin.reflect.jvm.internal.impl.serialization.deserialization",
"kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins",
"kotlin.reflect.jvm.internal.impl.serialization.deserialization.descriptors",
"kotlin.reflect.jvm.internal.impl.storage",
"kotlin.reflect.jvm.internal.impl.types",
"kotlin.reflect.jvm.internal.impl.types.checker",
"kotlin.reflect.jvm.internal.impl.types.error",
"kotlin.reflect.jvm.internal.impl.types.extensions",
"kotlin.reflect.jvm.internal.impl.types.model",
"kotlin.reflect.jvm.internal.impl.types.typeUtil",
"kotlin.reflect.jvm.internal.impl.types.typesApproximation",
"kotlin.reflect.jvm.internal.impl.util",
"kotlin.reflect.jvm.internal.impl.util.capitalizeDecapitalize",
"kotlin.reflect.jvm.internal.impl.util.collectionUtils",
"kotlin.reflect.jvm.internal.impl.utils",
"kotlin.reflect.jvm.internal.impl.utils.addToStdlib"
],
"org.jetbrains.kotlin:kotlin-stdlib": [
"kotlin",
"kotlin.annotation",
"kotlin.collections",
"kotlin.collections.builders",
"kotlin.collections.jdk8",
"kotlin.collections.unsigned",
"kotlin.comparisons",
"kotlin.concurrent",
"kotlin.contracts",
"kotlin.coroutines",
"kotlin.coroutines.cancellation",
"kotlin.coroutines.intrinsics",
"kotlin.coroutines.jvm.internal",
"kotlin.enums",
"kotlin.experimental",
"kotlin.internal",
"kotlin.internal.jdk7",
"kotlin.internal.jdk8",
"kotlin.io",
"kotlin.io.encoding",
"kotlin.io.path",
"kotlin.jdk7",
"kotlin.js",
"kotlin.jvm",
"kotlin.jvm.functions",
"kotlin.jvm.internal",
"kotlin.jvm.internal.markers",
"kotlin.jvm.internal.unsafe",
"kotlin.jvm.jdk8",
"kotlin.jvm.optionals",
"kotlin.math",
"kotlin.properties",
"kotlin.random",
"kotlin.random.jdk8",
"kotlin.ranges",
"kotlin.reflect",
"kotlin.sequences",
"kotlin.streams.jdk8",
"kotlin.system",
"kotlin.text",
"kotlin.text.jdk8",
"kotlin.time",
"kotlin.time.jdk8"
],
"org.jetbrains.kotlin:kotlin-test": [
"kotlin.test"
],
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm": [
"_COROUTINE",
"kotlinx.coroutines",
"kotlinx.coroutines.channels",
"kotlinx.coroutines.debug",
"kotlinx.coroutines.debug.internal",
"kotlinx.coroutines.flow",
"kotlinx.coroutines.flow.internal",
"kotlinx.coroutines.future",
"kotlinx.coroutines.internal",
"kotlinx.coroutines.intrinsics",
"kotlinx.coroutines.scheduling",
"kotlinx.coroutines.selects",
"kotlinx.coroutines.stream",
"kotlinx.coroutines.sync",
"kotlinx.coroutines.time"
],
"org.jetbrains:annotations": [
"org.intellij.lang.annotations",
"org.jetbrains.annotations"
],
"org.jspecify:jspecify": [
"org.jspecify.annotations"
],
"org.ow2.asm:asm": [
"org.objectweb.asm",
"org.objectweb.asm.signature"
]
},
"repositories": {
"https://repo1.maven.org/maven2/": [
"com.google.api.grpc:proto-google-common-protos",
"com.google.api.grpc:proto-google-common-protos:jar:sources",
"com.google.auto.value:auto-value-annotations",
"com.google.auto.value:auto-value-annotations:jar:sources",
"com.google.code.findbugs:jsr305",
"com.google.code.findbugs:jsr305:jar:sources",
"com.google.errorprone:error_prone_annotations",
"com.google.errorprone:error_prone_annotations:jar:sources",
"com.google.guava:failureaccess",
"com.google.guava:failureaccess:jar:sources",
"com.google.guava:guava",
"com.google.guava:guava:jar:sources",
"com.google.guava:listenablefuture",
"com.google.j2objc:j2objc-annotations",
"com.google.j2objc:j2objc-annotations:jar:sources",
"com.google.protobuf:protobuf-java",
"com.google.protobuf:protobuf-java:jar:sources",
"com.google.protobuf:protobuf-kotlin",
"com.google.protobuf:protobuf-kotlin:jar:sources",
"com.google.truth.extensions:truth-java8-extension",
"com.google.truth.extensions:truth-java8-extension:jar:sources",
"com.google.truth.extensions:truth-liteproto-extension",
"com.google.truth.extensions:truth-liteproto-extension:jar:sources",
"com.google.truth.extensions:truth-proto-extension",
"com.google.truth.extensions:truth-proto-extension:jar:sources",
"com.google.truth:truth",
"com.google.truth:truth:jar:sources",
"io.grpc:grpc-api",
"io.grpc:grpc-api:jar:sources",
"io.grpc:grpc-kotlin-stub",
"io.grpc:grpc-kotlin-stub:jar:sources",
"io.grpc:grpc-protobuf",
"io.grpc:grpc-protobuf-lite",
"io.grpc:grpc-protobuf-lite:jar:sources",
"io.grpc:grpc-protobuf:jar:sources",
"io.grpc:grpc-stub",
"io.grpc:grpc-stub:jar:sources",
"io.grpc:protoc-gen-grpc-kotlin:jar:jdk8",
"io.grpc:protoc-gen-grpc-kotlin:jar:sources",
"javax.annotation:javax.annotation-api",
"javax.annotation:javax.annotation-api:jar:sources",
"junit:junit",
"junit:junit:jar:sources",
"org.checkerframework:checker-qual",
"org.checkerframework:checker-qual:jar:sources",
"org.hamcrest:hamcrest-core",
"org.hamcrest:hamcrest-core:jar:sources",
"org.jetbrains.kotlin:kotlin-reflect",
"org.jetbrains.kotlin:kotlin-reflect:jar:sources",
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-common:jar:sources",
"org.jetbrains.kotlin:kotlin-stdlib:jar:sources",
"org.jetbrains.kotlin:kotlin-test",
"org.jetbrains.kotlin:kotlin-test:jar:sources",
"org.jetbrains.kotlinx:kotlinx-coroutines-core",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:jar:sources",
"org.jetbrains.kotlinx:kotlinx-coroutines-core:jar:sources",
"org.jetbrains:annotations",
"org.jetbrains:annotations:jar:sources",
"org.jspecify:jspecify",
"org.jspecify:jspecify:jar:sources",
"org.ow2.asm:asm",
"org.ow2.asm:asm:jar:sources"
]
},
"services": {
"io.grpc:protoc-gen-grpc-kotlin:jar:jdk8": {
"kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoader": [
"kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins.BuiltInsLoaderImpl"
],
"kotlin.reflect.jvm.internal.impl.resolve.ExternalOverridabilityCondition": [
"kotlin.reflect.jvm.internal.impl.load.java.ErasedOverridabilityCondition",
"kotlin.reflect.jvm.internal.impl.load.java.FieldOverridabilityCondition",
"kotlin.reflect.jvm.internal.impl.load.java.JavaIncompatibilityRulesOverridabilityCondition"
]
},
"org.jetbrains.kotlin:kotlin-reflect": {
"kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoader": [
"kotlin.reflect.jvm.internal.impl.serialization.deserialization.builtins.BuiltInsLoaderImpl"
],
"kotlin.reflect.jvm.internal.impl.resolve.ExternalOverridabilityCondition": [
"kotlin.reflect.jvm.internal.impl.load.java.ErasedOverridabilityCondition",
"kotlin.reflect.jvm.internal.impl.load.java.FieldOverridabilityCondition",
"kotlin.reflect.jvm.internal.impl.load.java.JavaIncompatibilityRulesOverridabilityCondition"
]
}
},
"skipped": [
"io.grpc:protoc-gen-grpc-kotlin:jar:sources"
],
"version": "2"
}