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_install.json
6278 lines (6278 loc) · 429 KB
/
annex_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": 1747050623,
"conflict_resolution": {
"com.lihaoyi:sourcecode_2.12:0.1.4": "com.lihaoyi:sourcecode_2.12:0.1.7"
},
"dependencies": [
{
"coord": "ch.epfl.scala:bloop-backend_2.12:1.0.0",
"dependencies": [
"org.scalaz:scalaz-core_2.12:7.2.20",
"io.monix:monix_2.12:2.3.3",
"org.spire-math:jawn-parser_2.12:0.11.1",
"org.scalaz:scalaz-effect_2.12:7.2.20",
"com.google.code.findbugs:jsr305:1.3.9",
"com.lmax:disruptor:3.4.2",
"io.monix:monix-execution_2.12:2.3.3",
"com.squareup.okhttp3:okhttp-urlconnection:3.7.0",
"net.java.dev.jna:jna-platform:4.5.0",
"org.jctools:jctools-core:2.0.1",
"org.scalaz:scalaz-concurrent_2.12:7.2.20",
"ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5",
"io.get-coursier:coursier-cache_2.12:1.1.0-M3",
"com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2",
"io.monix:monix-eval_2.12:2.3.3",
"com.trueaccord.lenses:lenses_2.12:0.4.12",
"com.google.errorprone:error_prone_annotations:2.0.18",
"com.swoval:file-tree-views:2.1.3",
"com.jcraft:jsch:0.1.54",
"org.scala-sbt:util-relation_2.12:1.3.0",
"io.github.soc:directories:10",
"org.apache.logging.log4j:log4j-core:2.11.2",
"ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5",
"com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4",
"com.eed3si9n:gigahorse-okhttp_2.12:0.3.0",
"com.eed3si9n:sjson-new-core_2.12:0.8.3",
"org.scala-sbt:util-position_2.12:1.1.3",
"org.scala-sbt:util-control_2.12:1.3.0",
"org.scala-sbt:util-logging_2.12:1.3.0",
"org.slf4j:slf4j-api:1.7.25",
"org.reactivestreams:reactive-streams:1.0.0",
"io.monix:monix-types_2.12:2.3.3",
"org.scala-sbt:librarymanagement-core_2.12:1.1.4",
"ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5",
"com.squareup.okio:okio:1.12.0",
"com.github.pathikrit:better-files_2.12:3.4.0",
"org.scala-sbt:test-agent:1.0.4",
"org.codehaus.mojo:animal-sniffer-annotations:1.14",
"com.typesafe:config:1.2.0",
"org.scala-sbt:test-interface:1.0",
"com.eed3si9n:sjson-new-scalajson_2.12:0.8.3",
"io.monix:monix-reactive_2.12:2.3.3",
"org.scala-sbt:io_2.12:1.3.0",
"org.scala-sbt:librarymanagement-ivy_2.12:1.0.0",
"com.eed3si9n:gigahorse-core_2.12:0.3.0",
"org.scala-lang:scala-compiler:2.12.10",
"org.scala-lang:scala-reflect:2.12.10",
"com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0",
"ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5",
"com.lihaoyi:fastparse_2.12:2.1.3",
"ch.epfl.scala:nailgun-server:0c8b937b",
"io.get-coursier:coursier_2.12:1.1.0-M3",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-sbt:util-interface:1.3.0",
"com.google.j2objc:j2objc-annotations:1.1",
"org.scala-lang:scala-library:2.12.10",
"org.scala-sbt:util-cache_2.12:1.1.3",
"org.scala-sbt:launcher-interface:1.0.0",
"com.squareup.okhttp3:okhttp:3.7.0",
"jline:jline:2.14.6",
"ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"com.google.guava:guava:23.0",
"org.scala-sbt:sbinary_2.12:0.5.0",
"net.java.dev.jna:jna:4.5.1",
"org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2",
"org.apache.logging.log4j:log4j-api:2.11.2",
"io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3",
"me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c",
"me.vican.jorge:directory-watcher:0.5.2-a1c0e21c",
"com.typesafe:ssl-config-core_2.12:0.2.2",
"com.google.protobuf:protobuf-java:3.7.1",
"ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5",
"org.scala-lang.modules:scala-xml_2.12:1.0.6",
"ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5",
"org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd"
],
"directDependencies": [
"org.scalaz:scalaz-core_2.12:7.2.20",
"io.monix:monix_2.12:2.3.3",
"org.scalaz:scalaz-concurrent_2.12:7.2.20",
"io.get-coursier:coursier-cache_2.12:1.1.0-M3",
"io.github.soc:directories:10",
"ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5",
"org.scala-sbt:test-agent:1.0.4",
"org.scala-sbt:test-interface:1.0",
"org.scala-sbt:librarymanagement-ivy_2.12:1.0.0",
"ch.epfl.scala:nailgun-server:0c8b937b",
"io.get-coursier:coursier_2.12:1.1.0-M3",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-lang:scala-library:2.12.10",
"io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3",
"me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar"
],
"sha256": "62778a25e6d62ccb9efde50621d0469810dc957a01715a988c1da5939a2c6fe5",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0.jar"
},
{
"coord": "ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0",
"dependencies": [
"ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"io.monix:monix-reactive_2.12:jar:sources:2.3.3",
"org.scala-sbt:sbinary_2.12:jar:sources:0.5.0",
"com.typesafe:config:jar:sources:1.2.0",
"org.slf4j:slf4j-api:jar:sources:1.7.25",
"jline:jline:jar:sources:2.14.6",
"com.lihaoyi:fastparse_2.12:jar:sources:2.1.3",
"org.scala-sbt:launcher-interface:jar:sources:1.0.0",
"org.scala-sbt:util-position_2.12:jar:sources:1.1.3",
"me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c",
"com.google.errorprone:error_prone_annotations:jar:sources:2.0.18",
"com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"com.google.guava:guava:jar:sources:23.0",
"com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.3",
"com.google.protobuf:protobuf-java:jar:sources:3.7.1",
"com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"net.java.dev.jna:jna:jar:sources:4.5.1",
"org.spire-math:jawn-parser_2.12:jar:sources:0.11.1",
"org.scala-sbt:util-control_2.12:jar:sources:1.3.0",
"org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20",
"org.scala-sbt:test-agent:jar:sources:1.0.4",
"io.monix:monix-eval_2.12:jar:sources:2.3.3",
"org.scala-lang:scala-compiler:jar:sources:2.12.10",
"org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14",
"org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20",
"com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4",
"me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c",
"ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"io.github.soc:directories:jar:sources:10",
"org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4",
"org.scalaz:scalaz-core_2.12:jar:sources:7.2.20",
"io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3",
"com.swoval:file-tree-views:jar:sources:2.1.3",
"ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.jcraft:jsch:jar:sources:0.1.54",
"com.google.code.findbugs:jsr305:jar:sources:1.3.9",
"ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0",
"org.scala-sbt:io_2.12:jar:sources:1.3.0",
"com.lmax:disruptor:jar:sources:3.4.2",
"com.google.j2objc:j2objc-annotations:jar:sources:1.1",
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"org.scala-sbt:util-relation_2.12:jar:sources:1.3.0",
"com.squareup.okio:okio:jar:sources:1.12.0",
"org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd",
"com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0",
"org.apache.logging.log4j:log4j-api:jar:sources:2.11.2",
"org.scala-sbt:test-interface:jar:sources:1.0",
"org.scala-sbt:util-logging_2.12:jar:sources:1.3.0",
"io.monix:monix_2.12:jar:sources:2.3.3",
"org.scala-sbt:util-interface:jar:sources:1.3.0",
"ch.epfl.scala:nailgun-server:jar:sources:0c8b937b",
"io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3",
"com.github.pathikrit:better-files_2.12:jar:sources:3.4.0",
"com.squareup.okhttp3:okhttp:jar:sources:3.7.0",
"ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2",
"org.scala-sbt:util-cache_2.12:jar:sources:1.1.3",
"ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2",
"org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0",
"com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12",
"com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.3",
"org.jctools:jctools-core:jar:sources:2.0.1",
"net.java.dev.jna:jna-platform:jar:sources:4.5.0",
"org.reactivestreams:reactive-streams:jar:sources:1.0.0",
"ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2",
"io.monix:monix-execution_2.12:jar:sources:2.3.3",
"io.monix:monix-types_2.12:jar:sources:2.3.3",
"io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3",
"org.apache.logging.log4j:log4j-core:jar:sources:2.11.2"
],
"directDependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scala-sbt:test-agent:jar:sources:1.0.4",
"org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20",
"me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c",
"io.github.soc:directories:jar:sources:10",
"org.scalaz:scalaz-core_2.12:jar:sources:7.2.20",
"io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3",
"org.scala-sbt:test-interface:jar:sources:1.0",
"io.monix:monix_2.12:jar:sources:2.3.3",
"ch.epfl.scala:nailgun-server:jar:sources:0c8b937b",
"io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3",
"ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0",
"io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar"
],
"sha256": "456446e45fec886ca848fc1ef0e36a0d9bf1260464d1ed98369df9bfcf6c4bbe",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-backend_2.12/1.0.0/bloop-backend_2.12-1.0.0-sources.jar"
},
{
"coord": "ch.epfl.scala:bloop-config_2.12:1.0.0",
"dependencies": [
"org.spire-math:jawn-parser_2.12:0.11.1",
"io.circe:circe-parser_2.12:0.9.3",
"io.circe:circe-numbers_2.12:0.9.3",
"io.circe:circe-jawn_2.12:0.9.3",
"org.scala-lang:scala-reflect:2.12.10",
"org.typelevel:machinist_2.12:0.6.2",
"io.circe:circe-derivation_2.12:0.9.0-M3",
"org.typelevel:cats-core_2.12:1.0.1",
"org.scala-lang:scala-library:2.12.10",
"org.typelevel:cats-macros_2.12:1.0.1",
"org.typelevel:cats-kernel_2.12:1.0.1",
"io.circe:circe-core_2.12:0.9.3"
],
"directDependencies": [
"io.circe:circe-derivation_2.12:0.9.0-M3",
"io.circe:circe-parser_2.12:0.9.3",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar"
],
"sha256": "1f9b0639dd36e74bc18cdeac3d6a1e815a7919d2f025d2729fe6ffca4a137bd0",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0.jar"
},
{
"coord": "ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"io.circe:circe-core_2.12:jar:sources:0.9.3",
"org.typelevel:cats-kernel_2.12:jar:sources:1.0.1",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.spire-math:jawn-parser_2.12:jar:sources:0.11.1",
"io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3",
"io.circe:circe-numbers_2.12:jar:sources:0.9.3",
"org.typelevel:cats-macros_2.12:jar:sources:1.0.1",
"io.circe:circe-parser_2.12:jar:sources:0.9.3",
"io.circe:circe-jawn_2.12:jar:sources:0.9.3",
"org.typelevel:cats-core_2.12:jar:sources:1.0.1",
"org.typelevel:machinist_2.12:jar:sources:0.6.2"
],
"directDependencies": [
"io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3",
"io.circe:circe-parser_2.12:jar:sources:0.9.3",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar"
],
"sha256": "1252c13b68159ac36d643bc3f7a7e0f4bce9dea7871975eaeac706df37b52491",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-config_2.12/1.0.0/bloop-config_2.12-1.0.0-sources.jar"
},
{
"coord": "ch.epfl.scala:bloop-frontend_2.12:1.0.0",
"dependencies": [
"org.scalaz:scalaz-core_2.12:7.2.20",
"io.monix:monix_2.12:2.3.3",
"org.spire-math:jawn-parser_2.12:0.11.1",
"org.scalaz:scalaz-effect_2.12:7.2.20",
"com.google.code.findbugs:jsr305:1.3.9",
"com.lmax:disruptor:3.4.2",
"com.beachape:enumeratum-macros_2.12:1.5.9",
"io.monix:monix-execution_2.12:2.3.3",
"com.squareup.okhttp3:okhttp-urlconnection:3.7.0",
"com.lihaoyi:fansi_2.12:0.2.5",
"net.java.dev.jna:jna-platform:4.5.0",
"io.circe:circe-parser_2.12:0.9.3",
"org.jctools:jctools-core:2.0.1",
"org.scalaz:scalaz-concurrent_2.12:7.2.20",
"org.codehaus.groovy:groovy:2.4.0",
"ch.epfl.scala:zinc-persist_2.12:1.1.7+62-0f4ad9d5",
"io.get-coursier:coursier-cache_2.12:1.1.0-M3",
"com.eed3si9n:sjson-new-murmurhash_2.12:0.8.2",
"io.monix:monix-eval_2.12:2.3.3",
"org.scalameta:lsp4s_2.12:0.1.0",
"io.circe:circe-generic_2.12:0.9.0",
"com.trueaccord.lenses:lenses_2.12:0.4.12",
"ch.qos.logback:logback-classic:1.2.3",
"com.google.errorprone:error_prone_annotations:2.0.18",
"com.swoval:file-tree-views:2.1.3",
"com.chuusai:shapeless_2.12:2.3.3",
"com.jcraft:jsch:0.1.54",
"org.scala-sbt:util-relation_2.12:1.3.0",
"io.github.soc:directories:10",
"org.scalameta:jsonrpc_2.12:0.1.0",
"org.apache.logging.log4j:log4j-core:2.11.2",
"ch.epfl.scala:bloop-config_2.12:1.0.0",
"ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:zinc_2.12:1.1.7+62-0f4ad9d5",
"com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4",
"com.eed3si9n:gigahorse-okhttp_2.12:0.3.0",
"ch.epfl.scala:bloop-backend_2.12:1.0.0",
"io.circe:circe-generic-extras_2.12:0.9.0",
"io.circe:circe-numbers_2.12:0.9.3",
"com.eed3si9n:sjson-new-core_2.12:0.8.3",
"com.beachape:enumeratum-circe_2.12:1.5.15",
"io.circe:circe-jawn_2.12:0.9.3",
"org.scala-sbt:util-position_2.12:1.1.3",
"org.scala-sbt:util-control_2.12:1.3.0",
"org.typelevel:macro-compat_2.12:1.1.1",
"org.scala-sbt:util-logging_2.12:1.3.0",
"org.slf4j:slf4j-api:1.7.25",
"org.reactivestreams:reactive-streams:1.0.0",
"io.monix:monix-types_2.12:2.3.3",
"ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time",
"org.scala-sbt:librarymanagement-core_2.12:1.1.4",
"ch.epfl.scala:zinc-core_2.12:1.1.7+62-0f4ad9d5",
"com.squareup.okio:okio:1.12.0",
"com.github.pathikrit:better-files_2.12:3.4.0",
"org.scala-sbt:test-agent:1.0.4",
"org.codehaus.mojo:animal-sniffer-annotations:1.14",
"com.typesafe:config:1.2.0",
"org.scala-sbt:test-interface:1.0",
"com.eed3si9n:sjson-new-scalajson_2.12:0.8.3",
"io.monix:monix-reactive_2.12:2.3.3",
"org.scala-sbt:io_2.12:1.3.0",
"org.scala-sbt:librarymanagement-ivy_2.12:1.0.0",
"com.eed3si9n:gigahorse-core_2.12:0.3.0",
"ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time",
"org.scala-lang:scala-compiler:2.12.10",
"org.scala-lang:scala-reflect:2.12.10",
"com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0",
"org.typelevel:machinist_2.12:0.6.2",
"ch.epfl.scala:zinc-compile-core_2.12:1.1.7+62-0f4ad9d5",
"com.lihaoyi:fastparse_2.12:2.1.3",
"ch.epfl.scala:nailgun-server:0c8b937b",
"io.get-coursier:coursier_2.12:1.1.0-M3",
"io.circe:circe-derivation_2.12:0.9.0-M3",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.scala-sbt:util-interface:1.3.0",
"org.typelevel:cats-core_2.12:1.0.1",
"com.google.j2objc:j2objc-annotations:1.1",
"org.scala-lang:scala-library:2.12.10",
"org.scala-sbt:util-cache_2.12:1.1.3",
"org.scala-sbt:launcher-interface:1.0.0",
"com.squareup.okhttp3:okhttp:3.7.0",
"jline:jline:2.14.6",
"ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"com.google.guava:guava:23.0",
"org.scala-sbt:sbinary_2.12:0.5.0",
"ch.epfl.scala:bsp_2.12:1.0.0-M4",
"org.typelevel:cats-macros_2.12:1.0.1",
"net.java.dev.jna:jna:4.5.1",
"com.zaxxer:nuprocess:1.2.4",
"org.scala-lang.modules:scala-parser-combinators_2.12:1.1.2",
"org.apache.logging.log4j:log4j-api:2.11.2",
"io.get-coursier:coursier-scalaz-interop_2.12:1.1.0-M3",
"me.vican.jorge:directory-watcher-better-files_2.12:0.5.2-a1c0e21c",
"org.typelevel:cats-kernel_2.12:1.0.1",
"me.vican.jorge:directory-watcher:0.5.2-a1c0e21c",
"ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time",
"com.typesafe:ssl-config-core_2.12:0.2.2",
"ch.qos.logback:logback-core:1.2.3",
"io.circe:circe-core_2.12:0.9.3",
"com.google.protobuf:protobuf-java:3.7.1",
"com.typesafe.scala-logging:scala-logging_2.12:3.7.2",
"ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:zinc-ivy-integration_2.12:1.1.7+62-0f4ad9d5",
"org.scala-lang.modules:scala-xml_2.12:1.0.6",
"ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5",
"org.scala-sbt.ivy:ivy:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd",
"com.lihaoyi:pprint_2.12:0.5.3",
"com.beachape:enumeratum_2.12:1.5.12"
],
"directDependencies": [
"org.scalaz:scalaz-core_2.12:7.2.20",
"io.monix:monix_2.12:2.3.3",
"ch.epfl.scala:bloop-config_2.12:1.0.0",
"ch.epfl.scala:bloop-backend_2.12:1.0.0",
"ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time",
"org.scala-lang:scala-library:2.12.10",
"ch.epfl.scala:bsp_2.12:1.0.0-M4",
"com.zaxxer:nuprocess:1.2.4"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar"
],
"sha256": "8dccc92d2d0eb772cb78bec87578aeccc41da9b1d8289431a895d7e77d3daa29",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0.jar"
},
{
"coord": "ch.epfl.scala:bloop-frontend_2.12:jar:sources:1.0.0",
"dependencies": [
"ch.epfl.scala:zinc-classpath_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"io.monix:monix-reactive_2.12:jar:sources:2.3.3",
"org.scala-sbt:sbinary_2.12:jar:sources:0.5.0",
"com.typesafe:config:jar:sources:1.2.0",
"org.slf4j:slf4j-api:jar:sources:1.7.25",
"jline:jline:jar:sources:2.14.6",
"com.lihaoyi:fastparse_2.12:jar:sources:2.1.3",
"org.scala-sbt:launcher-interface:jar:sources:1.0.0",
"org.scala-sbt:util-position_2.12:jar:sources:1.1.3",
"ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4",
"me.vican.jorge:directory-watcher:jar:sources:0.5.2-a1c0e21c",
"com.google.errorprone:error_prone_annotations:jar:sources:2.0.18",
"com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2",
"com.trueaccord.scalapb:scalapb-runtime_2.12:jar:sources:0.6.0",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0",
"ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"io.circe:circe-core_2.12:jar:sources:0.9.3",
"org.typelevel:cats-kernel_2.12:jar:sources:1.0.1",
"com.chuusai:shapeless_2.12:jar:sources:2.3.3",
"ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9",
"com.google.guava:guava:jar:sources:23.0",
"com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.3",
"com.beachape:enumeratum_2.12:jar:sources:1.5.12",
"com.google.protobuf:protobuf-java:jar:sources:3.7.1",
"com.zaxxer:nuprocess:jar:sources:1.2.4",
"com.eed3si9n:gigahorse-okhttp_2.12:jar:sources:0.3.0",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"net.java.dev.jna:jna:jar:sources:4.5.1",
"org.spire-math:jawn-parser_2.12:jar:sources:0.11.1",
"org.scala-sbt:util-control_2.12:jar:sources:1.3.0",
"org.scalaz:scalaz-effect_2.12:jar:sources:7.2.20",
"org.scala-sbt:test-agent:jar:sources:1.0.4",
"io.monix:monix-eval_2.12:jar:sources:2.3.3",
"io.circe:circe-generic-extras_2.12:jar:sources:0.9.0",
"org.scalameta:jsonrpc_2.12:jar:sources:0.1.0",
"ch.qos.logback:logback-core:jar:sources:1.2.3",
"org.scala-lang:scala-compiler:jar:sources:2.12.10",
"org.codehaus.mojo:animal-sniffer-annotations:jar:sources:1.14",
"org.scalaz:scalaz-concurrent_2.12:jar:sources:7.2.20",
"io.circe:circe-derivation_2.12:jar:sources:0.9.0-M3",
"com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4",
"me.vican.jorge:directory-watcher-better-files_2.12:jar:sources:0.5.2-a1c0e21c",
"io.circe:circe-numbers_2.12:jar:sources:0.9.3",
"ch.epfl.scala:zinc-compile-core_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"io.github.soc:directories:jar:sources:10",
"ch.qos.logback:logback-classic:jar:sources:1.2.3",
"com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"org.scala-sbt:librarymanagement-core_2.12:jar:sources:1.1.4",
"org.scalaz:scalaz-core_2.12:jar:sources:7.2.20",
"com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15",
"io.get-coursier:coursier-scalaz-interop_2.12:jar:sources:1.1.0-M3",
"com.swoval:file-tree-views:jar:sources:2.1.3",
"ch.epfl.scala:zinc-core_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.jcraft:jsch:jar:sources:0.1.54",
"com.google.code.findbugs:jsr305:jar:sources:1.3.9",
"io.circe:circe-generic_2.12:jar:sources:0.9.0",
"ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.squareup.okhttp3:okhttp-urlconnection:jar:sources:3.7.0",
"org.scala-sbt:io_2.12:jar:sources:1.3.0",
"com.lmax:disruptor:jar:sources:3.4.2",
"org.typelevel:cats-macros_2.12:jar:sources:1.0.1",
"com.google.j2objc:j2objc-annotations:jar:sources:1.1",
"org.scala-lang.modules:scala-xml_2.12:jar:sources:1.0.6",
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"org.scala-sbt:util-relation_2.12:jar:sources:1.3.0",
"com.squareup.okio:okio:jar:sources:1.12.0",
"org.scala-sbt.ivy:ivy:jar:sources:2.3.0-sbt-a3314352b638afbf0dca19f127e8263ed6f898bd",
"com.eed3si9n:gigahorse-core_2.12:jar:sources:0.3.0",
"ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0",
"org.apache.logging.log4j:log4j-api:jar:sources:2.11.2",
"org.scala-sbt:test-interface:jar:sources:1.0",
"org.scala-sbt:util-logging_2.12:jar:sources:1.3.0",
"io.monix:monix_2.12:jar:sources:2.3.3",
"org.scala-sbt:util-interface:jar:sources:1.3.0",
"io.circe:circe-parser_2.12:jar:sources:0.9.3",
"ch.epfl.scala:nailgun-server:jar:sources:0c8b937b",
"io.get-coursier:coursier-cache_2.12:jar:sources:1.1.0-M3",
"com.github.pathikrit:better-files_2.12:jar:sources:3.4.0",
"com.squareup.okhttp3:okhttp:jar:sources:3.7.0",
"io.circe:circe-jawn_2.12:jar:sources:0.9.3",
"org.scalameta:lsp4s_2.12:jar:sources:0.1.0",
"ch.epfl.scala:zinc-persist_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time",
"org.typelevel:cats-core_2.12:jar:sources:1.0.1",
"com.eed3si9n:sjson-new-murmurhash_2.12:jar:sources:0.8.2",
"org.scala-sbt:util-cache_2.12:jar:sources:1.1.3",
"ch.epfl.scala:zinc_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"com.typesafe:ssl-config-core_2.12:jar:sources:0.2.2",
"org.scala-sbt:librarymanagement-ivy_2.12:jar:sources:1.0.0",
"com.trueaccord.lenses:lenses_2.12:jar:sources:0.4.12",
"ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time",
"com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.3",
"org.jctools:jctools-core:jar:sources:2.0.1",
"net.java.dev.jna:jna-platform:jar:sources:4.5.0",
"org.reactivestreams:reactive-streams:jar:sources:1.0.0",
"ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time",
"org.codehaus.groovy:groovy:jar:sources:2.4.0",
"ch.epfl.scala:zinc-ivy-integration_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"org.typelevel:machinist_2.12:jar:sources:0.6.2",
"org.scala-lang.modules:scala-parser-combinators_2.12:jar:sources:1.1.2",
"io.monix:monix-execution_2.12:jar:sources:2.3.3",
"io.monix:monix-types_2.12:jar:sources:2.3.3",
"io.get-coursier:coursier_2.12:jar:sources:1.1.0-M3",
"org.apache.logging.log4j:log4j-core:jar:sources:2.11.2",
"org.typelevel:macro-compat_2.12:jar:sources:1.1.1"
],
"directDependencies": [
"ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"ch.epfl.scala:bloop-config_2.12:jar:sources:1.0.0",
"com.zaxxer:nuprocess:jar:sources:1.2.4",
"org.scalaz:scalaz-core_2.12:jar:sources:7.2.20",
"ch.epfl.scala:bloop-backend_2.12:jar:sources:1.0.0",
"io.monix:monix_2.12:jar:sources:2.3.3",
"ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar"
],
"sha256": "c713a426b6213aa947c869269d77be2e20e415ed85021251e02274899a2d7ea7",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bloop-frontend_2.12/1.0.0/bloop-frontend_2.12-1.0.0-sources.jar"
},
{
"coord": "ch.epfl.scala:bsp_2.12:1.0.0-M4",
"dependencies": [
"io.monix:monix_2.12:2.3.3",
"org.spire-math:jawn-parser_2.12:0.11.1",
"com.beachape:enumeratum-macros_2.12:1.5.9",
"io.monix:monix-execution_2.12:2.3.3",
"com.lihaoyi:fansi_2.12:0.2.5",
"io.circe:circe-parser_2.12:0.9.3",
"org.jctools:jctools-core:2.0.1",
"org.codehaus.groovy:groovy:2.4.0",
"io.monix:monix-eval_2.12:2.3.3",
"org.scalameta:lsp4s_2.12:0.1.0",
"io.circe:circe-generic_2.12:0.9.0",
"ch.qos.logback:logback-classic:1.2.3",
"com.chuusai:shapeless_2.12:2.3.3",
"org.scalameta:jsonrpc_2.12:0.1.0",
"io.circe:circe-generic-extras_2.12:0.9.0",
"io.circe:circe-numbers_2.12:0.9.3",
"com.beachape:enumeratum-circe_2.12:1.5.15",
"io.circe:circe-jawn_2.12:0.9.3",
"org.typelevel:macro-compat_2.12:1.1.1",
"org.slf4j:slf4j-api:1.7.25",
"org.reactivestreams:reactive-streams:1.0.0",
"io.monix:monix-types_2.12:2.3.3",
"io.monix:monix-reactive_2.12:2.3.3",
"org.scala-lang:scala-reflect:2.12.10",
"org.typelevel:machinist_2.12:0.6.2",
"com.lihaoyi:sourcecode_2.12:0.1.7",
"org.typelevel:cats-core_2.12:1.0.1",
"org.scala-lang:scala-library:2.12.10",
"org.typelevel:cats-macros_2.12:1.0.1",
"org.typelevel:cats-kernel_2.12:1.0.1",
"ch.qos.logback:logback-core:1.2.3",
"io.circe:circe-core_2.12:0.9.3",
"com.typesafe.scala-logging:scala-logging_2.12:3.7.2",
"com.lihaoyi:pprint_2.12:0.5.3",
"com.beachape:enumeratum_2.12:1.5.12"
],
"directDependencies": [
"io.circe:circe-core_2.12:0.9.3",
"org.scala-lang:scala-library:2.12.10",
"org.scalameta:lsp4s_2.12:0.1.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar"
],
"sha256": "37d4fc75c72b7fabaf6fca8f1dc43e5fe1953f95f6631a0f34159fc75f2615a1",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4.jar"
},
{
"coord": "ch.epfl.scala:bsp_2.12:jar:sources:1.0.0-M4",
"dependencies": [
"io.monix:monix-reactive_2.12:jar:sources:2.3.3",
"org.slf4j:slf4j-api:jar:sources:1.7.25",
"com.typesafe.scala-logging:scala-logging_2.12:jar:sources:3.7.2",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"io.circe:circe-core_2.12:jar:sources:0.9.3",
"org.typelevel:cats-kernel_2.12:jar:sources:1.0.1",
"com.chuusai:shapeless_2.12:jar:sources:2.3.3",
"com.beachape:enumeratum-macros_2.12:jar:sources:1.5.9",
"com.beachape:enumeratum_2.12:jar:sources:1.5.12",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"org.spire-math:jawn-parser_2.12:jar:sources:0.11.1",
"io.monix:monix-eval_2.12:jar:sources:2.3.3",
"io.circe:circe-generic-extras_2.12:jar:sources:0.9.0",
"org.scalameta:jsonrpc_2.12:jar:sources:0.1.0",
"ch.qos.logback:logback-core:jar:sources:1.2.3",
"io.circe:circe-numbers_2.12:jar:sources:0.9.3",
"ch.qos.logback:logback-classic:jar:sources:1.2.3",
"com.lihaoyi:pprint_2.12:jar:sources:0.5.3",
"com.beachape:enumeratum-circe_2.12:jar:sources:1.5.15",
"io.circe:circe-generic_2.12:jar:sources:0.9.0",
"org.typelevel:cats-macros_2.12:jar:sources:1.0.1",
"com.lihaoyi:fansi_2.12:jar:sources:0.2.5",
"io.monix:monix_2.12:jar:sources:2.3.3",
"io.circe:circe-parser_2.12:jar:sources:0.9.3",
"io.circe:circe-jawn_2.12:jar:sources:0.9.3",
"org.scalameta:lsp4s_2.12:jar:sources:0.1.0",
"org.typelevel:cats-core_2.12:jar:sources:1.0.1",
"com.lihaoyi:sourcecode_2.12:jar:sources:0.1.7",
"org.jctools:jctools-core:jar:sources:2.0.1",
"org.reactivestreams:reactive-streams:jar:sources:1.0.0",
"org.codehaus.groovy:groovy:jar:sources:2.4.0",
"org.typelevel:machinist_2.12:jar:sources:0.6.2",
"io.monix:monix-execution_2.12:jar:sources:2.3.3",
"io.monix:monix-types_2.12:jar:sources:2.3.3",
"org.typelevel:macro-compat_2.12:jar:sources:1.1.1"
],
"directDependencies": [
"io.circe:circe-core_2.12:jar:sources:0.9.3",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scalameta:lsp4s_2.12:jar:sources:0.1.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar"
],
"sha256": "e9ca095842a243bd880f2396dbb852b1f06eda081c36afc31e2839832a2c19c7",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/bsp_2.12/1.0.0-M4/bsp_2.12-1.0.0-M4-sources.jar"
},
{
"coord": "ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time",
"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/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar"
],
"sha256": "6918a8e756486c4ab6d8fd037898c9b727e03ab16cc36edf95f3fd97519a6403",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time.jar"
},
{
"coord": "ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time",
"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/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar"
],
"sha256": "d9d3da4572c4278663212b34833629ba8616b887eb55477a4a71ea540258a610",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-annotations_2.12/1.2.0-faster-compile-time/case-app-annotations_2.12-1.2.0-faster-compile-time-sources.jar"
},
{
"coord": "ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time",
"dependencies": [
"org.scala-lang:scala-library:2.12.10",
"com.chuusai:shapeless_2.12:2.3.3",
"org.typelevel:macro-compat_2.12:1.1.1"
],
"directDependencies": [
"com.chuusai:shapeless_2.12:2.3.3",
"org.scala-lang:scala-library:2.12.10",
"org.typelevel:macro-compat_2.12:1.1.1"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar"
],
"sha256": "17cab6c45c702e01af1ebefe8415117eb4ca0813be76d08e1cc18f85fe5d7c5b",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time.jar"
},
{
"coord": "ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time",
"dependencies": [
"com.chuusai:shapeless_2.12:jar:sources:2.3.3",
"org.typelevel:macro-compat_2.12:jar:sources:1.1.1",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"directDependencies": [
"com.chuusai:shapeless_2.12:jar:sources:2.3.3",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.typelevel:macro-compat_2.12:jar:sources:1.1.1"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar"
],
"sha256": "2e4e1cead6a42006d661dd3bf7dbbd19468d427f04a93e6517c6900dc4ce69ed",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app-util_2.12/1.2.0-faster-compile-time/case-app-util_2.12-1.2.0-faster-compile-time-sources.jar"
},
{
"coord": "ch.epfl.scala:case-app_2.12:1.2.0-faster-compile-time",
"dependencies": [
"com.chuusai:shapeless_2.12:2.3.3",
"org.typelevel:macro-compat_2.12:1.1.1",
"ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time",
"org.scala-lang:scala-library:2.12.10",
"ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time"
],
"directDependencies": [
"ch.epfl.scala:case-app-annotations_2.12:1.2.0-faster-compile-time",
"ch.epfl.scala:case-app-util_2.12:1.2.0-faster-compile-time",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar"
],
"sha256": "316631204e37ba90c6e5457bd31a54e1497f00ceaa5d70cc9a902096dd663e2e",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time.jar"
},
{
"coord": "ch.epfl.scala:case-app_2.12:jar:sources:1.2.0-faster-compile-time",
"dependencies": [
"org.scala-lang:scala-library:jar:sources:2.12.10",
"com.chuusai:shapeless_2.12:jar:sources:2.3.3",
"ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time",
"ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time",
"org.typelevel:macro-compat_2.12:jar:sources:1.1.1"
],
"directDependencies": [
"ch.epfl.scala:case-app-annotations_2.12:jar:sources:1.2.0-faster-compile-time",
"ch.epfl.scala:case-app-util_2.12:jar:sources:1.2.0-faster-compile-time",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar"
],
"sha256": "9fc615f1bd1419db048e7de32f6631c3373f3a421538e983334cd6b2f19a9885",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/case-app_2.12/1.2.0-faster-compile-time/case-app_2.12-1.2.0-faster-compile-time-sources.jar"
},
{
"coord": "ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"dependencies": [
"org.scala-sbt:util-interface:1.3.0"
],
"directDependencies": [
"org.scala-sbt:util-interface:1.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar"
],
"sha256": "468d515a1a23d2ffb5635d38addac8f0da7937e54f91ed278a9b1884947bc284",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5.jar"
},
{
"coord": "ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"dependencies": [
"org.scala-sbt:util-interface:jar:sources:1.3.0"
],
"directDependencies": [
"org.scala-sbt:util-interface:jar:sources:1.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar"
],
"sha256": "779b0dba1398d8fe90b8f89a4702929eb240e3677b50ba9751519e353277235a",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/compiler-interface/1.1.7%2B62-0f4ad9d5/compiler-interface-1.1.7%2B62-0f4ad9d5-sources.jar"
},
{
"coord": "ch.epfl.scala:nailgun-server:0c8b937b",
"dependencies": [
"net.java.dev.jna:jna:4.5.1",
"org.scala-lang:scala-library:2.12.10",
"net.java.dev.jna:jna-platform:4.5.0"
],
"directDependencies": [
"net.java.dev.jna:jna:4.5.1",
"net.java.dev.jna:jna-platform:4.5.0",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar"
],
"sha256": "b5fbb84441e55c7e91540ee00d0808c8b656b0bfc2fc67907e754d3518ea66ea",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b.jar"
},
{
"coord": "ch.epfl.scala:nailgun-server:jar:sources:0c8b937b",
"dependencies": [
"net.java.dev.jna:jna-platform:jar:sources:4.5.0",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"net.java.dev.jna:jna:jar:sources:4.5.1"
],
"directDependencies": [
"net.java.dev.jna:jna:jar:sources:4.5.1",
"net.java.dev.jna:jna-platform:jar:sources:4.5.0",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar"
],
"sha256": "c4bb657ec224b8ea19def64627ab8c9c76c9b6cc9dddc2572e8fc767055ebb2c",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/nailgun-server/0c8b937b/nailgun-server-0c8b937b-sources.jar"
},
{
"coord": "ch.epfl.scala:zinc-apiinfo_2.12:1.1.7+62-0f4ad9d5",
"dependencies": [
"org.spire-math:jawn-parser_2.12:0.11.1",
"com.lmax:disruptor:3.4.2",
"net.java.dev.jna:jna-platform:4.5.0",
"com.swoval:file-tree-views:2.1.3",
"org.apache.logging.log4j:log4j-core:2.11.2",
"com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4",
"com.eed3si9n:sjson-new-core_2.12:0.8.3",
"org.scala-sbt:util-logging_2.12:1.3.0",
"com.eed3si9n:sjson-new-scalajson_2.12:0.8.3",
"org.scala-sbt:io_2.12:1.3.0",
"org.scala-lang:scala-reflect:2.12.10",
"org.scala-sbt:util-interface:1.3.0",
"org.scala-lang:scala-library:2.12.10",
"jline:jline:2.14.6",
"ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"net.java.dev.jna:jna:4.5.1",
"org.apache.logging.log4j:log4j-api:2.11.2",
"ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5"
],
"directDependencies": [
"ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5",
"org.scala-lang:scala-library:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar"
],
"sha256": "1b041dd66c3d50ec17a80a1e1b8c0e3dc16ca8308495661a0b48abe84f09f327",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5.jar"
},
{
"coord": "ch.epfl.scala:zinc-apiinfo_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"dependencies": [
"jline:jline:jar:sources:2.14.6",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.3",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"net.java.dev.jna:jna:jar:sources:4.5.1",
"org.spire-math:jawn-parser_2.12:jar:sources:0.11.1",
"com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4",
"com.swoval:file-tree-views:jar:sources:2.1.3",
"ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"org.scala-sbt:io_2.12:jar:sources:1.3.0",
"com.lmax:disruptor:jar:sources:3.4.2",
"org.apache.logging.log4j:log4j-api:jar:sources:2.11.2",
"org.scala-sbt:util-logging_2.12:jar:sources:1.3.0",
"org.scala-sbt:util-interface:jar:sources:1.3.0",
"com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.3",
"net.java.dev.jna:jna-platform:jar:sources:4.5.0",
"org.apache.logging.log4j:log4j-core:jar:sources:2.11.2"
],
"directDependencies": [
"ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"org.scala-lang:scala-library:jar:sources:2.12.10"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar"
],
"sha256": "54e686ca61511cdcbb46b6b45cbf4804588ad6cfbf2c4f31c80ffacb47676436",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-apiinfo_2.12/1.1.7%2B62-0f4ad9d5/zinc-apiinfo_2.12-1.1.7%2B62-0f4ad9d5-sources.jar"
},
{
"coord": "ch.epfl.scala:zinc-classfile_2.12:1.1.7+62-0f4ad9d5",
"dependencies": [
"org.spire-math:jawn-parser_2.12:0.11.1",
"com.lmax:disruptor:3.4.2",
"net.java.dev.jna:jna-platform:4.5.0",
"com.swoval:file-tree-views:2.1.3",
"org.apache.logging.log4j:log4j-core:2.11.2",
"com.eed3si9n:shaded-scalajson_2.12:1.0.0-M4",
"com.eed3si9n:sjson-new-core_2.12:0.8.3",
"org.scala-sbt:util-logging_2.12:1.3.0",
"com.eed3si9n:sjson-new-scalajson_2.12:0.8.3",
"org.scala-sbt:io_2.12:1.3.0",
"org.scala-lang:scala-reflect:2.12.10",
"org.scala-sbt:util-interface:1.3.0",
"org.scala-lang:scala-library:2.12.10",
"jline:jline:2.14.6",
"ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"net.java.dev.jna:jna:4.5.1",
"org.apache.logging.log4j:log4j-api:2.11.2"
],
"directDependencies": [
"ch.epfl.scala:compiler-interface:1.1.7+62-0f4ad9d5",
"org.scala-lang:scala-library:2.12.10",
"org.scala-sbt:io_2.12:1.3.0",
"org.scala-sbt:util-logging_2.12:1.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar"
],
"sha256": "298716ee438261d00757821e69d6849ece59f14d11a78c0c13d8ebce4ef74411",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5.jar"
},
{
"coord": "ch.epfl.scala:zinc-classfile_2.12:jar:sources:1.1.7+62-0f4ad9d5",
"dependencies": [
"jline:jline:jar:sources:2.14.6",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"com.eed3si9n:sjson-new-scalajson_2.12:jar:sources:0.8.3",
"org.scala-lang:scala-reflect:jar:sources:2.12.10",
"net.java.dev.jna:jna:jar:sources:4.5.1",
"org.spire-math:jawn-parser_2.12:jar:sources:0.11.1",
"com.eed3si9n:shaded-scalajson_2.12:jar:sources:1.0.0-M4",
"com.swoval:file-tree-views:jar:sources:2.1.3",
"org.scala-sbt:io_2.12:jar:sources:1.3.0",
"com.lmax:disruptor:jar:sources:3.4.2",
"org.apache.logging.log4j:log4j-api:jar:sources:2.11.2",
"org.scala-sbt:util-logging_2.12:jar:sources:1.3.0",
"org.scala-sbt:util-interface:jar:sources:1.3.0",
"com.eed3si9n:sjson-new-core_2.12:jar:sources:0.8.3",
"net.java.dev.jna:jna-platform:jar:sources:4.5.0",
"org.apache.logging.log4j:log4j-core:jar:sources:2.11.2"
],
"directDependencies": [
"ch.epfl.scala:compiler-interface:jar:sources:1.1.7+62-0f4ad9d5",
"org.scala-lang:scala-library:jar:sources:2.12.10",
"org.scala-sbt:io_2.12:jar:sources:1.3.0",
"org.scala-sbt:util-logging_2.12:jar:sources:1.3.0"
],
"file": "v1/https/repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar",
"mirror_urls": [
"https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar",
"https://maven-central.storage-download.googleapis.com/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar",
"https://mirror.bazel.build/repo1.maven.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar"
],
"sha256": "6514d2aa547d31b2f52a0398e4471b5978d585f91edcb9bca48e2ba1eebbdcf2",
"url": "https://repo.maven.apache.org/maven2/ch/epfl/scala/zinc-classfile_2.12/1.1.7%2B62-0f4ad9d5/zinc-classfile_2.12-1.1.7%2B62-0f4ad9d5-sources.jar"
},
{
"coord": "ch.epfl.scala:zinc-classpath_2.12:1.1.7+62-0f4ad9d5",
"dependencies": [
"net.java.dev.jna:jna-platform:4.5.0",
"com.swoval:file-tree-views:2.1.3",
"org.scala-sbt:io_2.12:1.3.0",
"org.scala-lang:scala-compiler:2.12.10",
"org.scala-lang:scala-reflect:2.12.10",
"org.scala-sbt:util-interface:1.3.0",