forked from bazel-contrib/rules_jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrozen_deps_install.json
2670 lines (2670 loc) · 151 KB
/
frozen_deps_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": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": -407317411,
"__RESOLVED_ARTIFACTS_HASH": -1818747059,
"conflict_resolution": {},
"dependencies": [
{
"coord": "com.beust:jcommander:jar:sources:1.48",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48-sources.jar"
],
"sha256": "034401849e035a879dbd4c1937249a7d0c7a61c54bf9e668187718e56770ecb3",
"url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48-sources.jar"
},
{
"coord": "com.beust:jcommander:1.48",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar"
],
"sha256": "a7313fcfde070930e40ec79edf3c5948cf34e4f0d25cb3a09f9963d8bdd84113",
"url": "https://repo1.maven.org/maven2/com/beust/jcommander/1.48/jcommander-1.48.jar"
},
{
"coord": "com.github.spotbugs:spotbugs-annotations:jar:sources:4.5.0",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.5.0/spotbugs-annotations-4.5.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.5.0/spotbugs-annotations-4.5.0-sources.jar"
],
"sha256": "b338136e3e82d585348cde58a8fe3a678e16f51a35c31c1463e05fefef557aad",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.5.0/spotbugs-annotations-4.5.0-sources.jar"
},
{
"coord": "com.github.spotbugs:spotbugs-annotations:4.5.0",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:3.0.2"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.5.0/spotbugs-annotations-4.5.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.5.0/spotbugs-annotations-4.5.0.jar"
],
"sha256": "65199ea3fe5dc4d106e30ebf67a92c7c816da816563d75c8ea6da1f0ff662857",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.5.0/spotbugs-annotations-4.5.0.jar"
},
{
"coord": "com.github.spotbugs:spotbugs:jar:sources:4.5.0",
"dependencies": [
"com.github.spotbugs:spotbugs-annotations:jar:sources:4.5.0",
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.code.gson:gson:jar:sources:2.8.9",
"jaxen:jaxen:jar:sources:1.2.0",
"net.jcip:jcip-annotations:jar:sources:1.0",
"net.sf.saxon:Saxon-HE:jar:sources:10.6",
"org.apache.bcel:bcel:jar:sources:6.5.0",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.apache.commons:commons-text:jar:sources:1.9",
"org.dom4j:dom4j:jar:sources:2.1.3",
"org.ow2.asm:asm-analysis:jar:sources:9.2",
"org.ow2.asm:asm-commons:jar:sources:9.2",
"org.ow2.asm:asm-tree:jar:sources:9.2",
"org.ow2.asm:asm-util:jar:sources:9.2",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"com.github.spotbugs:spotbugs-annotations:jar:sources:4.5.0",
"com.google.code.gson:gson:jar:sources:2.8.9",
"jaxen:jaxen:jar:sources:1.2.0",
"net.jcip:jcip-annotations:jar:sources:1.0",
"net.sf.saxon:Saxon-HE:jar:sources:10.6",
"org.apache.bcel:bcel:jar:sources:6.5.0",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.apache.commons:commons-text:jar:sources:1.9",
"org.dom4j:dom4j:jar:sources:2.1.3",
"org.ow2.asm:asm-analysis:jar:sources:9.2",
"org.ow2.asm:asm-commons:jar:sources:9.2",
"org.ow2.asm:asm-tree:jar:sources:9.2",
"org.ow2.asm:asm-util:jar:sources:9.2",
"org.ow2.asm:asm:jar:sources:9.2"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.5.0/spotbugs-4.5.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.5.0/spotbugs-4.5.0-sources.jar"
],
"sha256": "4bf5daff85cf2e7fbc1b0950be87d7933f1bb80756cf9f55c534a63f07551eb9",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.5.0/spotbugs-4.5.0-sources.jar"
},
{
"coord": "com.github.spotbugs:spotbugs:4.5.0",
"dependencies": [
"com.github.spotbugs:spotbugs-annotations:4.5.0",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:2.8.9",
"jaxen:jaxen:1.2.0",
"net.jcip:jcip-annotations:1.0",
"net.sf.saxon:Saxon-HE:10.6",
"org.apache.bcel:bcel:6.5.0",
"org.apache.commons:commons-lang3:3.12.0",
"org.apache.commons:commons-text:1.9",
"org.dom4j:dom4j:2.1.3",
"org.ow2.asm:asm-analysis:9.2",
"org.ow2.asm:asm-commons:9.2",
"org.ow2.asm:asm-tree:9.2",
"org.ow2.asm:asm-util:9.2",
"org.ow2.asm:asm:9.2"
],
"directDependencies": [
"com.github.spotbugs:spotbugs-annotations:4.5.0",
"com.google.code.gson:gson:2.8.9",
"jaxen:jaxen:1.2.0",
"net.jcip:jcip-annotations:1.0",
"net.sf.saxon:Saxon-HE:10.6",
"org.apache.bcel:bcel:6.5.0",
"org.apache.commons:commons-lang3:3.12.0",
"org.apache.commons:commons-text:1.9",
"org.dom4j:dom4j:2.1.3",
"org.ow2.asm:asm-analysis:9.2",
"org.ow2.asm:asm-commons:9.2",
"org.ow2.asm:asm-tree:9.2",
"org.ow2.asm:asm-util:9.2",
"org.ow2.asm:asm:9.2"
],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.5.0/spotbugs-4.5.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.5.0/spotbugs-4.5.0.jar"
],
"sha256": "7063b740850a27bafbfd2d4528bec2faf2ebef9845a96efea47e15ccbc8a9317",
"url": "https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.5.0/spotbugs-4.5.0.jar"
},
{
"coord": "com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar"
],
"sha256": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b",
"url": "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar"
},
{
"coord": "com.google.code.findbugs:jsr305:3.0.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
],
"sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"url": "https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
},
{
"coord": "com.google.code.gson:gson:jar:sources:2.8.9",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9-sources.jar"
],
"sha256": "ba5bddb1a89eb721fcca39f3b34294532060f851e2407a82d82134a41eec4719",
"url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9-sources.jar"
},
{
"coord": "com.google.code.gson:gson:2.8.9",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar"
],
"sha256": "d3999291855de495c94c743761b8ab5176cfeabe281a5ab0d8e8d45326fd703e",
"url": "https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar"
},
{
"coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.7.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar"
],
"sha256": "e38921f918b8ad8eabd12bc61de426fa96c72de077054e9147d2f9fe7c648923",
"url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1-sources.jar"
},
{
"coord": "com.google.errorprone:error_prone_annotations:2.7.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar"
],
"sha256": "cd5257c08a246cf8628817ae71cb822be192ef91f6881ca4a3fcff4f1de1cff3",
"url": "https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar"
},
{
"coord": "com.google.guava:failureaccess:jar:sources:1.0.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar"
],
"sha256": "092346eebbb1657b51aa7485a246bf602bb464cc0b0e2e1c7e7201fadce1e98f",
"url": "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar"
},
{
"coord": "com.google.guava:failureaccess:1.0.1",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
],
"sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
"url": "https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
},
{
"coord": "com.google.guava:guava:jar:sources:31.0.1-jre",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.errorprone:error_prone_annotations:jar:sources:2.7.1",
"com.google.guava:failureaccess:jar:sources:1.0.1",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"org.checkerframework:checker-qual:jar:sources:3.12.0"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.errorprone:error_prone_annotations:jar:sources:2.7.1",
"com.google.guava:failureaccess:jar:sources:1.0.1",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"org.checkerframework:checker-qual:jar:sources:3.12.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre-sources.jar"
],
"sha256": "fc0fb66f315f10b8713fc43354936d3649a8ad63f789d42fd7c3e55ecf72e092",
"url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre-sources.jar"
},
{
"coord": "com.google.guava:guava:31.0.1-jre",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.7.1",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"org.checkerframework:checker-qual:3.12.0"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.7.1",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"org.checkerframework:checker-qual:3.12.0"
],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar"
],
"sha256": "d5be94d65e87bd219fb3193ad1517baa55a3b88fc91d21cf735826ab5af087b9",
"url": "https://repo1.maven.org/maven2/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar"
},
{
"coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
],
"sha256": "b372a037d4230aa57fbeffdef30fd6123f9c0c2db85d0aced00c91b974f33f99",
"url": "https://repo1.maven.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar"
},
{
"coord": "com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar"
],
"sha256": "ba4df669fec153fa4cd0ef8d02c6d3ef0702b7ac4cabe080facf3b6e490bb972",
"url": "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar"
},
{
"coord": "com.google.j2objc:j2objc-annotations:1.3",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
],
"sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b",
"url": "https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
},
{
"coord": "com.puppycrawl.tools:checkstyle:jar:sources:9.2",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.errorprone:error_prone_annotations:jar:sources:2.7.1",
"com.google.guava:failureaccess:jar:sources:1.0.1",
"com.google.guava:guava:jar:sources:31.0.1-jre",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"commons-beanutils:commons-beanutils:jar:sources:1.9.4",
"commons-collections:commons-collections:jar:sources:3.2.2",
"commons-logging:commons-logging:jar:sources:1.2",
"info.picocli:picocli:jar:sources:4.6.2",
"net.sf.saxon:Saxon-HE:jar:sources:10.6",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.checkerframework:checker-qual:jar:sources:3.12.0",
"org.javassist:javassist:jar:sources:3.28.0-GA",
"org.reflections:reflections:jar:sources:0.10.2",
"org.slf4j:slf4j-api:jar:sources:1.7.32"
],
"directDependencies": [
"com.google.guava:guava:jar:sources:31.0.1-jre",
"commons-beanutils:commons-beanutils:jar:sources:1.9.4",
"info.picocli:picocli:jar:sources:4.6.2",
"net.sf.saxon:Saxon-HE:jar:sources:10.6",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.reflections:reflections:jar:sources:0.10.2"
],
"file": "v1/https/repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/9.2/checkstyle-9.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/9.2/checkstyle-9.2-sources.jar"
],
"sha256": "c689b2e85cd62b1b35e4e3ad48355a0180e103cce4b0ab0342bdf47ed0b76844",
"url": "https://repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/9.2/checkstyle-9.2-sources.jar"
},
{
"coord": "com.puppycrawl.tools:checkstyle:9.2",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.7.1",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:guava:31.0.1-jre",
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"commons-beanutils:commons-beanutils:1.9.4",
"commons-collections:commons-collections:3.2.2",
"commons-logging:commons-logging:1.2",
"info.picocli:picocli:4.6.2",
"net.sf.saxon:Saxon-HE:10.6",
"org.antlr:antlr4-runtime:4.9.3",
"org.checkerframework:checker-qual:3.12.0",
"org.javassist:javassist:3.28.0-GA",
"org.reflections:reflections:0.10.2",
"org.slf4j:slf4j-api:1.7.32"
],
"directDependencies": [
"com.google.guava:guava:31.0.1-jre",
"commons-beanutils:commons-beanutils:1.9.4",
"info.picocli:picocli:4.6.2",
"net.sf.saxon:Saxon-HE:10.6",
"org.antlr:antlr4-runtime:4.9.3",
"org.reflections:reflections:0.10.2"
],
"file": "v1/https/repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/9.2/checkstyle-9.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/9.2/checkstyle-9.2.jar"
],
"sha256": "18545a0dbd6eb267377fd3b6db7f5441d28bf5008de35c530161b14a947dd9bc",
"url": "https://repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/9.2/checkstyle-9.2.jar"
},
{
"coord": "commons-beanutils:commons-beanutils:jar:sources:1.9.4",
"dependencies": [
"commons-collections:commons-collections:jar:sources:3.2.2",
"commons-logging:commons-logging:jar:sources:1.2"
],
"directDependencies": [
"commons-collections:commons-collections:jar:sources:3.2.2",
"commons-logging:commons-logging:jar:sources:1.2"
],
"file": "v1/https/repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4-sources.jar"
],
"sha256": "132c9cee7ad5045766b76e17cbf23293c873d55f041fabf0e2c3d2168efce696",
"url": "https://repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4-sources.jar"
},
{
"coord": "commons-beanutils:commons-beanutils:1.9.4",
"dependencies": [
"commons-collections:commons-collections:3.2.2",
"commons-logging:commons-logging:1.2"
],
"directDependencies": [
"commons-collections:commons-collections:3.2.2",
"commons-logging:commons-logging:1.2"
],
"file": "v1/https/repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar"
],
"sha256": "7d938c81789028045c08c065e94be75fc280527620d5bd62b519d5838532368a",
"url": "https://repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar"
},
{
"coord": "commons-collections:commons-collections:jar:sources:3.2.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2-sources.jar"
],
"sha256": "a5b5ee16a02edadf7fe637f250217c19878bc6134f15eb55635c48996f6fed1d",
"url": "https://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2-sources.jar"
},
{
"coord": "commons-collections:commons-collections:3.2.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar"
],
"sha256": "eeeae917917144a68a741d4c0dff66aa5c5c5fd85593ff217bced3fc8ca783b8",
"url": "https://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar"
},
{
"coord": "commons-io:commons-io:jar:sources:2.6",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar"
],
"sha256": "71bc251eb4bd011b60b5ce6adc8f473de10e4851207a40c14434604b288b31bf",
"url": "https://repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6-sources.jar"
},
{
"coord": "commons-io:commons-io:2.6",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar"
],
"sha256": "f877d304660ac2a142f3865badfc971dec7ed73c747c7f8d5d2f5139ca736513",
"url": "https://repo1.maven.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar"
},
{
"coord": "commons-logging:commons-logging:jar:sources:1.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar"
],
"sha256": "44347acfe5860461728e9cb33251e97345be36f8a0dfd5c5130c172559455f41",
"url": "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2-sources.jar"
},
{
"coord": "commons-logging:commons-logging:1.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
],
"sha256": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636",
"url": "https://repo1.maven.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"
},
{
"coord": "info.picocli:picocli:jar:sources:4.6.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2-sources.jar"
],
"sha256": "b97a06bed7e06c4c07341e432d7ecf6e9b5623163949fefbd1ec77c82472bb72",
"url": "https://repo1.maven.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2-sources.jar"
},
{
"coord": "info.picocli:picocli:4.6.2",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/repo1.maven.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.jar"
],
"sha256": "4754d96eaf5314f35a287da5c67848b285067868fca6d1f5121a74f67f065b61",
"url": "https://repo1.maven.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.jar"
},
{
"coord": "jaxen:jaxen:jar:sources:1.2.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0-sources.jar"
],
"sha256": "b028d7872b7cb61b2b3a9227c2f8bd83a180a3550a3e8d6cc6d5e3afd39ca94b",
"url": "https://repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0-sources.jar"
},
{
"coord": "jaxen:jaxen:1.2.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar"
],
"sha256": "70feef9dd75ad064def05a3ce8975aeba515ee7d1be146d12199c8828a64174c",
"url": "https://repo1.maven.org/maven2/jaxen/jaxen/1.2.0/jaxen-1.2.0.jar"
},
{
"coord": "junit:junit:jar:sources:4.13.2",
"dependencies": [
"org.hamcrest:hamcrest-core:jar:sources:1.3"
],
"directDependencies": [
"org.hamcrest:hamcrest-core:jar:sources:1.3"
],
"file": "v1/https/repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2-sources.jar"
],
"sha256": "34181df6482d40ea4c046b063cb53c7ffae94bdf1b1d62695bdf3adf9dea7e3a",
"url": "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2-sources.jar"
},
{
"coord": "junit:junit:4.13.2",
"dependencies": [
"org.hamcrest:hamcrest-core:1.3"
],
"directDependencies": [
"org.hamcrest:hamcrest-core:1.3"
],
"file": "v1/https/repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar"
],
"sha256": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3",
"url": "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar"
},
{
"coord": "net.jcip:jcip-annotations:jar:sources:1.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0-sources.jar"
],
"sha256": "e3ad6ae439e3cf8a25372de838efaa1a95f8ef9b5053d5d94fafe89c8c09814e",
"url": "https://repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0-sources.jar"
},
{
"coord": "net.jcip:jcip-annotations:1.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar"
],
"sha256": "be5805392060c71474bf6c9a67a099471274d30b83eef84bfc4e0889a4f1dcc0",
"url": "https://repo1.maven.org/maven2/net/jcip/jcip-annotations/1.0/jcip-annotations-1.0.jar"
},
{
"coord": "net.sf.saxon:Saxon-HE:jar:sources:10.6",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6-sources.jar"
],
"sha256": "c8c7158296c5c57d4eddc2004b9d1871da338769e95dcc0004ef7a3de08e60da",
"url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6-sources.jar"
},
{
"coord": "net.sf.saxon:Saxon-HE:10.6",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.slf4j:slf4j-api"
],
"file": "v1/https/repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar"
],
"sha256": "6d08df82e4ed86b6abb1a02c7b74a268fcfc5e004e83bb4ff006ec3a509bd356",
"url": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"dependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.ow2.asm:asm:jar:sources:9.2"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-core/6.41.0/pmd-core-6.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-core/6.41.0/pmd-core-6.41.0-sources.jar"
],
"sha256": "e74b3a18ece9bcc270abe30ca4dac33fb08b059955db5fc701ebe10afbe8eda7",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-core/6.41.0/pmd-core-6.41.0-sources.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-core:6.41.0",
"dependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.ow2.asm:asm:9.2"
],
"directDependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.ow2.asm:asm:9.2"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-core/6.41.0/pmd-core-6.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-core/6.41.0/pmd-core-6.41.0.jar"
],
"sha256": "1bd8d04e895c094c7adaea83a0156a43b2d851c1369399bc354621af6642c035",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-core/6.41.0/pmd-core-6.41.0.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-cpp:jar:sources:6.41.0",
"dependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cpp/6.41.0/pmd-cpp-6.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cpp/6.41.0/pmd-cpp-6.41.0-sources.jar"
],
"sha256": "1ade1e24a6916608f073026dbe6318b51a6172585680adedf0e32c8d0ca13913",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cpp/6.41.0/pmd-cpp-6.41.0-sources.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-cpp:6.41.0",
"dependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.pmd:pmd-core:6.41.0",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.ow2.asm:asm:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:6.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cpp/6.41.0/pmd-cpp-6.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cpp/6.41.0/pmd-cpp-6.41.0.jar"
],
"sha256": "f4755fa3e3438a92b3c7712a059c529a569d0d8d8bbe6740cd9af5439de5bf5c",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cpp/6.41.0/pmd-cpp-6.41.0.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-cs:jar:sources:6.41.0",
"dependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"org.antlr:antlr4-runtime:jar:sources:4.9.3"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cs/6.41.0/pmd-cs-6.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cs/6.41.0/pmd-cs-6.41.0-sources.jar"
],
"sha256": "197a3822a4d43be44a4a0331f125672b66f60efb8f6af166e4e36355035d5938",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cs/6.41.0/pmd-cs-6.41.0-sources.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-cs:6.41.0",
"dependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.pmd:pmd-core:6.41.0",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.ow2.asm:asm:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:6.41.0",
"org.antlr:antlr4-runtime:4.9.3"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cs/6.41.0/pmd-cs-6.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cs/6.41.0/pmd-cs-6.41.0.jar"
],
"sha256": "f09014fb13177700e2581a2d4bdc0720091c8cd6a22a356b1ffdde400a1f28f6",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-cs/6.41.0/pmd-cs-6.41.0.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-dart:jar:sources:6.41.0",
"dependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"org.antlr:antlr4-runtime:jar:sources:4.9.3"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dart/6.41.0/pmd-dart-6.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dart/6.41.0/pmd-dart-6.41.0-sources.jar"
],
"sha256": "b5f39e439a11d414a352a82b571575bfa75734a8bbeb7c912d1733e084f5b9d1",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dart/6.41.0/pmd-dart-6.41.0-sources.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-dart:6.41.0",
"dependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.pmd:pmd-core:6.41.0",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.ow2.asm:asm:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:6.41.0",
"org.antlr:antlr4-runtime:4.9.3"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dart/6.41.0/pmd-dart-6.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dart/6.41.0/pmd-dart-6.41.0.jar"
],
"sha256": "9e614b82d7ca565aa982f9dbeee7a52eca3f8738f16a1aba410e031e783633da",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dart/6.41.0/pmd-dart-6.41.0.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-dist:jar:sources:6.41.0",
"dependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-cpp:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-cs:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-dart:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-fortran:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-go:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-groovy:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-java:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-jsp:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-kotlin:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-lua:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-matlab:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-modelica:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-objectivec:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-perl:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-php:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-plsql:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-python:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-ruby:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-swift:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-vm:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-xml:jar:sources:6.41.0",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.codehaus.groovy:groovy:jar:sources:2.4.21",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-cpp:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-cs:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-dart:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-fortran:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-go:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-groovy:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-java:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-jsp:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-kotlin:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-lua:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-matlab:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-modelica:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-objectivec:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-perl:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-php:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-plsql:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-python:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-ruby:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-swift:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-vm:jar:sources:6.41.0",
"net.sourceforge.pmd:pmd-xml:jar:sources:6.41.0",
"org.apache.commons:commons-lang3:jar:sources:3.12.0"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dist/6.41.0/pmd-dist-6.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dist/6.41.0/pmd-dist-6.41.0-sources.jar"
],
"sha256": "d596b1c2a807ef3b78614fed6e5972df44e575d5aab31ccaa82c4466b387129e",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dist/6.41.0/pmd-dist-6.41.0-sources.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-dist:6.41.0",
"dependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.pmd:pmd-core:6.41.0",
"net.sourceforge.pmd:pmd-cpp:6.41.0",
"net.sourceforge.pmd:pmd-cs:6.41.0",
"net.sourceforge.pmd:pmd-dart:6.41.0",
"net.sourceforge.pmd:pmd-fortran:6.41.0",
"net.sourceforge.pmd:pmd-go:6.41.0",
"net.sourceforge.pmd:pmd-groovy:6.41.0",
"net.sourceforge.pmd:pmd-java:6.41.0",
"net.sourceforge.pmd:pmd-jsp:6.41.0",
"net.sourceforge.pmd:pmd-kotlin:6.41.0",
"net.sourceforge.pmd:pmd-lua:6.41.0",
"net.sourceforge.pmd:pmd-matlab:6.41.0",
"net.sourceforge.pmd:pmd-modelica:6.41.0",
"net.sourceforge.pmd:pmd-objectivec:6.41.0",
"net.sourceforge.pmd:pmd-perl:6.41.0",
"net.sourceforge.pmd:pmd-php:6.41.0",
"net.sourceforge.pmd:pmd-plsql:6.41.0",
"net.sourceforge.pmd:pmd-python:6.41.0",
"net.sourceforge.pmd:pmd-ruby:6.41.0",
"net.sourceforge.pmd:pmd-swift:6.41.0",
"net.sourceforge.pmd:pmd-vm:6.41.0",
"net.sourceforge.pmd:pmd-xml:6.41.0",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.codehaus.groovy:groovy:2.4.21",
"org.ow2.asm:asm:9.2"
],
"directDependencies": [
"commons-io:commons-io:2.6",
"net.sourceforge.pmd:pmd-core:6.41.0",
"net.sourceforge.pmd:pmd-cpp:6.41.0",
"net.sourceforge.pmd:pmd-cs:6.41.0",
"net.sourceforge.pmd:pmd-dart:6.41.0",
"net.sourceforge.pmd:pmd-fortran:6.41.0",
"net.sourceforge.pmd:pmd-go:6.41.0",
"net.sourceforge.pmd:pmd-groovy:6.41.0",
"net.sourceforge.pmd:pmd-java:6.41.0",
"net.sourceforge.pmd:pmd-jsp:6.41.0",
"net.sourceforge.pmd:pmd-kotlin:6.41.0",
"net.sourceforge.pmd:pmd-lua:6.41.0",
"net.sourceforge.pmd:pmd-matlab:6.41.0",
"net.sourceforge.pmd:pmd-modelica:6.41.0",
"net.sourceforge.pmd:pmd-objectivec:6.41.0",
"net.sourceforge.pmd:pmd-perl:6.41.0",
"net.sourceforge.pmd:pmd-php:6.41.0",
"net.sourceforge.pmd:pmd-plsql:6.41.0",
"net.sourceforge.pmd:pmd-python:6.41.0",
"net.sourceforge.pmd:pmd-ruby:6.41.0",
"net.sourceforge.pmd:pmd-swift:6.41.0",
"net.sourceforge.pmd:pmd-vm:6.41.0",
"net.sourceforge.pmd:pmd-xml:6.41.0",
"org.apache.commons:commons-lang3:3.12.0"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dist/6.41.0/pmd-dist-6.41.0.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dist/6.41.0/pmd-dist-6.41.0.jar"
],
"sha256": "b3be97b833c8f2e1ea2f93a816cfb059287b4c28e555c188f288354dccb9d8b3",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-dist/6.41.0/pmd-dist-6.41.0.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-fortran:jar:sources:6.41.0",
"dependencies": [
"com.beust:jcommander:jar:sources:1.48",
"com.google.code.gson:gson:jar:sources:2.8.9",
"commons-io:commons-io:jar:sources:2.6",
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0",
"net.sourceforge.saxon:saxon:jar:sources:9.1.0.8",
"org.antlr:antlr4-runtime:jar:sources:4.9.3",
"org.apache.commons:commons-lang3:jar:sources:3.12.0",
"org.ow2.asm:asm:jar:sources:9.2"
],
"directDependencies": [
"net.sourceforge.pmd:pmd-core:jar:sources:6.41.0"
],
"file": "v1/https/repo1.maven.org/maven2/net/sourceforge/pmd/pmd-fortran/6.41.0/pmd-fortran-6.41.0-sources.jar",
"mirror_urls": [
"https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-fortran/6.41.0/pmd-fortran-6.41.0-sources.jar"
],
"sha256": "2d54c9117dd437beb7e4f0d0fe16567380151dbe96310a4e508799aaf12eeb3c",
"url": "https://repo1.maven.org/maven2/net/sourceforge/pmd/pmd-fortran/6.41.0/pmd-fortran-6.41.0-sources.jar"
},
{
"coord": "net.sourceforge.pmd:pmd-fortran:6.41.0",
"dependencies": [
"com.beust:jcommander:1.48",
"com.google.code.gson:gson:2.8.9",
"commons-io:commons-io:2.6",
"net.sourceforge.pmd:pmd-core:6.41.0",
"net.sourceforge.saxon:saxon:9.1.0.8",
"net.sourceforge.saxon:saxon:jar:dom:9.1.0.8",
"org.antlr:antlr4-runtime:4.9.3",
"org.apache.commons:commons-lang3:3.12.0",
"org.ow2.asm:asm:9.2"
],