forked from VirtusLab/bazel-steward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maven_install.json
1239 lines (1239 loc) · 49.1 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
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": 354907557,
"__RESOLVED_ARTIFACTS_HASH": 125879721,
"artifacts": {
"com.ethlo.time:itu": {
"shasums": {
"jar": "a9a567da9bf8bdcd4710fb5c4c7bc155658bb964a91637664ed7bd6e77b050c5",
"sources": "136153d8659231ce33f3a93d118788bacc93a3d58be046b8ca45ed16b5e32f35"
},
"version": "1.8.0"
},
"com.fasterxml.jackson.core:jackson-annotations": {
"shasums": {
"jar": "8562569a001d46e84ea23802257e33c8f68b24eb47c1e0efd133a0372c512959",
"sources": "d758d47fa8b7d05006958191ca816ca3ea4795ee97b1adefa84f03b3dfd01d40"
},
"version": "2.17.0"
},
"com.fasterxml.jackson.core:jackson-core": {
"shasums": {
"jar": "55be130f6a68038088a261856c4e383ce79957a0fc1a29ecb213a9efd6ef4389",
"sources": "97f4f4a85bf4da59174dde187130bddb927ac31320b385ed8ef1439c00df00f2"
},
"version": "2.17.0"
},
"com.fasterxml.jackson.core:jackson-databind": {
"shasums": {
"jar": "d0ed5b54cb1b0bbb0828e24ce752a43a006dc188b34e3a4ae3238acc7b637418",
"sources": "2abe3703841fc6de7545279030bdff45c90ea21a5ea3e2238caccb35244919b7"
},
"version": "2.17.0"
},
"com.fasterxml.jackson.dataformat:jackson-dataformat-yaml": {
"shasums": {
"jar": "46b65ace036b01743710bcfc9e7f041eded2fc82ba0d3d83e19b32c818c18b4c",
"sources": "e3f4c3b630fc12c551d3bb2e1538a23cde62d134d8db6030b46b353a0a95aa0e"
},
"version": "2.17.0"
},
"com.fasterxml.jackson.module:jackson-module-kotlin": {
"shasums": {
"jar": "acb8cf4b6c109ff0cc39c4f1444942c440c0027f23b9d54638a5b2ffb1f7d36c",
"sources": "32ff7ae4231b69a4212e8f4a9b2975b8fe0de226f02493a71003e6358a0b42d5"
},
"version": "2.17.0"
},
"com.networknt:json-schema-validator": {
"shasums": {
"jar": "5d7b6ce4c7b2a3ed189511cbaa913808c7cd2b570d70b923426352785bffbdd0",
"sources": "dae20bf499311f03c2e5509e0600d584ff4f725d165dfc05da4bae755f2c0622"
},
"version": "1.4.0"
},
"commons-io:commons-io": {
"shasums": {
"jar": "f41f7baacd716896447ace9758621f62c1c6b0a91d89acee488da26fc477c84f",
"sources": "fcfe84e39fb44e38a0ea0ab0815b53adea6fff89c7b72535bc42495f400cb9a1"
},
"version": "2.16.1"
},
"io.get-coursier:interface": {
"shasums": {
"jar": "8f87ef51837a9e27465b563aae42fcd1dbbb5da1f5b0b693291401c4964ee1cd",
"sources": "27f4bc7988d85707333d3b1850f3ac31b9b4818cd9f1764e870536386417fe1f"
},
"version": "1.0.19"
},
"io.github.java-diff-utils:java-diff-utils": {
"shasums": {
"jar": "9990a2039778f6b4cc94790141c2868864eacee0620c6c459451121a901cd5b5",
"sources": "fa24217b6eaa115a05d4a8f0003fe913c62716ca2184d2e4f17de4a7d42a8822"
},
"version": "4.12"
},
"io.github.microutils:kotlin-logging-jvm": {
"shasums": {
"jar": "2a9477a4138487bb7fbb057ee3ac0f455b58f8d4bed94c885fa64260de59e4dc",
"sources": "35847431501f5919ba1e4300b3aaf82b044b140337642a9f332b73c4fea2fd07"
},
"version": "3.0.5"
},
"io.kotest:kotest-assertions-api-jvm": {
"shasums": {
"jar": "24e5429f8de994056147f4e4198f03bc1b37303b2e4e2bad81a5c388f5fe8d21",
"sources": "5828eacafedf979de09382b9e42950cec4e932f7697b0972a089a2dd3ebb7bd7"
},
"version": "5.8.1"
},
"io.kotest:kotest-assertions-core-jvm": {
"shasums": {
"jar": "16886cdf66acfba6ff11d7033e7b2c9ff69358c083b40522b624f181ad63c2c5",
"sources": "ee00a0c0385dcc8d6fbc44b8b5e97b7e347fa457a25d2a0b07d3f370dee13078"
},
"version": "5.8.1"
},
"io.kotest:kotest-assertions-shared-jvm": {
"shasums": {
"jar": "bc9660d9d8b70810fcd8a8c3dbaf3f15b3311def47fd3a5f0ae7b098fbd016b0",
"sources": "2d32c8692d63175838e48d0bf8db3f4a2a2f2c81bc4866d0ffcb21488b805323"
},
"version": "5.8.1"
},
"io.kotest:kotest-common-jvm": {
"shasums": {
"jar": "60bd9521ec83c6c4255dcc05aa09f55c12c0aa58f1e35bd914f7ce6d2dcd5070",
"sources": "f1e94997c8aa244b4e2752d62eec6a38042ef99d7479d9a51c199a5e5feff6ec"
},
"version": "5.8.1"
},
"net.bytebuddy:byte-buddy": {
"shasums": {
"jar": "62ae28187ed2b062813da6a9d567bfee733c341582699b62dd980230729a0313",
"sources": "17a6bd3e51149baf144cc380d64445f95f0f6cff3bdeee644ca1a19c6a36f990"
},
"version": "1.14.11"
},
"net.pearx.kasechange:kasechange-jvm": {
"shasums": {
"jar": "7692a8f82d550ee904cdcd01b01cf101cccfe5727137266c19b6a1fc8b1bf559",
"sources": "e197c8833c98eea243815c33dc04ff98a6f3219ac84a37d1ef3e5a7fd3c64800"
},
"version": "1.4.1"
},
"org.apache.commons:commons-lang3": {
"shasums": {
"jar": "7b96bf3ee68949abb5bc465559ac270e0551596fa34523fddf890ec418dde13c",
"sources": "ab3b86afb898f1026dbe43aaf71e9c1d719ec52d6e41887b362d86777c299b6f"
},
"version": "3.14.0"
},
"org.apache.commons:commons-text": {
"shasums": {
"jar": "de023257ff166044a56bd1aa9124e843cd05dac5806cc705a9311f3556d5a15f",
"sources": "191fef119a5f96c9ea99845f35e9fec61b9d4daa23592802bb9894f2efee4f13"
},
"version": "1.12.0"
},
"org.apiguardian:apiguardian-api": {
"shasums": {
"jar": "b509448ac506d607319f182537f0b35d71007582ec741832a1f111e5b5b70b38",
"sources": "277a7a4315412817beb6655b324dc7276621e95ebff00b8bf65e17a27b685e2d"
},
"version": "1.1.2"
},
"org.assertj:assertj-core": {
"shasums": {
"jar": "7fbdffa1996d43cc08e2576e01008b07e57bbad2b4741aa6c3ab73ce8511130e",
"sources": "cc238222c6191214beed0ca2b65107887b6ed9edc1bf10f09ab8ed7d7fac3dfb"
},
"version": "3.25.3"
},
"org.jetbrains.kotlin:kotlin-reflect": {
"shasums": {
"jar": "99672410459045090d062a0194ed87008e2371f06946b6bfa7287c697f924bea",
"sources": "41eb767a52a7205505fe4c4190979a70cf8d610bda092ae3e6e7764484010f77"
},
"version": "1.8.10"
},
"org.jetbrains.kotlin:kotlin-stdlib": {
"shasums": {
"jar": "3b479313ab6caea4e5e25d3dee8ca80c302c89ba73e1af4dafaa100f6ef9296a",
"sources": "339b14455313369971926ffb6a9e6068a98151aa81bf1a553dfd06831f29ce51"
},
"version": "1.9.21"
},
"org.jetbrains.kotlin:kotlin-stdlib-common": {
"shasums": {
"jar": "cde3341ba18a2ba262b0b7cf6c55b20c90e8d434e42c9a13e6a3f770db965a88",
"sources": "63f2b6dfd58e3e1c82a4b37a2e1743996ca182bf44dc2aadd264b8fb95fddcd3"
},
"version": "1.9.10"
},
"org.jetbrains.kotlin:kotlin-stdlib-jdk7": {
"shasums": {
"jar": "ac6361bf9ad1ed382c2103d9712c47cdec166232b4903ed596e8876b0681c9b7",
"sources": "ea10d3e5e6e695d8a5283cbf116321acae6ba42d0bdd3eda50f7c34a26fa25cb"
},
"version": "1.9.10"
},
"org.jetbrains.kotlin:kotlin-stdlib-jdk8": {
"shasums": {
"jar": "a4c74d94d64ce1abe53760fe0389dd941f6fc558d0dab35e47c085a11ec80f28",
"sources": "40e9a80f6b953d12389623760d438e69914098d0c4d7053f70f90533ec041259"
},
"version": "1.9.10"
},
"org.jetbrains.kotlinx:kotlinx-cli-jvm": {
"shasums": {
"jar": "0e4da33d9fe183be034f447556d2d5880a18a34a13359de6791ebd0f2a487026",
"sources": "5352fd502b631b7e32be750aef5e0bdc36304bb5cbd31050d7eaad613b418333"
},
"version": "0.3.6"
},
"org.jetbrains.kotlinx:kotlinx-coroutines-core": {
"shasums": {
"jar": "20aa434b6a930ea66d2e61b00deefae09fea3d32f9640d2e0c271312880e0add",
"sources": "efbc32a6729c7f316c5348da147d42dacdfb1bc40ae3d661323ecf9ce0514c38"
},
"version": "1.8.0"
},
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm": {
"shasums": {
"jar": "9860906a1937490bf5f3b06d2f0e10ef451e65b95b269f22daf68a3d1f5065c5",
"sources": "451599ff2044e6a98f975b28d106891cc664ae69ad7a30c572dffb5413202179"
},
"version": "1.8.0"
},
"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8": {
"shasums": {
"jar": "d8419fdb3cbaaaec407e62ab14be56436d1e76b5bf33244c5765561fc13fd06b",
"sources": "27f71f22d3d59d04400749d0aff39fd5e58b7d6090efe6cf0744b2eec5c43b42"
},
"version": "1.8.0"
},
"org.jetbrains:annotations": {
"shasums": {
"jar": "7b0f19724082cbfcbc66e5abea2b9bc92cf08a1ea11e191933ed43801eb3cd05",
"sources": "ff2309b42f7584520497bb48bc609aca04c9886cf48708f14be83f00423ec144"
},
"version": "23.0.0"
},
"org.json:json": {
"shasums": {
"jar": "3cf6cd6892e32e2b4c1c39e0f52f5248a2f5b37646fdfbb79a66b46b618414ed",
"sources": "3078d4471e3be3dcbd07b3cf1cf0b610158d4605c1151c3dbf27a248c9aa04cc"
},
"version": "20240303"
},
"org.junit.jupiter:junit-jupiter-api": {
"shasums": {
"jar": "afff77c186cd317275803872fa5133aa801fd6ac40bd91c78a6cf8009b4b17cc",
"sources": "551e054c2e84b79d087f0410c8e6e3dd3e83ae54129593380d48550da441b5ef"
},
"version": "5.10.2"
},
"org.junit.jupiter:junit-jupiter-engine": {
"shasums": {
"jar": "b6df35da750a546ae932376f11b3c0df841f0c90c7cb2944cd39adb432886e4b",
"sources": "00ffb37a2d4a1f5ab224c4cf44b2d050b3d132ca650e9c4251605daf9cd6da9b"
},
"version": "5.10.2"
},
"org.junit.jupiter:junit-jupiter-params": {
"shasums": {
"jar": "edb1e43ff0b8067626ffb55e5e9eeca1d9ab2478141a7c7f253d115b29cc7cf2",
"sources": "532dce2ef436152405567ea75f076dc908c4d21641224ecc53913c9f09bfb131"
},
"version": "5.10.2"
},
"org.junit.platform:junit-platform-commons": {
"shasums": {
"jar": "b56a5ec000a479df4973b18bba24c98fe0db8faa14c8907d3ef451d8c71fd8ae",
"sources": "e1435cf8f4843619a16c2c1393d39a5170db1376af048a76cdcd7bf9aad72ad6"
},
"version": "1.10.2"
},
"org.junit.platform:junit-platform-console": {
"shasums": {
"jar": "6648e0b08f3249bfdf9577241a187025060654b4b7c32e21cb4fa0e3957beab1",
"sources": "31abe626be8e567e99366667a1242e2d469e3e828d40efca65017662df4f61c6"
},
"version": "1.10.2"
},
"org.junit.platform:junit-platform-engine": {
"shasums": {
"jar": "905cba9b4998ccc29d1239085a7fb1fe0e28024d7526152356d810edec0a49a3",
"sources": "17ac74964fcd82c57130623afe72a99105ca107fc96cb53f169b3a8c9c444c83"
},
"version": "1.10.2"
},
"org.junit.platform:junit-platform-launcher": {
"shasums": {
"jar": "aed4f42fb90ada9b347c231f13656fc09121ba20dab6dc646a6bd9d4da31e4aa",
"sources": "d3c84fbec86b224e0d2bd49e9335978bdeb6aead9f17cbee4f0e2e8885c7ab89"
},
"version": "1.10.2"
},
"org.junit.platform:junit-platform-reporting": {
"shasums": {
"jar": "ea8f781f69b2205f5b70947eaa2182db5e7436e4abc9deae0277324ab258312d",
"sources": "3da58799df48f4a280f4e4ea7a92d5e97d2e357ac1b98885afc04a4445457713"
},
"version": "1.10.2"
},
"org.junit.platform:junit-platform-suite-api": {
"shasums": {
"jar": "cdfc2b9b34f02fb0fb12db5e5a579c19bc111a2aed6f4c6e9a638d7a652961eb",
"sources": "0da2dad4f5d546410cd9e0d88a1c556ccb4c1fbfe6812fa7c0423e881f014e3c"
},
"version": "1.10.2"
},
"org.kohsuke:github-api": {
"shasums": {
"jar": "bdb00f3e1af8e6327bf5bfe866a76ebc814a38b4da4817c497a4738da34152ee",
"sources": "005c3b085a4160caf1d45195d7f52b3c7b8d11c9e01bc7e897f95f64cec63383"
},
"version": "1.321"
},
"org.opentest4j:opentest4j": {
"shasums": {
"jar": "48e2df636cab6563ced64dcdff8abb2355627cb236ef0bf37598682ddf742f1b",
"sources": "724a24e3a68267d5ebac9411389a15638a71e50c62448ffa58f59c34d5c1ebb2"
},
"version": "1.3.0"
},
"org.slf4j:slf4j-api": {
"shasums": {
"jar": "e7c2a48e8515ba1f49fa637d57b4e2f590b3f5bd97407ac699c3aa5efb1204a9",
"sources": "84f366caa66ddaa9d204e5525580b562271663c05970f056815a1be8489e8b52"
},
"version": "2.0.13"
},
"org.slf4j:slf4j-simple": {
"shasums": {
"jar": "3153fe1d689cffb94f1530b58470c306685ba68844de8857116e3b6ebb81d9f7",
"sources": "320ef6bf6ab8567e1e92c26b4fe81ecf9602867ac9d7a0e7a8061ff697dd9d56"
},
"version": "2.0.13"
},
"org.yaml:snakeyaml": {
"shasums": {
"jar": "1467931448a0817696ae2805b7b8b20bfb082652bf9c4efaed528930dc49389b",
"sources": "8f7cf911cf63db55fd980a926d155bd846317737351a2f48ef1c1088c414538a"
},
"version": "2.2"
}
},
"dependencies": {
"com.fasterxml.jackson.core:jackson-databind": [
"com.fasterxml.jackson.core:jackson-annotations",
"com.fasterxml.jackson.core:jackson-core",
"net.bytebuddy:byte-buddy"
],
"com.fasterxml.jackson.dataformat:jackson-dataformat-yaml": [
"com.fasterxml.jackson.core:jackson-core",
"com.fasterxml.jackson.core:jackson-databind",
"org.yaml:snakeyaml"
],
"com.fasterxml.jackson.module:jackson-module-kotlin": [
"com.fasterxml.jackson.core:jackson-annotations",
"com.fasterxml.jackson.core:jackson-databind",
"org.jetbrains.kotlin:kotlin-reflect"
],
"com.networknt:json-schema-validator": [
"com.ethlo.time:itu",
"com.fasterxml.jackson.core:jackson-databind",
"com.fasterxml.jackson.dataformat:jackson-dataformat-yaml",
"org.slf4j:slf4j-api"
],
"io.get-coursier:interface": [
"org.slf4j:slf4j-api"
],
"io.github.microutils:kotlin-logging-jvm": [
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.slf4j:slf4j-api"
],
"io.kotest:kotest-assertions-api-jvm": [
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8"
],
"io.kotest:kotest-assertions-core-jvm": [
"io.kotest:kotest-assertions-api-jvm",
"io.kotest:kotest-assertions-shared-jvm",
"io.kotest:kotest-common-jvm",
"org.jetbrains.kotlin:kotlin-reflect",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm",
"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8"
],
"io.kotest:kotest-assertions-shared-jvm": [
"io.github.java-diff-utils:java-diff-utils",
"io.kotest:kotest-assertions-api-jvm",
"io.kotest:kotest-common-jvm",
"org.jetbrains.kotlin:kotlin-reflect",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm",
"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8",
"org.opentest4j:opentest4j"
],
"io.kotest:kotest-common-jvm": [
"org.jetbrains.kotlin:kotlin-reflect",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm"
],
"net.pearx.kasechange:kasechange-jvm": [
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8"
],
"org.apache.commons:commons-text": [
"org.apache.commons:commons-lang3"
],
"org.assertj:assertj-core": [
"net.bytebuddy:byte-buddy"
],
"org.jetbrains.kotlin:kotlin-reflect": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"org.jetbrains.kotlin:kotlin-stdlib": [
"org.jetbrains:annotations"
],
"org.jetbrains.kotlin:kotlin-stdlib-jdk7": [
"org.jetbrains.kotlin:kotlin-stdlib"
],
"org.jetbrains.kotlin:kotlin-stdlib-jdk8": [
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlin:kotlin-stdlib-jdk7"
],
"org.jetbrains.kotlinx:kotlinx-cli-jvm": [
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8"
],
"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"
],
"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8": [
"org.jetbrains.kotlin:kotlin-stdlib",
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm"
],
"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.jupiter:junit-jupiter-params": [
"org.apiguardian:apiguardian-api",
"org.junit.jupiter:junit-jupiter-api"
],
"org.junit.platform:junit-platform-commons": [
"org.apiguardian:apiguardian-api"
],
"org.junit.platform:junit-platform-console": [
"org.apiguardian:apiguardian-api",
"org.junit.platform:junit-platform-reporting"
],
"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"
],
"org.junit.platform:junit-platform-suite-api": [
"org.apiguardian:apiguardian-api",
"org.junit.platform:junit-platform-commons"
],
"org.kohsuke:github-api": [
"com.fasterxml.jackson.core:jackson-databind",
"commons-io:commons-io",
"org.apache.commons:commons-lang3"
],
"org.slf4j:slf4j-simple": [
"org.slf4j:slf4j-api"
]
},
"packages": {
"com.ethlo.time:itu": [
"com.ethlo.time",
"com.ethlo.time.internal"
],
"com.fasterxml.jackson.core:jackson-annotations": [
"com.fasterxml.jackson.annotation"
],
"com.fasterxml.jackson.core:jackson-core": [
"com.fasterxml.jackson.core",
"com.fasterxml.jackson.core.async",
"com.fasterxml.jackson.core.base",
"com.fasterxml.jackson.core.exc",
"com.fasterxml.jackson.core.filter",
"com.fasterxml.jackson.core.format",
"com.fasterxml.jackson.core.io",
"com.fasterxml.jackson.core.io.doubleparser",
"com.fasterxml.jackson.core.io.schubfach",
"com.fasterxml.jackson.core.json",
"com.fasterxml.jackson.core.json.async",
"com.fasterxml.jackson.core.sym",
"com.fasterxml.jackson.core.type",
"com.fasterxml.jackson.core.util"
],
"com.fasterxml.jackson.core:jackson-databind": [
"com.fasterxml.jackson.databind",
"com.fasterxml.jackson.databind.annotation",
"com.fasterxml.jackson.databind.cfg",
"com.fasterxml.jackson.databind.deser",
"com.fasterxml.jackson.databind.deser.impl",
"com.fasterxml.jackson.databind.deser.std",
"com.fasterxml.jackson.databind.exc",
"com.fasterxml.jackson.databind.ext",
"com.fasterxml.jackson.databind.introspect",
"com.fasterxml.jackson.databind.jdk14",
"com.fasterxml.jackson.databind.json",
"com.fasterxml.jackson.databind.jsonFormatVisitors",
"com.fasterxml.jackson.databind.jsonschema",
"com.fasterxml.jackson.databind.jsontype",
"com.fasterxml.jackson.databind.jsontype.impl",
"com.fasterxml.jackson.databind.module",
"com.fasterxml.jackson.databind.node",
"com.fasterxml.jackson.databind.ser",
"com.fasterxml.jackson.databind.ser.impl",
"com.fasterxml.jackson.databind.ser.std",
"com.fasterxml.jackson.databind.type",
"com.fasterxml.jackson.databind.util",
"com.fasterxml.jackson.databind.util.internal"
],
"com.fasterxml.jackson.dataformat:jackson-dataformat-yaml": [
"com.fasterxml.jackson.dataformat.yaml",
"com.fasterxml.jackson.dataformat.yaml.snakeyaml.error",
"com.fasterxml.jackson.dataformat.yaml.util"
],
"com.fasterxml.jackson.module:jackson-module-kotlin": [
"com.fasterxml.jackson.module.kotlin"
],
"com.networknt:json-schema-validator": [
"com.networknt.org.apache.commons.validator.routines",
"com.networknt.schema",
"com.networknt.schema.annotation",
"com.networknt.schema.format",
"com.networknt.schema.i18n",
"com.networknt.schema.output",
"com.networknt.schema.regex",
"com.networknt.schema.resource",
"com.networknt.schema.result",
"com.networknt.schema.serialization",
"com.networknt.schema.utils",
"com.networknt.schema.walk"
],
"commons-io:commons-io": [
"org.apache.commons.io",
"org.apache.commons.io.build",
"org.apache.commons.io.channels",
"org.apache.commons.io.charset",
"org.apache.commons.io.comparator",
"org.apache.commons.io.file",
"org.apache.commons.io.file.attribute",
"org.apache.commons.io.file.spi",
"org.apache.commons.io.filefilter",
"org.apache.commons.io.function",
"org.apache.commons.io.input",
"org.apache.commons.io.input.buffer",
"org.apache.commons.io.monitor",
"org.apache.commons.io.output",
"org.apache.commons.io.serialization"
],
"io.get-coursier:interface": [
"coursierapi",
"coursierapi.error",
"coursierapi.internal.jniutils",
"coursierapi.shaded.commonscompress",
"coursierapi.shaded.commonscompress.archivers",
"coursierapi.shaded.commonscompress.archivers.tar",
"coursierapi.shaded.commonscompress.archivers.zip",
"coursierapi.shaded.commonscompress.compressors",
"coursierapi.shaded.commonscompress.compressors.bzip2",
"coursierapi.shaded.commonscompress.compressors.deflate64",
"coursierapi.shaded.commonscompress.compressors.lzw",
"coursierapi.shaded.commonscompress.compressors.xz",
"coursierapi.shaded.commonscompress.compressors.zstandard",
"coursierapi.shaded.commonscompress.utils",
"coursierapi.shaded.commonsio",
"coursierapi.shaded.commonsio.function",
"coursierapi.shaded.commonsio.input",
"coursierapi.shaded.commonsio.output",
"coursierapi.shaded.concurrentrefhashmap",
"coursierapi.shaded.coursier",
"coursierapi.shaded.coursier.cache",
"coursierapi.shaded.coursier.cache.internal",
"coursierapi.shaded.coursier.cache.loggers",
"coursierapi.shaded.coursier.cache.shaded.dirs",
"coursierapi.shaded.coursier.complete",
"coursierapi.shaded.coursier.core",
"coursierapi.shaded.coursier.core.compatibility",
"coursierapi.shaded.coursier.core.shaded.fastparse",
"coursierapi.shaded.coursier.core.shaded.fastparse.internal",
"coursierapi.shaded.coursier.core.shaded.sourcecode",
"coursierapi.shaded.coursier.credentials",
"coursierapi.shaded.coursier.error",
"coursierapi.shaded.coursier.error.conflict",
"coursierapi.shaded.coursier.graph",
"coursierapi.shaded.coursier.internal",
"coursierapi.shaded.coursier.internal.api",
"coursierapi.shaded.coursier.ivy",
"coursierapi.shaded.coursier.jniutils",
"coursierapi.shaded.coursier.jvm",
"coursierapi.shaded.coursier.jvm.util",
"coursierapi.shaded.coursier.maven",
"coursierapi.shaded.coursier.params",
"coursierapi.shaded.coursier.params.rule",
"coursierapi.shaded.coursier.parse",
"coursierapi.shaded.coursier.paths",
"coursierapi.shaded.coursier.util",
"coursierapi.shaded.coursier.util.shaded.org.jsoup",
"coursierapi.shaded.coursier.util.shaded.org.jsoup.helper",
"coursierapi.shaded.coursier.util.shaded.org.jsoup.internal",
"coursierapi.shaded.coursier.util.shaded.org.jsoup.nodes",
"coursierapi.shaded.coursier.util.shaded.org.jsoup.parser",
"coursierapi.shaded.coursier.util.shaded.org.jsoup.select",
"coursierapi.shaded.jsoniter",
"coursierapi.shaded.org.fusesource.hawtjni.runtime",
"coursierapi.shaded.org.fusesource.jansi.internal",
"coursierapi.shaded.plexus.archiver",
"coursierapi.shaded.plexus.archiver.tar",
"coursierapi.shaded.plexus.archiver.util",
"coursierapi.shaded.plexus.archiver.zip",
"coursierapi.shaded.plexus.components.io.attributes",
"coursierapi.shaded.plexus.components.io.filemappers",
"coursierapi.shaded.plexus.components.io.fileselectors",
"coursierapi.shaded.plexus.components.io.resources",
"coursierapi.shaded.plexus.util",
"coursierapi.shaded.plexus.util.cli",
"coursierapi.shaded.scala",
"coursierapi.shaded.scala.cli.config",
"coursierapi.shaded.scala.collection",
"coursierapi.shaded.scala.collection.compat.immutable",
"coursierapi.shaded.scala.collection.concurrent",
"coursierapi.shaded.scala.collection.convert",
"coursierapi.shaded.scala.collection.generic",
"coursierapi.shaded.scala.collection.immutable",
"coursierapi.shaded.scala.collection.mutable",
"coursierapi.shaded.scala.concurrent",
"coursierapi.shaded.scala.concurrent.duration",
"coursierapi.shaded.scala.concurrent.impl",
"coursierapi.shaded.scala.jdk",
"coursierapi.shaded.scala.jdk.javaapi",
"coursierapi.shaded.scala.math",
"coursierapi.shaded.scala.ref",
"coursierapi.shaded.scala.reflect",
"coursierapi.shaded.scala.reflect.api",
"coursierapi.shaded.scala.runtime",
"coursierapi.shaded.scala.runtime.java8",
"coursierapi.shaded.scala.sys",
"coursierapi.shaded.scala.sys.process",
"coursierapi.shaded.scala.util",
"coursierapi.shaded.scala.util.control",
"coursierapi.shaded.scala.util.hashing",
"coursierapi.shaded.scala.util.matching",
"coursierapi.shaded.scala.xml",
"coursierapi.shaded.scala.xml.dtd",
"coursierapi.shaded.scala.xml.dtd.impl",
"coursierapi.shaded.scala.xml.factory",
"coursierapi.shaded.scala.xml.parsing",
"coursierapi.shaded.snappy",
"coursierapi.shaded.windowsansi",
"coursierapi.shaded.xz",
"coursierapi.shaded.xz.check",
"coursierapi.shaded.xz.common",
"coursierapi.shaded.xz.delta",
"coursierapi.shaded.xz.index",
"coursierapi.shaded.xz.lz",
"coursierapi.shaded.xz.lzma",
"coursierapi.shaded.xz.rangecoder",
"coursierapi.shaded.xz.simple",
"coursierapi.shaded.zstd",
"coursierapi.shaded.zstd.util"
],
"io.github.java-diff-utils:java-diff-utils": [
"com.github.difflib",
"com.github.difflib.algorithm",
"com.github.difflib.algorithm.myers",
"com.github.difflib.patch",
"com.github.difflib.text",
"com.github.difflib.unifieddiff"
],
"io.github.microutils:kotlin-logging-jvm": [
"mu",
"mu.internal"
],
"io.kotest:kotest-assertions-api-jvm": [
"io.kotest.matchers"
],
"io.kotest:kotest-assertions-core-jvm": [
"io.kotest.assertions.nondeterministic",
"io.kotest.equals",
"io.kotest.matchers.atomic",
"io.kotest.matchers.bigdecimal",
"io.kotest.matchers.booleans",
"io.kotest.matchers.bytes",
"io.kotest.matchers.channels",
"io.kotest.matchers.char",
"io.kotest.matchers.collections",
"io.kotest.matchers.comparables",
"io.kotest.matchers.compose",
"io.kotest.matchers.concurrent",
"io.kotest.matchers.concurrent.suspension",
"io.kotest.matchers.date",
"io.kotest.matchers.doubles",
"io.kotest.matchers.equality",
"io.kotest.matchers.equals",
"io.kotest.matchers.file",
"io.kotest.matchers.floats",
"io.kotest.matchers.functions",
"io.kotest.matchers.future",
"io.kotest.matchers.ints",
"io.kotest.matchers.iterator",
"io.kotest.matchers.longs",
"io.kotest.matchers.maps",
"io.kotest.matchers.nulls",
"io.kotest.matchers.optional",
"io.kotest.matchers.paths",
"io.kotest.matchers.properties",
"io.kotest.matchers.property",
"io.kotest.matchers.ranges",
"io.kotest.matchers.reflection",
"io.kotest.matchers.regex",
"io.kotest.matchers.resource",
"io.kotest.matchers.result",
"io.kotest.matchers.sequences",
"io.kotest.matchers.short",
"io.kotest.matchers.stats",
"io.kotest.matchers.string",
"io.kotest.matchers.throwable",
"io.kotest.matchers.time",
"io.kotest.matchers.tuples",
"io.kotest.matchers.types",
"io.kotest.matchers.uri",
"io.kotest.matchers.url"
],
"io.kotest:kotest-assertions-shared-jvm": [
"io.kotest.assertions",
"io.kotest.assertions.async",
"io.kotest.assertions.eq",
"io.kotest.assertions.print",
"io.kotest.assertions.show",
"io.kotest.assertions.throwables",
"io.kotest.assertions.timing",
"io.kotest.assertions.until",
"io.kotest.data",
"io.kotest.data.blocking",
"io.kotest.equals",
"io.kotest.equals.types",
"io.kotest.inspectors",
"io.kotest.matchers",
"io.kotest.similarity"
],
"io.kotest:kotest-common-jvm": [
"io.kotest.common",
"io.kotest.common.errors",
"io.kotest.mpp",
"io.kotest.mpp.atomics"
],
"net.bytebuddy:byte-buddy": [
"net.bytebuddy",
"net.bytebuddy.agent.builder",
"net.bytebuddy.asm",
"net.bytebuddy.build",
"net.bytebuddy.description",
"net.bytebuddy.description.annotation",
"net.bytebuddy.description.enumeration",
"net.bytebuddy.description.field",
"net.bytebuddy.description.method",
"net.bytebuddy.description.modifier",
"net.bytebuddy.description.type",
"net.bytebuddy.dynamic",
"net.bytebuddy.dynamic.loading",
"net.bytebuddy.dynamic.scaffold",
"net.bytebuddy.dynamic.scaffold.inline",
"net.bytebuddy.dynamic.scaffold.subclass",
"net.bytebuddy.implementation",
"net.bytebuddy.implementation.attribute",
"net.bytebuddy.implementation.auxiliary",
"net.bytebuddy.implementation.bind",
"net.bytebuddy.implementation.bind.annotation",
"net.bytebuddy.implementation.bytecode",
"net.bytebuddy.implementation.bytecode.assign",
"net.bytebuddy.implementation.bytecode.assign.primitive",
"net.bytebuddy.implementation.bytecode.assign.reference",
"net.bytebuddy.implementation.bytecode.collection",
"net.bytebuddy.implementation.bytecode.constant",
"net.bytebuddy.implementation.bytecode.member",
"net.bytebuddy.jar.asm",
"net.bytebuddy.jar.asm.commons",
"net.bytebuddy.jar.asm.signature",
"net.bytebuddy.matcher",
"net.bytebuddy.pool",
"net.bytebuddy.utility",
"net.bytebuddy.utility.dispatcher",
"net.bytebuddy.utility.nullability",
"net.bytebuddy.utility.privilege",
"net.bytebuddy.utility.visitor"
],
"net.bytebuddy:byte-buddy:jar:sources": [
"net.bytebuddy.build"
],
"net.pearx.kasechange:kasechange-jvm": [
"net.pearx.kasechange",
"net.pearx.kasechange.formatter",
"net.pearx.kasechange.splitter"
],
"org.apache.commons:commons-lang3": [
"org.apache.commons.lang3",
"org.apache.commons.lang3.arch",
"org.apache.commons.lang3.builder",
"org.apache.commons.lang3.compare",
"org.apache.commons.lang3.concurrent",
"org.apache.commons.lang3.concurrent.locks",
"org.apache.commons.lang3.event",
"org.apache.commons.lang3.exception",
"org.apache.commons.lang3.function",
"org.apache.commons.lang3.math",
"org.apache.commons.lang3.mutable",
"org.apache.commons.lang3.reflect",
"org.apache.commons.lang3.stream",
"org.apache.commons.lang3.text",
"org.apache.commons.lang3.text.translate",
"org.apache.commons.lang3.time",
"org.apache.commons.lang3.tuple",
"org.apache.commons.lang3.util"
],
"org.apache.commons:commons-text": [
"org.apache.commons.text",
"org.apache.commons.text.diff",
"org.apache.commons.text.io",
"org.apache.commons.text.lookup",
"org.apache.commons.text.matcher",
"org.apache.commons.text.numbers",
"org.apache.commons.text.similarity",
"org.apache.commons.text.translate"
],
"org.apiguardian:apiguardian-api": [
"org.apiguardian.api"
],
"org.assertj:assertj-core": [
"org.assertj.core.annotations",
"org.assertj.core.api",
"org.assertj.core.api.exception",
"org.assertj.core.api.filter",
"org.assertj.core.api.iterable",
"org.assertj.core.api.junit.jupiter",
"org.assertj.core.api.recursive",
"org.assertj.core.api.recursive.assertion",
"org.assertj.core.api.recursive.comparison",
"org.assertj.core.condition",
"org.assertj.core.configuration",
"org.assertj.core.data",
"org.assertj.core.description",
"org.assertj.core.error",
"org.assertj.core.error.array2d",
"org.assertj.core.error.future",
"org.assertj.core.error.uri",
"org.assertj.core.extractor",
"org.assertj.core.groups",
"org.assertj.core.internal",
"org.assertj.core.matcher",
"org.assertj.core.presentation",
"org.assertj.core.util",
"org.assertj.core.util.diff",
"org.assertj.core.util.diff.myers",
"org.assertj.core.util.introspection",
"org.assertj.core.util.xml"
],
"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"
],
"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.kotlinx:kotlinx-cli-jvm": [
"kotlinx.cli"
],
"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"