forked from AnySoftKeyboard/AnySoftKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaven_install.json
More file actions
executable file
·1250 lines (1250 loc) · 50.6 KB
/
maven_install.json
File metadata and controls
executable file
·1250 lines (1250 loc) · 50.6 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
{
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": -1118307956,
"__RESOLVED_ARTIFACTS_HASH": 1842158235,
"conflict_resolution": {
"com.google.guava:failureaccess:1.0.1": "com.google.guava:failureaccess:1.0.2",
"io.opencensus:opencensus-api:0.31.0": "io.opencensus:opencensus-api:0.31.1",
"org.checkerframework:checker-qual:3.12.0": "org.checkerframework:checker-qual:3.43.0"
},
"artifacts": {
"com.google.android:annotations": {
"shasums": {
"jar": "ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15",
"sources": "e9b667aa958df78ea1ad115f7bbac18a5869c3128b1d5043feb360b0cfce9d40"
},
"version": "4.1.1.4"
},
"com.google.api.grpc:proto-google-common-protos": {
"shasums": {
"jar": "43ec7807459aaa4012e838a1be4ef2d590cf233305da60af5b54f08ec8cf2302",
"sources": "6954ee2057e201eda9584edcbb9e781649e15a808adaef87942f1f539a2f6551"
},
"version": "2.48.0"
},
"com.google.auth:google-auth-library-credentials": {
"shasums": {
"jar": "5dbf1207d14e093f67995f457cb69c3cf49bed1364150b23465e09acada65d96",
"sources": "edc2499f614f01050b044b046789d28079302e8f9af141bca00ba71188b7c5e4"
},
"version": "1.24.1"
},
"com.google.auth:google-auth-library-oauth2-http": {
"shasums": {
"jar": "88a75cd4448ea2f3b46e48a89497a6cf0985a5fa4e21274af4940e07f59f6eaf",
"sources": "0c91f45329bb9acc5db7aca708ae57f4501e1ce6b18c1c7aa5967b19b7e57294"
},
"version": "1.24.1"
},
"com.google.auto.value:auto-value": {
"shasums": {
"jar": "aaf8d637bfed3c420436b9facf1b7a88d12c8785374e4202382783005319c2c3",
"sources": "4bff06fe077d68f964bd5e05f020ed78fd7870730441e403a2eb306360c4890a"
},
"version": "1.11.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.code.gson:gson": {
"shasums": {
"jar": "57928d6e5a6edeb2abd3770a8f95ba44dce45f3b23b7a9dc2b309c581552a78b",
"sources": "49a853f71bc874ee1898a4ad5009b57d0c536e5a998b3890253ffbf4b7276ad3"
},
"version": "2.11.0"
},
"com.google.errorprone:error_prone_annotations": {
"shasums": {
"jar": "144f3aefbd6e27daec55d3753b2c6b13c1afdaf0cf04816cdb564588ed92f1bd",
"sources": "8a05d3e543d7cbefb8e035edc9a92d1b5562d36761754f4d881ae66186c49de1"
},
"version": "2.30.0"
},
"com.google.guava:failureaccess": {
"shasums": {
"jar": "8a8f81cf9b359e3f6dfa691a1e776985c061ef2f223c9b2c80753e1b458e8064",
"sources": "dd3bfa5e2ec5bc5397efb2c3cef044c192313ff77089573667ff97a60c6978e0"
},
"version": "1.0.2"
},
"com.google.guava:guava": {
"shasums": {
"jar": "2c3e41d1b380f2044d257947a3aa82dabf3ae4b978622745254aa18b6cf89ab0",
"sources": "1933a9fb7ee8535749600d7298fa9511589631010e90907db8459797c31238ca"
},
"version": "33.3.1-android"
},
"com.google.guava:listenablefuture": {
"shasums": {
"jar": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
"sources": null
},
"version": "9999.0-empty-to-avoid-conflict-with-guava"
},
"com.google.http-client:google-http-client": {
"shasums": {
"jar": "390618d7b51704240b8fd28e1230fa35d220f93f4b4ba80f63e38db00dacb09e",
"sources": "9419537a2973195619b43f76be92388b1e37a785503717d76afff5764884ebc2"
},
"version": "1.44.2"
},
"com.google.http-client:google-http-client-gson": {
"shasums": {
"jar": "1119b66685195310375b717de2215d6c5d14fa8ed9f57e07b4fecd461e7b9db7",
"sources": "3bac061bdac5c5c67713b8db689a1d6342afcb07a87c2f7285dffc1729fc4825"
},
"version": "1.44.2"
},
"com.google.j2objc:j2objc-annotations": {
"shasums": {
"jar": "88241573467ddca44ffd4d74aa04c2bbfd11bf7c17e0c342c94c9de7a70a7c64",
"sources": "bd60019a0423c3a025ef6ab24fe0761f5f45ffb48a8cca74a01b678de1105d38"
},
"version": "3.0.0"
},
"com.google.protobuf:protobuf-java": {
"shasums": {
"jar": "8540247fad9e06baefa8fb45eb313802d019f485f14300e0f9d6b556ed88e753",
"sources": "d686e802329e42954e72e9b3b148b67eeb4f6f3ed327abc4508b79fda4937c3b"
},
"version": "3.25.5"
},
"com.google.re2j:re2j": {
"shasums": {
"jar": "4f657af51ab8bb0909bcc3eb40862d26125af8cbcf92aaaba595fed77f947bc0",
"sources": "ddc3b47bb1e556ac4c0d02c9d8ff18f3260198b76b720567a70eed0a03d3fed6"
},
"version": "1.7"
},
"com.google.truth:truth": {
"shasums": {
"jar": "14c297bc64ca8bc15b6baf67f160627e4562ec91624797e312e907b431113508",
"sources": "9e6e49a3d2eefcadc0294878cb19fa6c6da305f2939c422f3cbd8caf9efe80bb"
},
"version": "1.4.2"
},
"com.squareup.okhttp:okhttp": {
"shasums": {
"jar": "88ac9fd1bb51f82bcc664cc1eb9c225c90dc4389d660231b4cc737bebfe7d0aa",
"sources": "edfafce3b9abb0fc31b5c72cc5f533516a08f7b86754138f36595a6837746ddf"
},
"version": "2.7.5"
},
"com.squareup.okio:okio": {
"shasums": {
"jar": "a27f091d34aa452e37227e2cfa85809f29012a8ef2501a9b5a125a978e4fcbc1",
"sources": "4f255d11829d7e1949be042efa70f933650a7d929e68d594c1608f97884a0535"
},
"version": "2.10.0"
},
"commons-codec:commons-codec": {
"shasums": {
"jar": "e599d5318e97aa48f42136a2927e6dfa4e8881dff0e6c8e3109ddbbff51d7b7d",
"sources": "901cb5d1f7c2877017c95d3c5efd5a497738d0162ef72cdf58e9cb13f50b2e9c"
},
"version": "1.11"
},
"io.grpc:grpc-api": {
"shasums": {
"jar": "bdcefde43d7c542e748adb7b2bccc46db16313ba86ab46f8ba3b54677c7c5883",
"sources": "23d0d4bb5eed8cf0b5732ab96c815028071e2b3537bd39f5dfe0c8f16731e74c"
},
"version": "1.60.1"
},
"io.grpc:grpc-context": {
"shasums": {
"jar": "4ab6efb9cbadc88f8dc723ada3a61785da367697373d4432aef5222312aa70f6",
"sources": "90655e7ff0d7ee867fbdf7c6ac6db13ef9b339f4e8e3af15665f5a98101f9674"
},
"version": "1.60.1"
},
"io.netty:netty-buffer": {
"shasums": {
"jar": "46d74e79125aacc055c31f18152fdc5d4a569aa8d60091203d0baa833973ac3c",
"sources": "b4e7d5c0d3cbbed2bfc2c26922e6e8989330e7d2ec653a39ab40635d24ee5850"
},
"version": "4.1.110.Final"
},
"io.netty:netty-codec": {
"shasums": {
"jar": "9eccce9a8d827bb8ce84f9c3183fec58bd1c96a51010cf711297746034af3701",
"sources": "da6a146add7a60a96ee363d59db2fc79d4858d0c73ec9afe995a13f4bbd4a110"
},
"version": "4.1.110.Final"
},
"io.netty:netty-codec-http": {
"shasums": {
"jar": "dc0d6af5054630a70ff0ef354f20aa7a6e46738c9fc5636ed3d4fe77e38bd48d",
"sources": "b03b477f0607bbb6693ea1de41e4db3dbec1de616bea6feeba096fbf9fca1209"
},
"version": "4.1.110.Final"
},
"io.netty:netty-codec-http2": {
"shasums": {
"jar": "b546c75445a487bb7bcd5a94779caecce33582cf7be31b8b39fc0e65b1ee26fc",
"sources": "555279bfb4ddd1fede5afaced0973bc763a6b643de7c6b006280f79d92e30889"
},
"version": "4.1.110.Final"
},
"io.netty:netty-codec-socks": {
"shasums": {
"jar": "976052a3c9bb280bc6d99f3a29e6404677cf958c3de05b205093d38c006b880c",
"sources": "aedb4ffb91584e1b60d4c64f96c6033c204fcbca64b97ebf895df05ec6700dd3"
},
"version": "4.1.110.Final"
},
"io.netty:netty-common": {
"shasums": {
"jar": "9851ec66548b9e0d41164ce98943cdd4bbe305f68ddbd24eae52e4501a0d7b1a",
"sources": "ca8799963fdfc712f0b87120f1b6a5e728444eeb41feaf2ecca52435b03bf099"
},
"version": "4.1.110.Final"
},
"io.netty:netty-handler": {
"shasums": {
"jar": "d5a08d7de364912e4285968de4d4cce3f01da4bb048d5c6937e5f2af1f8e148a",
"sources": "3e8186c75527436a7fb99d0686cf138676df9498724aa787f7894d2ad6c4caa6"
},
"version": "4.1.110.Final"
},
"io.netty:netty-handler-proxy": {
"shasums": {
"jar": "ad54ab4fe9c47ef3e723d71251126db53e8db543871adb9eafc94446539eff52",
"sources": "b1411f4864e9f76d435aca6adfe93bf8745718e1c0e1b7d73d0d1926e2e92a8a"
},
"version": "4.1.110.Final"
},
"io.netty:netty-resolver": {
"shasums": {
"jar": "a2e9b4ae7caa92fc5bd747e11d1dec20d81b18fc00959554302244ac5c56ce70",
"sources": "792d057545fc3f1aa72c5571f6caf44d4166527322003cfb7b621c15bcd8d9e7"
},
"version": "4.1.110.Final"
},
"io.netty:netty-tcnative-boringssl-static": {
"shasums": {
"jar": "bb8349bda3ba043c09f5c732c5b2d47f18ac4dafce248cb850cfbd0599e5ba01",
"linux-aarch_64": "9fd6f905bce8472ca9e24f8728962b91b9319c84fcbb618ab87f6b9774c063ed",
"linux-x86_64": "45ce55b49f4c16de65278d9f4608a9f06460f290f1e3b4fc3f2452866519d618",
"osx-aarch_64": "834d3df2f9eb3aa08d49326409c454e2f9c75a49c3f0454b7cab64619b1614dc",
"osx-x86_64": "3a16b7ca4e891f9ad51e9ae9eb167c5e81d7f55a0001edf2471b693f4f8c12e1",
"sources": null,
"windows-x86_64": "855d930366fae9bec3872569975959e1e31dd752dffc9f925eae8436f933e11a"
},
"version": "2.0.65.Final"
},
"io.netty:netty-tcnative-classes": {
"shasums": {
"jar": "84ef0241ada1b4ed92785e10c16edbeb063348959a3b0ef740712badd09fa128",
"sources": "054c5f7b4228630227cdf312301a0e9c4cf34b33a1d1bbd842556ea5d3cbf465"
},
"version": "2.0.65.Final"
},
"io.netty:netty-transport": {
"shasums": {
"jar": "a42dd68390ca14b4ff2d40628a096c76485b4adb7c19602d5289321a0669e704",
"sources": "8b30a2af314e828040b7736f2134192fcf932e9f34756c6e6168753dfae32cb5"
},
"version": "4.1.110.Final"
},
"io.netty:netty-transport-classes-epoll": {
"shasums": {
"jar": "8e59cec67de3b9f8afe4eccec11ed8ce4423948eeaf4ca512bf69324052ed510",
"sources": "77ddaafe69b00258c8c342c98b76a7fef14e0f91124780b24e49ee49be9b896a"
},
"version": "4.1.110.Final"
},
"io.netty:netty-transport-native-epoll": {
"shasums": {
"linux-x86_64": "dcd60c6b3076af307ab877201a136e1f1066c9be809aaed827391a23909f9135",
"sources": "156c8e44e9034fc82eff318b125391f456ae519c06c6a2001a4b20c0bd5abd6b"
},
"version": "4.1.110.Final"
},
"io.netty:netty-transport-native-unix-common": {
"shasums": {
"jar": "51717bb7471141950390c6713a449fdb1054d07e60737ee7dda7083796cdee48",
"sources": "05c3989c61518b7dd6225a445401d1e8a9508a0d99a839847dac373e305e784d"
},
"version": "4.1.110.Final"
},
"io.opencensus:opencensus-api": {
"shasums": {
"jar": "f1474d47f4b6b001558ad27b952e35eda5cc7146788877fc52938c6eba24b382",
"sources": "6748d57aaae81995514ad3e2fb11a95aa88e158b3f93450288018eaccf31e86b"
},
"version": "0.31.1"
},
"io.opencensus:opencensus-contrib-grpc-metrics": {
"shasums": {
"jar": "b28fc72490edd49c4c40a3c216b709200833fb361f7f602f1c7c9a527f7b7f63",
"sources": "c45a239e4c4fa4ad564018c0ba0a94d669dbc9b1ed561fc0464b79ebb3c0d6e3"
},
"version": "0.31.0"
},
"io.opencensus:opencensus-contrib-http-util": {
"shasums": {
"jar": "3ea995b55a4068be22989b70cc29a4d788c2d328d1d50613a7a9afd13fdd2d0a",
"sources": "d55afd5f96dc724bd903a77a38b0a344d0e59f02a64b9ab2f32618bc582ea924"
},
"version": "0.31.1"
},
"io.perfmark:perfmark-api": {
"shasums": {
"jar": "c7b478503ec524e55df19b424d46d27c8a68aeb801664fadd4f069b71f52d0f6",
"sources": "311551ab29cf51e5a8abee6a019e88dee47d1ea71deb9fcd3649db9c51b237bc"
},
"version": "0.27.0"
},
"junit:junit": {
"shasums": {
"jar": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3",
"sources": "34181df6482d40ea4c046b063cb53c7ffae94bdf1b1d62695bdf3adf9dea7e3a"
},
"version": "4.13.2"
},
"org.apache.httpcomponents:httpclient": {
"shasums": {
"jar": "c8bc7e1c51a6d4ce72f40d2ebbabf1c4b68bfe76e732104b04381b493478e9d6",
"sources": "55b01f9f4cbec9ac646866a4b64b176570d79e293a556796b5b0263d047ef8e6"
},
"version": "4.5.14"
},
"org.apache.httpcomponents:httpcore": {
"shasums": {
"jar": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f",
"sources": "705f8cf3671093b6c1db16bbf6971a7ef400e3819784f1af53e5bc3e67b5a9a0"
},
"version": "4.4.16"
},
"org.apache.tomcat:annotations-api": {
"shasums": {
"jar": "253829d3c12b7381d1044fc22c6436cff025fe0d459e4a329413e560a7d0dd13",
"sources": null
},
"version": "6.0.53"
},
"org.apiguardian:apiguardian-api": {
"shasums": {
"jar": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38",
"sources": "277a7a4315412817beb6655b324dc7276621e95ebff00b8bf65e17a27b685e2d"
},
"version": "1.1.2"
},
"org.checkerframework:checker-qual": {
"shasums": {
"jar": "3fbc2e98f05854c3df16df9abaa955b91b15b3ecac33623208ed6424640ef0f6",
"sources": "d6bdee58964cd05aabfca4e44947d3cbdada6bf617ed618b62b3b0d5a21de339"
},
"version": "3.43.0"
},
"org.codehaus.mojo:animal-sniffer-annotations": {
"shasums": {
"jar": "c720e6e5bcbe6b2f48ded75a47bccdb763eede79d14330102e0d352e3d89ed92",
"sources": "4270ce5531ed0f12e4234e08f240ef3b45ee3ceeb16e28d44abc61c12cf522ca"
},
"version": "1.24"
},
"org.hamcrest:hamcrest-core": {
"shasums": {
"jar": "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9",
"sources": "e223d2d8fbafd66057a8848cc94222d63c3cedd652cc48eddc0ab5c39c0f84df"
},
"version": "1.3"
},
"org.jetbrains.kotlin:kotlin-stdlib": {
"shasums": {
"jar": "b8ab1da5cdc89cb084d41e1f28f20a42bd431538642a5741c52bbfae3fa3e656",
"sources": "87f030b500d243f67ef25c3601daee17655ea9c82cb4916637f7b4f8bdd0a165"
},
"version": "1.4.20"
},
"org.jetbrains.kotlin:kotlin-stdlib-common": {
"shasums": {
"jar": "a7112c9b3cefee418286c9c9372f7af992bd1e6e030691d52f60cb36dbec8320",
"sources": "2ee47b54b4a20257d2ec73ddf34c44f72f4c7f6e5625b1a13de77c115a0e2afc"
},
"version": "1.4.20"
},
"org.jetbrains:annotations": {
"shasums": {
"jar": "ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478",
"sources": "42a5e144b8e81d50d6913d1007b695e62e614705268d8cf9f13dbdc478c2c68e"
},
"version": "13.0"
},
"org.junit.jupiter:junit-jupiter-api": {
"shasums": {
"jar": "1808ee87e0f718cd6e25f3b75afc17956ac8a3edc48c7e9bab9f19f9a79e3801",
"sources": "cb38569ae9005eb54c7cbc181b842e6eb01be57ae0d785f9167d9e019b44a670"
},
"version": "5.8.2"
},
"org.junit.jupiter:junit-jupiter-engine": {
"shasums": {
"jar": "753b7726cdd158bb34cedb94c161e2291896f47832a1e9eda53d970020a8184e",
"sources": "9ed4edf417cbc6028c634a0b407061433327c9ef4235fca35b9183da855e2e8f"
},
"version": "5.8.2"
},
"org.junit.platform:junit-platform-commons": {
"shasums": {
"jar": "d2e015fca7130e79af2f4608dc54415e4b10b592d77333decb4b1a274c185050",
"sources": "7ae3683c452ee4259b2d205d56c7172fd178180b02d20b4430368ef6ee501c3b"
},
"version": "1.8.2"
},
"org.junit.platform:junit-platform-engine": {
"shasums": {
"jar": "0b7d000f8c3e8e5f7d6b819649936e7b9938314e87c8f983805218ea57567e59",
"sources": "4cfda26b1dc0812fcf0a14b0bb5612b7c697e50afd79819d2e07b1faef9c239b"
},
"version": "1.8.2"
},
"org.junit.platform:junit-platform-launcher": {
"shasums": {
"jar": "822156409fd83e682e4c5199b3460054299b538a058c2c6d0f5c9b6a5bdb7594",
"sources": "ee8440e84c23e52519b57e77a30627f80d91ac148244162ee2eea1ba809c1bdc"
},
"version": "1.8.2"
},
"org.junit.platform:junit-platform-reporting": {
"shasums": {
"jar": "d28048333b378d166f9ad38c2a8e34ac0fa1a29cc016cb279df53c8b54628fc3",
"sources": "489df906d84675ba6d078e076a5ffd8c8feec62e390539d6d61938de98b269f4"
},
"version": "1.8.2"
},
"org.opentest4j:opentest4j": {
"shasums": {
"jar": "58812de60898d976fb81ef3b62da05c6604c18fd4a249f5044282479fc286af2",
"sources": "b63495ef700fb2af2cdee8dd68659b27822650058234a602f9ed1d14b909a1a8"
},
"version": "1.2.0"
},
"org.ow2.asm:asm": {
"shasums": {
"jar": "3c6fac2424db3d4a853b669f4e3d1d9c3c552235e19a319673f887083c2303a1",
"sources": "2b6e12f0da3d065ba628a024a8851ab0d5b5d3501dacfcc18769243250f4f77e"
},
"version": "9.6"
}
},
"dependencies": {
"com.google.api.grpc:proto-google-common-protos": ["com.google.protobuf:protobuf-java"],
"com.google.auth:google-auth-library-oauth2-http": [
"com.google.auth:google-auth-library-credentials",
"com.google.auto.value:auto-value-annotations",
"com.google.code.findbugs:jsr305",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"com.google.http-client:google-http-client",
"com.google.http-client:google-http-client-gson"
],
"com.google.code.gson:gson": ["com.google.errorprone:error_prone_annotations"],
"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.http-client:google-http-client": [
"com.google.code.findbugs:jsr305",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"com.google.j2objc:j2objc-annotations",
"io.grpc:grpc-context",
"io.opencensus:opencensus-api",
"io.opencensus:opencensus-contrib-http-util",
"org.apache.httpcomponents:httpclient",
"org.apache.httpcomponents:httpcore"
],
"com.google.http-client:google-http-client-gson": [
"com.google.code.gson:gson",
"com.google.http-client:google-http-client"
],
"com.google.truth:truth": [
"com.google.auto.value:auto-value-annotations",
"com.google.errorprone:error_prone_annotations",
"com.google.guava:guava",
"junit:junit",
"org.checkerframework:checker-qual",
"org.ow2.asm:asm"
],
"com.squareup.okhttp:okhttp": ["com.squareup.okio:okio"],
"com.squareup.okio:okio": ["org.jetbrains.kotlin:kotlin-stdlib", "org.jetbrains.kotlin:kotlin-stdlib-common"],
"io.grpc:grpc-context": ["io.grpc:grpc-api"],
"io.netty:netty-buffer": ["io.netty:netty-common"],
"io.netty:netty-codec": ["io.netty:netty-buffer", "io.netty:netty-common", "io.netty:netty-transport"],
"io.netty:netty-codec-http": [
"io.netty:netty-buffer",
"io.netty:netty-codec",
"io.netty:netty-common",
"io.netty:netty-handler",
"io.netty:netty-transport"
],
"io.netty:netty-codec-http2": [
"io.netty:netty-buffer",
"io.netty:netty-codec",
"io.netty:netty-codec-http",
"io.netty:netty-common",
"io.netty:netty-handler",
"io.netty:netty-transport"
],
"io.netty:netty-codec-socks": [
"io.netty:netty-buffer",
"io.netty:netty-codec",
"io.netty:netty-common",
"io.netty:netty-transport"
],
"io.netty:netty-handler": [
"io.netty:netty-buffer",
"io.netty:netty-codec",
"io.netty:netty-common",
"io.netty:netty-resolver",
"io.netty:netty-transport",
"io.netty:netty-transport-native-unix-common"
],
"io.netty:netty-handler-proxy": [
"io.netty:netty-buffer",
"io.netty:netty-codec",
"io.netty:netty-codec-http",
"io.netty:netty-codec-socks",
"io.netty:netty-common",
"io.netty:netty-transport"
],
"io.netty:netty-resolver": ["io.netty:netty-common"],
"io.netty:netty-tcnative-boringssl-static": [
"io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64",
"io.netty:netty-tcnative-classes"
],
"io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64": [
"io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64",
"io.netty:netty-tcnative-classes"
],
"io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64": [
"io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64",
"io.netty:netty-tcnative-classes"
],
"io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64": [
"io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64",
"io.netty:netty-tcnative-classes"
],
"io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64": [
"io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64",
"io.netty:netty-tcnative-classes"
],
"io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64": [
"io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64",
"io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64",
"io.netty:netty-tcnative-classes"
],
"io.netty:netty-transport": ["io.netty:netty-buffer", "io.netty:netty-common", "io.netty:netty-resolver"],
"io.netty:netty-transport-classes-epoll": [
"io.netty:netty-buffer",
"io.netty:netty-common",
"io.netty:netty-transport",
"io.netty:netty-transport-native-unix-common"
],
"io.netty:netty-transport-native-epoll:jar:linux-x86_64": [
"io.netty:netty-buffer",
"io.netty:netty-common",
"io.netty:netty-transport",
"io.netty:netty-transport-classes-epoll",
"io.netty:netty-transport-native-unix-common"
],
"io.netty:netty-transport-native-unix-common": [
"io.netty:netty-buffer",
"io.netty:netty-common",
"io.netty:netty-transport"
],
"io.opencensus:opencensus-api": ["io.grpc:grpc-context"],
"io.opencensus:opencensus-contrib-grpc-metrics": ["com.google.guava:guava", "io.opencensus:opencensus-api"],
"io.opencensus:opencensus-contrib-http-util": ["com.google.guava:guava", "io.opencensus:opencensus-api"],
"junit:junit": ["org.hamcrest:hamcrest-core"],
"org.apache.httpcomponents:httpclient": ["commons-codec:commons-codec", "org.apache.httpcomponents:httpcore"],
"org.jetbrains.kotlin:kotlin-stdlib": ["org.jetbrains.kotlin:kotlin-stdlib-common", "org.jetbrains:annotations"],
"org.junit.jupiter:junit-jupiter-api": [
"org.apiguardian:apiguardian-api",
"org.junit.platform:junit-platform-commons",
"org.opentest4j:opentest4j"
],
"org.junit.jupiter:junit-jupiter-engine": [
"org.apiguardian:apiguardian-api",
"org.junit.jupiter:junit-jupiter-api",
"org.junit.platform:junit-platform-engine"
],
"org.junit.platform:junit-platform-commons": ["org.apiguardian:apiguardian-api"],
"org.junit.platform:junit-platform-engine": [
"org.apiguardian:apiguardian-api",
"org.junit.platform:junit-platform-commons",
"org.opentest4j:opentest4j"
],
"org.junit.platform:junit-platform-launcher": [
"org.apiguardian:apiguardian-api",
"org.junit.platform:junit-platform-engine"
],
"org.junit.platform:junit-platform-reporting": [
"org.apiguardian:apiguardian-api",
"org.junit.platform:junit-platform-launcher"
]
},
"packages": {
"com.google.android:annotations": ["android.annotation"],
"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.auth:google-auth-library-credentials": ["com.google.auth"],
"com.google.auth:google-auth-library-oauth2-http": ["com.google.auth.http", "com.google.auth.oauth2"],
"com.google.auto.value:auto-value": [
"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.net.ltgt.gradle.incap",
"autovalue.shaded.org.checkerframework.checker.nullness.qual",
"autovalue.shaded.org.checkerframework.framework.qual",
"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"
],
"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.code.gson:gson": [
"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"
],
"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.http-client:google-http-client": [
"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"
],
"com.google.http-client:google-http-client-gson": ["com.google.api.client.json.gson"],
"com.google.j2objc:j2objc-annotations": ["com.google.j2objc.annotations"],
"com.google.protobuf:protobuf-java": ["com.google.protobuf", "com.google.protobuf.compiler"],
"com.google.re2j:re2j": ["com.google.re2j"],
"com.google.truth:truth": ["com.google.common.truth"],
"com.squareup.okhttp:okhttp": [
"com.squareup.okhttp",
"com.squareup.okhttp.internal",
"com.squareup.okhttp.internal.framed",
"com.squareup.okhttp.internal.http",
"com.squareup.okhttp.internal.io",
"com.squareup.okhttp.internal.tls"
],
"com.squareup.okio:okio": ["okio", "okio.internal"],
"commons-codec:commons-codec": [
"org.apache.commons.codec",
"org.apache.commons.codec.binary",
"org.apache.commons.codec.cli",
"org.apache.commons.codec.digest",
"org.apache.commons.codec.language",
"org.apache.commons.codec.language.bm",
"org.apache.commons.codec.net"
],
"io.grpc:grpc-api": ["io.grpc"],
"io.netty:netty-buffer": ["io.netty.buffer", "io.netty.buffer.search"],
"io.netty:netty-codec": [
"io.netty.handler.codec",
"io.netty.handler.codec.base64",
"io.netty.handler.codec.bytes",
"io.netty.handler.codec.compression",
"io.netty.handler.codec.json",
"io.netty.handler.codec.marshalling",
"io.netty.handler.codec.protobuf",
"io.netty.handler.codec.serialization",
"io.netty.handler.codec.string",
"io.netty.handler.codec.xml"
],
"io.netty:netty-codec-http": [
"io.netty.handler.codec.http",
"io.netty.handler.codec.http.cookie",
"io.netty.handler.codec.http.cors",
"io.netty.handler.codec.http.multipart",
"io.netty.handler.codec.http.websocketx",
"io.netty.handler.codec.http.websocketx.extensions",
"io.netty.handler.codec.http.websocketx.extensions.compression",
"io.netty.handler.codec.rtsp",
"io.netty.handler.codec.spdy"
],
"io.netty:netty-codec-http2": ["io.netty.handler.codec.http2"],
"io.netty:netty-codec-socks": [
"io.netty.handler.codec.socks",
"io.netty.handler.codec.socksx",
"io.netty.handler.codec.socksx.v4",
"io.netty.handler.codec.socksx.v5"
],
"io.netty:netty-common": [
"io.netty.util",
"io.netty.util.collection",
"io.netty.util.concurrent",
"io.netty.util.internal",
"io.netty.util.internal.logging",
"io.netty.util.internal.shaded.org.jctools.queues",
"io.netty.util.internal.shaded.org.jctools.queues.atomic",
"io.netty.util.internal.shaded.org.jctools.util",
"io.netty.util.internal.svm"
],
"io.netty:netty-handler": [
"io.netty.handler.address",
"io.netty.handler.flow",
"io.netty.handler.flush",
"io.netty.handler.ipfilter",
"io.netty.handler.logging",
"io.netty.handler.pcap",
"io.netty.handler.ssl",
"io.netty.handler.ssl.ocsp",
"io.netty.handler.ssl.util",
"io.netty.handler.stream",
"io.netty.handler.timeout",
"io.netty.handler.traffic"
],
"io.netty:netty-handler-proxy": ["io.netty.handler.proxy"],
"io.netty:netty-resolver": ["io.netty.resolver"],
"io.netty:netty-tcnative-classes": ["io.netty.internal.tcnative"],
"io.netty:netty-transport": [
"io.netty.bootstrap",
"io.netty.channel",
"io.netty.channel.embedded",
"io.netty.channel.group",
"io.netty.channel.internal",
"io.netty.channel.local",
"io.netty.channel.nio",
"io.netty.channel.oio",
"io.netty.channel.pool",
"io.netty.channel.socket",
"io.netty.channel.socket.nio",
"io.netty.channel.socket.oio"
],
"io.netty:netty-transport-classes-epoll": ["io.netty.channel.epoll"],
"io.netty:netty-transport-native-unix-common": ["io.netty.channel.unix"],
"io.opencensus:opencensus-api": [
"io.opencensus.common",
"io.opencensus.internal",
"io.opencensus.metrics",
"io.opencensus.metrics.data",
"io.opencensus.metrics.export",
"io.opencensus.resource",
"io.opencensus.stats",
"io.opencensus.tags",
"io.opencensus.tags.propagation",
"io.opencensus.tags.unsafe",
"io.opencensus.trace",
"io.opencensus.trace.config",
"io.opencensus.trace.export",
"io.opencensus.trace.internal",
"io.opencensus.trace.propagation",
"io.opencensus.trace.samplers",
"io.opencensus.trace.unsafe"
],
"io.opencensus:opencensus-contrib-grpc-metrics": ["io.opencensus.contrib.grpc.metrics"],
"io.opencensus:opencensus-contrib-http-util": ["io.opencensus.contrib.http", "io.opencensus.contrib.http.util"],
"io.perfmark:perfmark-api": ["io.perfmark"],
"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.apache.httpcomponents:httpclient": [
"org.apache.http.auth",
"org.apache.http.auth.params",
"org.apache.http.client",
"org.apache.http.client.config",
"org.apache.http.client.entity",
"org.apache.http.client.methods",
"org.apache.http.client.params",
"org.apache.http.client.protocol",
"org.apache.http.client.utils",
"org.apache.http.conn",
"org.apache.http.conn.params",
"org.apache.http.conn.routing",
"org.apache.http.conn.scheme",
"org.apache.http.conn.socket",
"org.apache.http.conn.ssl",
"org.apache.http.conn.util",
"org.apache.http.cookie",
"org.apache.http.cookie.params",
"org.apache.http.impl.auth",
"org.apache.http.impl.client",
"org.apache.http.impl.conn",
"org.apache.http.impl.conn.tsccm",
"org.apache.http.impl.cookie",
"org.apache.http.impl.execchain"
],
"org.apache.httpcomponents:httpcore": [
"org.apache.http",
"org.apache.http.annotation",
"org.apache.http.concurrent",
"org.apache.http.config",
"org.apache.http.entity",
"org.apache.http.impl",
"org.apache.http.impl.bootstrap",
"org.apache.http.impl.entity",
"org.apache.http.impl.io",
"org.apache.http.impl.pool",
"org.apache.http.io",
"org.apache.http.message",
"org.apache.http.params",
"org.apache.http.pool",
"org.apache.http.protocol",
"org.apache.http.ssl",
"org.apache.http.util"
],
"org.apache.tomcat:annotations-api": [
"javax.annotation",
"javax.annotation.security",
"javax.ejb",
"javax.persistence",
"javax.xml.ws"
],
"org.apiguardian:apiguardian-api": ["org.apiguardian.api"],
"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.codehaus.mojo:animal-sniffer-annotations": ["org.codehaus.mojo.animal_sniffer"],
"org.hamcrest:hamcrest-core": ["org.hamcrest", "org.hamcrest.core", "org.hamcrest.internal"],
"org.jetbrains.kotlin:kotlin-stdlib": [
"kotlin",
"kotlin.annotation",
"kotlin.collections",
"kotlin.collections.builders",
"kotlin.collections.unsigned",
"kotlin.comparisons",
"kotlin.concurrent",
"kotlin.contracts",
"kotlin.coroutines",
"kotlin.coroutines.cancellation",
"kotlin.coroutines.intrinsics",
"kotlin.coroutines.jvm.internal",
"kotlin.experimental",
"kotlin.internal",
"kotlin.io",
"kotlin.js",
"kotlin.jvm",
"kotlin.jvm.functions",