This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
annex_scalafmt_install.json
1067 lines (1067 loc) · 70.4 KB
/
annex_scalafmt_install.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"dependency_tree": {
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": -556576344,
"conflict_resolution": {},
"dependencies": [
{
"coord": "com.geirsson:metaconfig-core_2.12:0.9.4",
"dependencies": [
"com.lihaoyi:fansi_2.12:0.2.5",
"org.typelevel:paiges-core_2.12:0.2.4",
"org.scala-lang.modules:scala-collection-compat_2.12:2.1.2",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.lihaoyi:pprint_2.12:0.5.3"
],
"directDependencies": [
"com.lihaoyi:pprint_2.12:0.5.3",
"org.scala-lang:scala-library:2.12.10",
"org.scala-lang.modules:scala-collection-compat_2.12:2.1.2",
"org.typelevel:paiges-core_2.12:0.2.4"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4.jar"
],
"sha256": "970b3d74fc9b2982d9fb31d93f460000b41fff21c0b9d9ef9476ed333a010b2a",
"url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4.jar"
},
{
"coord": "com.geirsson:metaconfig-core_2.12:jar:sources:0.9.4",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.typelevel:paiges-core_2.12:jar:sources:0.2.4",
"com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"org.scala-lang.modules:scala-collection-compat_2.12:jar:sources:2.1.2",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7"
],
"directDependencies": [
"com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scala-lang.modules:scala-collection-compat_2.12:jar:sources:2.1.2",
"org.typelevel:paiges-core_2.12:jar:sources:0.2.4"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4-sources.jar"
],
"sha256": "ea5fa3657ebd4da9a78af203ae39f17d1b97247b62bc77b841647252fa6bb4c8",
"url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-core_2.12/0.9.4/metaconfig-core_2.12-0.9.4-sources.jar"
},
{
"coord": "com.geirsson:metaconfig-typesafe-config_2.12:0.9.4",
"dependencies": [
"com.geirsson:metaconfig-core_2.12:0.9.4",
"com.lihaoyi:fansi_2.12:0.2.5",
"org.typelevel:paiges-core_2.12:0.2.4",
"org.scala-lang.modules:scala-collection-compat_2.12:2.1.2",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.typesafe:config:1.2.1",
"com.lihaoyi:pprint_2.12:0.5.3"
],
"directDependencies": [
"com.geirsson:metaconfig-core_2.12:0.9.4",
"com.typesafe:config:1.2.1",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4.jar"
],
"sha256": "3165f30a85d91de7f8ba714e685a6b822bd1cbb365946f5d708163725df3ef5d",
"url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4.jar"
},
{
"coord": "com.geirsson:metaconfig-typesafe-config_2.12:jar:sources:0.9.4",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.typelevel:paiges-core_2.12:jar:sources:0.2.4",
"com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"com.typesafe:config:jar:sources:1.2.1",
"com.geirsson:metaconfig-core_2.12:jar:sources:0.9.4",
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"org.scala-lang.modules:scala-collection-compat_2.12:jar:sources:2.1.2",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7"
],
"directDependencies": [
"com.geirsson:metaconfig-core_2.12:jar:sources:0.9.4",
"com.typesafe:config:jar:sources:1.2.1",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4-sources.jar"
],
"sha256": "060510580755bd9f2df820e0225e89f0e5d1cf43fe18cc432002253c45ce40f6",
"url": "https://repo.maven.apache.org/maven2/com/geirsson/metaconfig-typesafe-config_2.12/0.9.4/metaconfig-typesafe-config_2.12-0.9.4-sources.jar"
},
{
"coord": "com.google.protobuf:protobuf-java:3.7.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1.jar"
],
"sha256": "22779eacfe0f33b9e8ceffa3cdef5935cae4e53f736e027d912b707522fea645",
"url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1.jar"
},
{
"coord": "com.google.protobuf:protobuf-java:jar:sources:3.7.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1-sources.jar"
],
"sha256": "4401d00d4774fadb66a5a122b33b412c1bb790fcb5fc6f2ba81eca4eac76294a",
"url": "https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.7.1/protobuf-java-3.7.1-sources.jar"
},
{
"coord": "com.lihaoyi:fansi_2.12:0.2.5",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar"
],
"sha256": "7d752240ec724e7370903c25b69088922fa3fb6831365db845cd72498f826eca",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5.jar"
},
{
"coord": "com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar"
],
"sha256": "15ba86e9c7bb83bddab0470a48a349c0f1b90bb2cd1c7d16f09cee6ba40ca95f",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fansi_2.12/0.2.5/fansi_2.12-0.2.5-sources.jar"
},
{
"coord": "com.lihaoyi:fastparse_2.12:2.1.3",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3.jar"
],
"sha256": "e8b831a843c0eb5105d42e4b6febfc772b3aed3a853a899e6c8196e9ecc057df",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3.jar"
},
{
"coord": "com.lihaoyi:fastparse_2.12:jar:sources:2.1.3",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3-sources.jar"
],
"sha256": "d7d33157d9dc83d3dd2cec6b4835bede4ce7b7d5e0bef6a08ff6c9e0efe78dd9",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/fastparse_2.12/2.1.3/fastparse_2.12-2.1.3-sources.jar"
},
{
"coord": "com.lihaoyi:pprint_2.12:0.5.3",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.lihaoyi:fansi_2.12:0.2.5"
],
"directDependencies": [
"com.lihaoyi:fansi_2.12:0.2.5",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar"
],
"sha256": "2e18aa0884870537bf5c562255fc759d4ebe360882b5cb2141b30eda4034c71d",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3.jar"
},
{
"coord": "com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar"
],
"sha256": "41898c25987f7023fe1dafed7639eebd1653f1bf82ba4f4381bc7ef6c50e6084",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/pprint_2.12/0.5.3/pprint_2.12-0.5.3-sources.jar"
},
{
"coord": "com.lihaoyi:sourcecode_2.12:0.1.7",
"dependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7.jar"
],
"sha256": "f07d79f0751ac275cc09b92caf3618f0118d153da7868b8f0c9397ce93c5f926",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7.jar"
},
{
"coord": "com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7-sources.jar"
],
"sha256": "7d0bb8c2de326485ffb02da7fca2fedd814b1ece6a86e1325594d593e5eaba63",
"url": "https://repo.maven.apache.org/maven2/com/lihaoyi/sourcecode_2.12/0.1.7/sourcecode_2.12-0.1.7-sources.jar"
},
{
"coord": "com.thesamet.scalapb:lenses_2.12:0.9.0",
"dependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0.jar"
],
"sha256": "0a2fff4de17d270cea561618090c21d50bc891d82c6f9dfccdc20568f18d0260",
"url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0.jar"
},
{
"coord": "com.thesamet.scalapb:lenses_2.12:jar:sources:0.9.0",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0-sources.jar"
],
"sha256": "107cb837f35186db75d4a1e343fcd809591daaf08459d6d328f0ad47f4ec968e",
"url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/lenses_2.12/0.9.0/lenses_2.12-0.9.0-sources.jar"
},
{
"coord": "com.thesamet.scalapb:scalapb-runtime_2.12:0.9.0",
"dependencies": [
"com.thesamet.scalapb:lenses_2.12:0.9.0",
"com.lihaoyi:fastparse_2.12:2.1.3",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.google.protobuf:protobuf-java:3.7.1"
],
"directDependencies": [
"com.google.protobuf:protobuf-java:3.7.1",
"com.lihaoyi:fastparse_2.12:2.1.3",
"com.thesamet.scalapb:lenses_2.12:0.9.0",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0.jar"
],
"sha256": "b905fa66b3fd0fabf3114105cd73ae2bdddbb6e13188a6538a92ae695e7ad6ed",
"url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0.jar"
},
{
"coord": "com.thesamet.scalapb:scalapb-runtime_2.12:jar:sources:0.9.0",
"dependencies": [
"com.lihaoyi:fastparse_2.12:jar:sources:2.1.3",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"com.google.protobuf:protobuf-java:jar:sources:3.7.1",
"com.thesamet.scalapb:lenses_2.12:jar:sources:0.9.0",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7"
],
"directDependencies": [
"com.google.protobuf:protobuf-java:jar:sources:3.7.1",
"com.lihaoyi:fastparse_2.12:jar:sources:2.1.3",
"com.thesamet.scalapb:lenses_2.12:jar:sources:0.9.0",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0-sources.jar"
],
"sha256": "2e1c8072c7b536e3599afabe6c60cd29ac3918640436c177224b3102e7ba007b",
"url": "https://repo.maven.apache.org/maven2/com/thesamet/scalapb/scalapb-runtime_2.12/0.9.0/scalapb-runtime_2.12-0.9.0-sources.jar"
},
{
"coord": "com.typesafe:config:1.2.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar"
],
"sha256": "c160fbd78f51a0c2375a794e435ce2112524a6871f64d0331895e9e26ee8b9ee",
"url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1.jar"
},
{
"coord": "com.typesafe:config:jar:sources:1.2.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/com/typesafe/config/1.2.1/config-1.2.1-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/com/typesafe/config/1.2.1/config-1.2.1-sources.jar"
],
"sha256": "78a8a2728fd5236b24a9bed7c253729887848ff5d3af5f9ef02e85be5fc43bba",
"url": "https://repo.maven.apache.org/maven2/com/typesafe/config/1.2.1/config-1.2.1-sources.jar"
},
{
"coord": "org.scala-lang.modules:scala-collection-compat_2.12:2.1.2",
"dependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2.jar"
],
"sha256": "8aab3e1f9dd7bc392a2e27cf168af94fdc7cc2752131fc852192302fb21efdb4",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2.jar"
},
{
"coord": "org.scala-lang.modules:scala-collection-compat_2.12:jar:sources:2.1.2",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2-sources.jar"
],
"sha256": "2837767d00002a23888804637c3a43136723cafbd2101ca37ea286e349b9ee14",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2-sources.jar"
},
{
"coord": "org.scala-lang.modules:scala-xml_2.12:1.0.6",
"dependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar"
],
"sha256": "7cc3b6ceb56e879cb977e8e043f4bfe2e062f78795efd7efa09f85003cb3230a",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar"
},
{
"coord": "org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar"
],
"sha256": "a7e8aac79394df396afda98b35537791809d815ce15ab2224f7d31e50c753922",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6-sources.jar"
},
{
"coord": "org.scala-lang:scala-compiler:2.12.10",
"dependencies": [
"org.scala-lang:scala-library:2.12.10",
"org.scala-lang.modules:scala-xml_2.12:1.0.6",
"org.scala-lang:scala-reflect:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10",
"org.scala-lang:scala-reflect:2.12.10",
"org.scala-lang.modules:scala-xml_2.12:1.0.6"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar"
],
"sha256": "cedc3b9c39d215a9a3ffc0cc75a1d784b51e9edc7f13051a1b4ad5ae22cfbc0c",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10.jar"
},
{
"coord": "org.scala-lang:scala-compiler:jar:sources:2.12.10",
"dependencies": [
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10-sources.jar"
],
"sha256": "bb695d1b05c5239bb93ef4b07023993a59df073ba6150f541725d81f1cc23e4d",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-compiler/2.12.10/scala-compiler-2.12.10-sources.jar"
},
{
"coord": "org.scala-lang:scala-library:2.12.10",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar"
],
"sha256": "0a57044d10895f8d3dd66ad4286891f607169d948845ac51e17b4c1cf0ab569d",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar"
},
{
"coord": "org.scala-lang:scala-library:jar:sources:2.12.10",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar"
],
"sha256": "a6f873aeb9b861848e0d0b4ec368a3f1682e33bdf11a82ce26f0bfe5fb197647",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10-sources.jar"
},
{
"coord": "org.scala-lang:scala-reflect:2.12.10",
"dependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar"
],
"sha256": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar"
},
{
"coord": "org.scala-lang:scala-reflect:2.12.10",
"dependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar"
],
"sha256": "56b609e1bab9144fb51525bfa01ccd72028154fc40a58685a1e9adcbe7835730",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar"
},
{
"coord": "org.scala-lang:scala-reflect:jar:sources:2.12.10",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar"
],
"sha256": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar"
},
{
"coord": "org.scala-lang:scala-reflect:jar:sources:2.12.10",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar"
],
"sha256": "c3a883670038f8030c41e5e3840d592e2c8bd89bf33d7d42a15c60f1207b9a32",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10-sources.jar"
},
{
"coord": "org.scala-lang:scalap:2.12.10",
"dependencies": [
"org.scala-lang:scala-library:2.12.10",
"org.scala-lang.modules:scala-xml_2.12:1.0.6",
"org.scala-lang:scala-compiler:2.12.10",
"org.scala-lang:scala-reflect:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-compiler:2.12.10"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10.jar"
],
"sha256": "4641b0a55fe1ebec995b4daea9183c21651c03f77d2ed08b345507474eeabe72",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10.jar"
},
{
"coord": "org.scala-lang:scalap:jar:sources:2.12.10",
"dependencies": [
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.scala-lang:scala-compiler:jar:sources:2.12.10",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-compiler:jar:sources:2.12.10"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10-sources.jar"
],
"sha256": "d8c720031fd168587ef2900e7ee79804722e2b78177c55269180935770ca34da",
"url": "https://repo.maven.apache.org/maven2/org/scala-lang/scalap/2.12.10/scalap-2.12.10-sources.jar"
},
{
"coord": "org.scalameta:common_2.12:4.3.0",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0.jar"
],
"sha256": "3bdb2ff71d3e86f94b4d31d2c40442f533655860749a92fd17e1f29b8deb8baa",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0.jar"
},
{
"coord": "org.scalameta:common_2.12:jar:sources:4.3.0",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0-sources.jar"
],
"sha256": "7952e262549ca6acbb67b03583535550b79e0150040af0e3d9788e13a65da850",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/common_2.12/4.3.0/common_2.12-4.3.0-sources.jar"
},
{
"coord": "org.scalameta:fastparse-utils_2.12:1.0.1",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1.jar"
],
"sha256": "9d8ad97778ef9aedef5d4190879ed0ec54969e2fc951576fe18746ae6ce6cfcf",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1.jar"
},
{
"coord": "org.scalameta:fastparse-utils_2.12:jar:sources:1.0.1",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1-sources.jar"
],
"sha256": "4eecadbf22e768e6d4771619b4bc9f1d0742b50b9a8cba0ba53a5f9234cede09",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/fastparse-utils_2.12/1.0.1/fastparse-utils_2.12-1.0.1-sources.jar"
},
{
"coord": "org.scalameta:fastparse_2.12:1.0.1",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"org.scalameta:fastparse-utils_2.12:1.0.1"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"org.scalameta:fastparse-utils_2.12:1.0.1"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1.jar"
],
"sha256": "387ced762e93915c5f87fed59d8453e404273f49f812d413405696ce20273aa5",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1.jar"
},
{
"coord": "org.scalameta:fastparse_2.12:jar:sources:1.0.1",
"dependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scalameta:fastparse-utils_2.12:jar:sources:1.0.1",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scalameta:fastparse-utils_2.12:jar:sources:1.0.1"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1-sources.jar"
],
"sha256": "9acef7bf40ddf4b803dc77c9e96ee81a1fc0d5288c2e2731847b0d24ff978628",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/fastparse_2.12/1.0.1/fastparse_2.12-1.0.1-sources.jar"
},
{
"coord": "org.scalameta:parsers_2.12:4.3.0",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:1.0.1",
"com.thesamet.scalapb:scalapb-runtime_2.12:0.9.0",
"com.thesamet.scalapb:lenses_2.12:0.9.0",
"org.scalameta:fastparse_2.12:1.0.1",
"org.scalameta:trees_2.12:4.3.0",
"org.scalameta:common_2.12:4.3.0",
"com.lihaoyi:fastparse_2.12:2.1.3",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.google.protobuf:protobuf-java:3.7.1"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10",
"org.scalameta:trees_2.12:4.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0.jar"
],
"sha256": "d9f87d03b6b5e942f263db6dab75937493bfcb0fe7cfe2cda6567bf30f23ff3a",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0.jar"
},
{
"coord": "org.scalameta:parsers_2.12:jar:sources:4.3.0",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:jar:sources:1.0.1",
"org.scalameta:fastparse_2.12:jar:sources:1.0.1",
"com.lihaoyi:fastparse_2.12:jar:sources:2.1.3",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scalameta:common_2.12:jar:sources:4.3.0",
"com.google.protobuf:protobuf-java:jar:sources:3.7.1",
"org.scalameta:trees_2.12:jar:sources:4.3.0",
"com.thesamet.scalapb:lenses_2.12:jar:sources:0.9.0",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"com.thesamet.scalapb:scalapb-runtime_2.12:jar:sources:0.9.0"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scalameta:trees_2.12:jar:sources:4.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0-sources.jar"
],
"sha256": "ae8147ce1286168b7ccffc72ceb4495e19539b7f718db781c2cc2405546242a7",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/parsers_2.12/4.3.0/parsers_2.12-4.3.0-sources.jar"
},
{
"coord": "org.scalameta:scalafmt-core_2.12:2.3.2",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:1.0.1",
"com.geirsson:metaconfig-core_2.12:0.9.4",
"org.scalameta:parsers_2.12:4.3.0",
"com.lihaoyi:fansi_2.12:0.2.5",
"com.geirsson:metaconfig-typesafe-config_2.12:0.9.4",
"org.scalameta:fastparse_2.12:1.0.1",
"org.scalameta:trees_2.12:4.3.0",
"org.scalameta:scalameta_2.12:4.3.0",
"org.scalameta:common_2.12:4.3.0",
"org.typelevel:paiges-core_2.12:0.2.4",
"org.scala-lang.modules:scala-collection-compat_2.12:2.1.2",
"org.scala-lang:scala-compiler:2.12.10",
"org.scala-lang:scala-reflect:2.12.10",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.typesafe:config:1.2.1",
"org.scala-lang.modules:scala-xml_2.12:1.0.6",
"com.lihaoyi:pprint_2.12:0.5.3",
"org.scala-lang:scalap:2.12.10"
],
"directDependencies": [
"com.geirsson:metaconfig-core_2.12:0.9.4",
"com.geirsson:metaconfig-typesafe-config_2.12:0.9.4",
"org.scalameta:scalameta_2.12:4.3.0",
"org.scala-lang:scala-reflect:2.12.10",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2.jar"
],
"sha256": "4788e2045e99f4624162d3182016a05032a7ab1324c4a28af433aa070f916773",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2.jar"
},
{
"coord": "org.scalameta:scalafmt-core_2.12:jar:sources:2.3.2",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:jar:sources:1.0.1",
"org.scalameta:fastparse_2.12:jar:sources:1.0.1",
"org.scala-lang:scalap:jar:sources:2.12.10",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scalameta:common_2.12:jar:sources:4.3.0",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.typelevel:paiges-core_2.12:jar:sources:0.2.4",
"org.scala-lang:scala-compiler:jar:sources:2.12.10",
"org.scalameta:trees_2.12:jar:sources:4.3.0",
"com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"com.typesafe:config:jar:sources:1.2.1",
"com.geirsson:metaconfig-core_2.12:jar:sources:0.9.4",
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"com.geirsson:metaconfig-typesafe-config_2.12:jar:sources:0.9.4",
"org.scala-lang.modules:scala-collection-compat_2.12:jar:sources:2.1.2",
"org.scalameta:scalameta_2.12:jar:sources:4.3.0",
"org.scalameta:parsers_2.12:jar:sources:4.3.0",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"com.geirsson:metaconfig-core_2.12:jar:sources:0.9.4",
"com.geirsson:metaconfig-typesafe-config_2.12:jar:sources:0.9.4",
"org.scalameta:scalameta_2.12:jar:sources:4.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2-sources.jar"
],
"sha256": "458aac4d1a58501d5484cd9b18d8742f971f50f18a91061c26f4363e173d7fa5",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/scalafmt-core_2.12/2.3.2/scalafmt-core_2.12-2.3.2-sources.jar"
},
{
"coord": "org.scalameta:scalameta_2.12:4.3.0",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:1.0.1",
"org.scalameta:parsers_2.12:4.3.0",
"org.scalameta:fastparse_2.12:1.0.1",
"org.scalameta:trees_2.12:4.3.0",
"org.scalameta:common_2.12:4.3.0",
"org.scala-lang:scala-compiler:2.12.10",
"org.scala-lang:scala-reflect:2.12.10",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"org.scala-lang.modules:scala-xml_2.12:1.0.6",
"org.scala-lang:scalap:2.12.10"
],
"directDependencies": [
"org.scala-lang:scala-library:2.12.10",
"org.scala-lang:scalap:2.12.10",
"org.scalameta:parsers_2.12:4.3.0"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0.jar"
],
"sha256": "4d9487b434cbe9d89033824a4fc902dc7c782eea94961e8575df91ae96b10d6a",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0.jar"
},
{
"coord": "org.scalameta:scalameta_2.12:jar:sources:4.3.0",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:jar:sources:1.0.1",
"org.scalameta:fastparse_2.12:jar:sources:1.0.1",
"org.scala-lang:scalap:jar:sources:2.12.10",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scalameta:common_2.12:jar:sources:4.3.0",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.scala-lang:scala-compiler:jar:sources:2.12.10",
"org.scalameta:trees_2.12:jar:sources:4.3.0",
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"org.scalameta:parsers_2.12:jar:sources:4.3.0",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scala-lang:scalap:jar:sources:2.12.10",
"org.scalameta:parsers_2.12:jar:sources:4.3.0"
],
"exclusions": [
"com.thesamet.scalapb:scalapb-runtime_2.12"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0-sources.jar"
],
"sha256": "1ad5005482945a30fd2d80cf4be8bc4571226c4203ec4085bc74700e65c78876",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/scalameta_2.12/4.3.0/scalameta_2.12-4.3.0-sources.jar"
},
{
"coord": "org.scalameta:trees_2.12:4.3.0",
"dependencies": [
"org.scalameta:fastparse-utils_2.12:1.0.1",
"com.thesamet.scalapb:scalapb-runtime_2.12:0.9.0",
"com.thesamet.scalapb:lenses_2.12:0.9.0",
"org.scalameta:fastparse_2.12:1.0.1",
"org.scalameta:common_2.12:4.3.0",
"com.lihaoyi:fastparse_2.12:2.1.3",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"com.google.protobuf:protobuf-java:3.7.1"
],
"directDependencies": [
"com.thesamet.scalapb:scalapb-runtime_2.12:0.9.0",
"org.scala-lang:scala-library:2.12.10",
"org.scalameta:common_2.12:4.3.0",
"org.scalameta:fastparse_2.12:1.0.1"
],
"file": "v1/https/repo.maven.apache.org/maven2/org/scalameta/trees_2.12/4.3.0/trees_2.12-4.3.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/org/scalameta/trees_2.12/4.3.0/trees_2.12-4.3.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/org/scalameta/trees_2.12/4.3.0/trees_2.12-4.3.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/org/scalameta/trees_2.12/4.3.0/trees_2.12-4.3.0.jar"
],
"sha256": "020b53681dd8e148d74ffa282276994bcb0f06c3425fb9a4bb9f8d161e22187a",
"url": "https://repo.maven.apache.org/maven2/org/scalameta/trees_2.12/4.3.0/trees_2.12-4.3.0.jar"