forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaven_install.json
More file actions
6810 lines (6810 loc) · 428 KB
/
Copy pathmaven_install.json
File metadata and controls
6810 lines (6810 loc) · 428 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"dependency_tree": {
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": 2137188328,
"conflict_resolution": {},
"dependencies": [
{
"coord": "aopalliance:aopalliance:1.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
"https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
"https://maven.google.com/aopalliance/aopalliance/1.0/aopalliance-1.0.jar",
"https://repo.spring.io/libs-snapshot/aopalliance/aopalliance/1.0/aopalliance-1.0.jar"
],
"sha256": "0addec670fedcd3f113c5c8091d783280d23f75e3acb841b61a9cdb079376a08",
"url": "https://jcenter.bintray.com/aopalliance/aopalliance/1.0/aopalliance-1.0.jar"
},
{
"coord": "aopalliance:aopalliance:jar:sources:1.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar",
"https://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar",
"https://maven.google.com/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar",
"https://repo.spring.io/libs-snapshot/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar"
],
"sha256": "e6ef91d439ada9045f419c77543ebe0416c3cdfc5b063448343417a3e4a72123",
"url": "https://jcenter.bintray.com/aopalliance/aopalliance/1.0/aopalliance-1.0-sources.jar"
},
{
"coord": "com.barchart.udt:barchart-udt-bundle:2.3.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0.jar",
"https://repo1.maven.org/maven2/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0.jar",
"https://maven.google.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0.jar",
"https://repo.spring.io/libs-snapshot/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0.jar"
],
"sha256": "e7fc65e66d3d5103a4acc810d4715c5075351b32c6c2f5defd43c549896113ad",
"url": "https://jcenter.bintray.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0.jar"
},
{
"coord": "com.barchart.udt:barchart-udt-bundle:jar:sources:2.3.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0-sources.jar",
"https://repo1.maven.org/maven2/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0-sources.jar",
"https://maven.google.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0-sources.jar",
"https://repo.spring.io/libs-snapshot/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0-sources.jar"
],
"sha256": "6966caa1eb285cbbe6a869645eb55c708ff4e2867131aeffa619f46021c3d1de",
"url": "https://jcenter.bintray.com/com/barchart/udt/barchart-udt-bundle/2.3.0/barchart-udt-bundle-2.3.0-sources.jar"
},
{
"coord": "com.beust:jcommander:1.78",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/beust/jcommander/1.78/jcommander-1.78.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/beust/jcommander/1.78/jcommander-1.78.jar",
"https://repo1.maven.org/maven2/com/beust/jcommander/1.78/jcommander-1.78.jar",
"https://maven.google.com/com/beust/jcommander/1.78/jcommander-1.78.jar",
"https://repo.spring.io/libs-snapshot/com/beust/jcommander/1.78/jcommander-1.78.jar"
],
"sha256": "7891debb84b5f83e9bd57593ebece3399abbe0fd938cf306b3534c57913b9615",
"url": "https://jcenter.bintray.com/com/beust/jcommander/1.78/jcommander-1.78.jar"
},
{
"coord": "com.beust:jcommander:jar:sources:1.78",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/beust/jcommander/1.78/jcommander-1.78-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/beust/jcommander/1.78/jcommander-1.78-sources.jar",
"https://repo1.maven.org/maven2/com/beust/jcommander/1.78/jcommander-1.78-sources.jar",
"https://maven.google.com/com/beust/jcommander/1.78/jcommander-1.78-sources.jar",
"https://repo.spring.io/libs-snapshot/com/beust/jcommander/1.78/jcommander-1.78-sources.jar"
],
"sha256": "9e2aee95666a586918d0931bd1bee02628167da907e6adab86489708bbf2b39a",
"url": "https://jcenter.bintray.com/com/beust/jcommander/1.78/jcommander-1.78-sources.jar"
},
{
"coord": "com.github.javaparser:javaparser-core:3.16.1",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1.jar",
"https://repo1.maven.org/maven2/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1.jar",
"https://maven.google.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1.jar",
"https://repo.spring.io/libs-snapshot/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1.jar"
],
"sha256": "2d102b789d6d85849376336491ad8a83bee6e0ac9aecfdcc231dbdf95a12e834",
"url": "https://jcenter.bintray.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1.jar"
},
{
"coord": "com.github.javaparser:javaparser-core:jar:sources:3.16.1",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1-sources.jar",
"https://repo1.maven.org/maven2/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1-sources.jar",
"https://maven.google.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1-sources.jar",
"https://repo.spring.io/libs-snapshot/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1-sources.jar"
],
"sha256": "7cfd90d933402bae710237d8c17dbee3c77a86ccbf4614d33d24f5d7f7ba5045",
"url": "https://jcenter.bintray.com/com/github/javaparser/javaparser-core/3.16.1/javaparser-core-3.16.1-sources.jar"
},
{
"coord": "com.github.spotbugs:spotbugs-annotations:4.1.3",
"dependencies": [
"com.google.code.findbugs:jsr305:3.0.2"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:3.0.2"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3.jar",
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3.jar",
"https://maven.google.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3.jar",
"https://repo.spring.io/libs-snapshot/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3.jar"
],
"sha256": "d11139edf901fe95d7515f495e617df135d50341ded53ff5956eff899feafb2b",
"url": "https://jcenter.bintray.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3.jar"
},
{
"coord": "com.github.spotbugs:spotbugs-annotations:jar:sources:4.1.3",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3-sources.jar",
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3-sources.jar",
"https://maven.google.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3-sources.jar",
"https://repo.spring.io/libs-snapshot/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3-sources.jar"
],
"sha256": "b338136e3e82d585348cde58a8fe3a678e16f51a35c31c1463e05fefef557aad",
"url": "https://jcenter.bintray.com/com/github/spotbugs/spotbugs-annotations/4.1.3/spotbugs-annotations-4.1.3-sources.jar"
},
{
"coord": "com.github.spotbugs:spotbugs:4.1.3",
"dependencies": [
"org.ow2.asm:asm-tree:8.0.1",
"org.ow2.asm:asm-commons:8.0.1",
"org.ow2.asm:asm:8.0.1",
"com.google.code.findbugs:jsr305:3.0.2",
"net.sf.saxon:Saxon-HE:10.1",
"org.json:json:20200518",
"net.jcip:jcip-annotations:1.0",
"org.slf4j:slf4j-api:1.8.0-beta4",
"org.apache.commons:commons-text:1.9",
"org.apache.commons:commons-lang3:3.11",
"org.apache.bcel:bcel:6.5.0",
"org.ow2.asm:asm-analysis:8.0.1",
"org.ow2.asm:asm-util:8.0.1",
"jaxen:jaxen:1.1.6",
"com.github.spotbugs:spotbugs-annotations:4.1.3",
"org.dom4j:dom4j:2.1.3"
],
"directDependencies": [
"org.ow2.asm:asm-tree:8.0.1",
"org.ow2.asm:asm-commons:8.0.1",
"org.ow2.asm:asm:8.0.1",
"net.sf.saxon:Saxon-HE:10.1",
"org.json:json:20200518",
"net.jcip:jcip-annotations:1.0",
"org.slf4j:slf4j-api:1.8.0-beta4",
"org.apache.commons:commons-text:1.9",
"org.apache.commons:commons-lang3:3.11",
"org.apache.bcel:bcel:6.5.0",
"org.ow2.asm:asm-analysis:8.0.1",
"org.ow2.asm:asm-util:8.0.1",
"jaxen:jaxen:1.1.6",
"com.github.spotbugs:spotbugs-annotations:4.1.3",
"org.dom4j:dom4j:2.1.3"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3.jar",
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3.jar",
"https://maven.google.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3.jar",
"https://repo.spring.io/libs-snapshot/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3.jar"
],
"sha256": "b8e89b98c63563ba449941795b67fd96d00f7da910748a682ecb9425d3a03ca2",
"url": "https://jcenter.bintray.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3.jar"
},
{
"coord": "com.github.spotbugs:spotbugs:jar:sources:4.1.3",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"org.json:json:jar:sources:20200518",
"org.ow2.asm:asm-commons:jar:sources:8.0.1",
"org.apache.commons:commons-lang3:jar:sources:3.11",
"net.jcip:jcip-annotations:jar:sources:1.0",
"jaxen:jaxen:jar:sources:1.1.6",
"com.github.spotbugs:spotbugs-annotations:jar:sources:4.1.3",
"net.sf.saxon:Saxon-HE:jar:sources:10.1",
"org.ow2.asm:asm:jar:sources:8.0.1",
"org.slf4j:slf4j-api:jar:sources:1.8.0-beta4",
"org.dom4j:dom4j:jar:sources:2.1.3",
"org.apache.commons:commons-text:jar:sources:1.9",
"org.ow2.asm:asm-tree:jar:sources:8.0.1",
"org.ow2.asm:asm-util:jar:sources:8.0.1",
"org.ow2.asm:asm-analysis:jar:sources:8.0.1",
"org.apache.bcel:bcel:jar:sources:6.5.0"
],
"directDependencies": [
"org.json:json:jar:sources:20200518",
"org.ow2.asm:asm-commons:jar:sources:8.0.1",
"org.apache.commons:commons-lang3:jar:sources:3.11",
"net.jcip:jcip-annotations:jar:sources:1.0",
"jaxen:jaxen:jar:sources:1.1.6",
"com.github.spotbugs:spotbugs-annotations:jar:sources:4.1.3",
"net.sf.saxon:Saxon-HE:jar:sources:10.1",
"org.ow2.asm:asm:jar:sources:8.0.1",
"org.slf4j:slf4j-api:jar:sources:1.8.0-beta4",
"org.dom4j:dom4j:jar:sources:2.1.3",
"org.apache.commons:commons-text:jar:sources:1.9",
"org.ow2.asm:asm-tree:jar:sources:8.0.1",
"org.ow2.asm:asm-util:jar:sources:8.0.1",
"org.ow2.asm:asm-analysis:jar:sources:8.0.1",
"org.apache.bcel:bcel:jar:sources:6.5.0"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3-sources.jar",
"https://repo1.maven.org/maven2/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3-sources.jar",
"https://maven.google.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3-sources.jar",
"https://repo.spring.io/libs-snapshot/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3-sources.jar"
],
"sha256": "dc5821a26467927527cc56dc461ef90121afc66343f8dcce525edb2e03f04330",
"url": "https://jcenter.bintray.com/com/github/spotbugs/spotbugs/4.1.3/spotbugs-4.1.3-sources.jar"
},
{
"coord": "com.google.auto.service:auto-service-annotations:1.0-rc7",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7.jar",
"https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7.jar",
"https://maven.google.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7.jar",
"https://repo.spring.io/libs-snapshot/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7.jar"
],
"sha256": "986dc826fa0a43bf9f04194c1a8667774f4f44190ec816b08554b47891ba5459",
"url": "https://jcenter.bintray.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7.jar"
},
{
"coord": "com.google.auto.service:auto-service-annotations:jar:sources:1.0-rc7",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7-sources.jar",
"https://repo1.maven.org/maven2/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7-sources.jar",
"https://maven.google.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7-sources.jar"
],
"sha256": "0cb604b1ddea687434e7b3908079ad9e261adaeff398e4374f81b6f06cceee58",
"url": "https://jcenter.bintray.com/com/google/auto/service/auto-service-annotations/1.0-rc7/auto-service-annotations-1.0-rc7-sources.jar"
},
{
"coord": "com.google.auto.service:auto-service:1.0-rc7",
"dependencies": [
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.auto:auto-common:0.11",
"com.google.auto.service:auto-service-annotations:1.0-rc7",
"com.google.errorprone:error_prone_annotations:2.3.4",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:guava:29.0-jre",
"org.checkerframework:checker-qual:2.11.1"
],
"directDependencies": [
"com.google.auto:auto-common:0.11",
"com.google.auto.service:auto-service-annotations:1.0-rc7",
"com.google.guava:guava:29.0-jre"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7.jar",
"https://repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7.jar",
"https://maven.google.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7.jar",
"https://repo.spring.io/libs-snapshot/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7.jar"
],
"sha256": "24f13c98baf5fb87e7502fd87130457941cda405ec6ff28d8ff964a8f58a82ed",
"url": "https://jcenter.bintray.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7.jar"
},
{
"coord": "com.google.auto.service:auto-service:jar:sources:1.0-rc7",
"dependencies": [
"com.google.auto.service:auto-service-annotations:jar:sources:1.0-rc7",
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"com.google.guava:guava:jar:sources:29.0-jre",
"org.checkerframework:checker-qual:jar:sources:2.11.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.3.4",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.guava:failureaccess:jar:sources:1.0.1",
"com.google.auto:auto-common:jar:sources:0.11"
],
"directDependencies": [
"com.google.auto:auto-common:jar:sources:0.11",
"com.google.auto.service:auto-service-annotations:jar:sources:1.0-rc7",
"com.google.guava:guava:jar:sources:29.0-jre"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7-sources.jar",
"https://repo1.maven.org/maven2/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7-sources.jar",
"https://maven.google.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7-sources.jar"
],
"sha256": "d2913d4efac3c5206141a121085a22e2944495ada3fd2525680b55f10a0549d3",
"url": "https://jcenter.bintray.com/com/google/auto/service/auto-service/1.0-rc7/auto-service-1.0-rc7-sources.jar"
},
{
"coord": "com.google.auto:auto-common:0.11",
"dependencies": [
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.3.4",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:guava:29.0-jre",
"org.checkerframework:checker-qual:2.11.1"
],
"directDependencies": [
"com.google.guava:guava:29.0-jre"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/auto/auto-common/0.11/auto-common-0.11.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/auto/auto-common/0.11/auto-common-0.11.jar",
"https://repo1.maven.org/maven2/com/google/auto/auto-common/0.11/auto-common-0.11.jar",
"https://maven.google.com/com/google/auto/auto-common/0.11/auto-common-0.11.jar",
"https://repo.spring.io/libs-snapshot/com/google/auto/auto-common/0.11/auto-common-0.11.jar"
],
"sha256": "ec668cd50a3a66a5def17e6ae67423542e514181c0e9ab5b11959c0ac9c4222a",
"url": "https://jcenter.bintray.com/com/google/auto/auto-common/0.11/auto-common-0.11.jar"
},
{
"coord": "com.google.auto:auto-common:jar:sources:0.11",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"com.google.guava:guava:jar:sources:29.0-jre",
"org.checkerframework:checker-qual:jar:sources:2.11.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.3.4",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.guava:failureaccess:jar:sources:1.0.1"
],
"directDependencies": [
"com.google.guava:guava:jar:sources:29.0-jre"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/auto/auto-common/0.11/auto-common-0.11-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/auto/auto-common/0.11/auto-common-0.11-sources.jar",
"https://repo1.maven.org/maven2/com/google/auto/auto-common/0.11/auto-common-0.11-sources.jar",
"https://maven.google.com/com/google/auto/auto-common/0.11/auto-common-0.11-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/auto/auto-common/0.11/auto-common-0.11-sources.jar"
],
"sha256": "e440a254ac99f10b3015539187d5b6a840cfddcfccbf6f42328ca13314da0f9c",
"url": "https://jcenter.bintray.com/com/google/auto/auto-common/0.11/auto-common-0.11-sources.jar"
},
{
"coord": "com.google.code.findbugs:jsr305:3.0.2",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar",
"https://repo.spring.io/libs-snapshot/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
],
"sha256": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7",
"url": "https://jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar"
},
{
"coord": "com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar",
"https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar",
"https://maven.google.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar"
],
"sha256": "1c9e85e272d0708c6a591dc74828c71603053b48cc75ae83cce56912a2aa063b",
"url": "https://jcenter.bintray.com/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2-sources.jar"
},
{
"coord": "com.google.code.gson:gson:2.8.6",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar",
"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar",
"https://maven.google.com/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar",
"https://repo.spring.io/libs-snapshot/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar"
],
"sha256": "c8fb4839054d280b3033f800d1f5a97de2f028eb8ba2eb458ad287e536f3f25f",
"url": "https://jcenter.bintray.com/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar"
},
{
"coord": "com.google.code.gson:gson:jar:sources:2.8.6",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/code/gson/gson/2.8.6/gson-2.8.6-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/code/gson/gson/2.8.6/gson-2.8.6-sources.jar",
"https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6-sources.jar",
"https://maven.google.com/com/google/code/gson/gson/2.8.6/gson-2.8.6-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/code/gson/gson/2.8.6/gson-2.8.6-sources.jar"
],
"sha256": "da4d787939dc8de214724a20d88614b70ef8c3a4931d9c694300b5d9098ed9bc",
"url": "https://jcenter.bintray.com/com/google/code/gson/gson/2.8.6/gson-2.8.6-sources.jar"
},
{
"coord": "com.google.errorprone:error_prone_annotations:2.3.4",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar",
"https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar",
"https://maven.google.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar",
"https://repo.spring.io/libs-snapshot/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar"
],
"sha256": "baf7d6ea97ce606c53e11b6854ba5f2ce7ef5c24dddf0afa18d1260bd25b002c",
"url": "https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar"
},
{
"coord": "com.google.errorprone:error_prone_annotations:jar:sources:2.3.4",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4-sources.jar",
"https://repo1.maven.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4-sources.jar",
"https://maven.google.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4-sources.jar"
],
"sha256": "0b1011d1e2ea2eab35a545cffd1cff3877f131134c8020885e8eaf60a7d72f91",
"url": "https://jcenter.bintray.com/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4-sources.jar"
},
{
"coord": "com.google.guava:failureaccess:1.0.1",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar",
"https://repo.spring.io/libs-snapshot/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
],
"sha256": "a171ee4c734dd2da837e4b16be9df4661afab72a41adaf31eb84dfdaf936ca26",
"url": "https://jcenter.bintray.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"
},
{
"coord": "com.google.guava:failureaccess:jar:sources:1.0.1",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar",
"https://repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar",
"https://maven.google.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar"
],
"sha256": "092346eebbb1657b51aa7485a246bf602bb464cc0b0e2e1c7e7201fadce1e98f",
"url": "https://jcenter.bintray.com/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1-sources.jar"
},
{
"coord": "com.google.guava:guava:29.0-jre",
"dependencies": [
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.3.4",
"com.google.guava:failureaccess:1.0.1",
"org.checkerframework:checker-qual:2.11.1"
],
"directDependencies": [
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.errorprone:error_prone_annotations:2.3.4",
"com.google.guava:failureaccess:1.0.1",
"org.checkerframework:checker-qual:2.11.1"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar",
"https://repo1.maven.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar",
"https://maven.google.com/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar",
"https://repo.spring.io/libs-snapshot/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar"
],
"sha256": "b22c5fb66d61e7b9522531d04b2f915b5158e80aa0b40ee7282c8bfb07b0da25",
"url": "https://jcenter.bintray.com/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar"
},
{
"coord": "com.google.guava:guava:jar:sources:29.0-jre",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"org.checkerframework:checker-qual:jar:sources:2.11.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.3.4",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.guava:failureaccess:jar:sources:1.0.1"
],
"directDependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"org.checkerframework:checker-qual:jar:sources:2.11.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.3.4",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.guava:failureaccess:jar:sources:1.0.1"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar",
"https://repo1.maven.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar",
"https://maven.google.com/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar"
],
"sha256": "cfcbe29dd5125f5b360370b4ecd7f7ef44fba68f4f037e90bce7315682afc0ea",
"url": "https://jcenter.bintray.com/com/google/guava/guava/29.0-jre/guava-29.0-jre-sources.jar"
},
{
"coord": "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/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://jcenter.bintray.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
"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",
"https://maven.google.com/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar",
"https://repo.spring.io/libs-snapshot/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://jcenter.bintray.com/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.inject:guice:jar:no_aop:4.2.2",
"dependencies": [
"com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.j2objc:j2objc-annotations:1.3",
"com.google.code.findbugs:jsr305:3.0.2",
"aopalliance:aopalliance:1.0",
"com.google.errorprone:error_prone_annotations:2.3.4",
"com.google.guava:failureaccess:1.0.1",
"com.google.guava:guava:29.0-jre",
"javax.inject:javax.inject:1",
"org.checkerframework:checker-qual:2.11.1"
],
"directDependencies": [
"aopalliance:aopalliance:1.0",
"com.google.guava:guava:29.0-jre",
"javax.inject:javax.inject:1"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/inject/guice/4.2.2/guice-4.2.2-no_aop.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/inject/guice/4.2.2/guice-4.2.2-no_aop.jar",
"https://repo1.maven.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2-no_aop.jar",
"https://maven.google.com/com/google/inject/guice/4.2.2/guice-4.2.2-no_aop.jar",
"https://repo.spring.io/libs-snapshot/com/google/inject/guice/4.2.2/guice-4.2.2-no_aop.jar"
],
"sha256": "0f4f5fb28609a4d2b38b7f7128be7cf9b541f25283d71b4e56066d99683aafff",
"url": "https://jcenter.bintray.com/com/google/inject/guice/4.2.2/guice-4.2.2-no_aop.jar"
},
{
"coord": "com.google.inject:guice:jar:sources:4.2.2",
"dependencies": [
"com.google.code.findbugs:jsr305:jar:sources:3.0.2",
"com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"com.google.guava:guava:jar:sources:29.0-jre",
"org.checkerframework:checker-qual:jar:sources:2.11.1",
"com.google.errorprone:error_prone_annotations:jar:sources:2.3.4",
"aopalliance:aopalliance:jar:sources:1.0",
"javax.inject:javax.inject:jar:sources:1",
"com.google.guava:listenablefuture:jar:sources:9999.0-empty-to-avoid-conflict-with-guava",
"com.google.guava:failureaccess:jar:sources:1.0.1"
],
"directDependencies": [
"aopalliance:aopalliance:jar:sources:1.0",
"com.google.guava:guava:jar:sources:29.0-jre",
"javax.inject:javax.inject:jar:sources:1"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar",
"https://repo1.maven.org/maven2/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar",
"https://maven.google.com/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar"
],
"sha256": "33ecda71a3876dcc2b9d16b4a5a67d08078db5fedd61ce51c74db734889cd049",
"url": "https://jcenter.bintray.com/com/google/inject/guice/4.2.2/guice-4.2.2-sources.jar"
},
{
"coord": "com.google.j2objc:j2objc-annotations:1.3",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
"https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
"https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar",
"https://repo.spring.io/libs-snapshot/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
],
"sha256": "21af30c92267bd6122c0e0b4d20cccb6641a37eaf956c6540ec471d584e64a7b",
"url": "https://jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar"
},
{
"coord": "com.google.j2objc:j2objc-annotations:jar:sources:1.3",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar",
"https://repo1.maven.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar",
"https://maven.google.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar",
"https://repo.spring.io/libs-snapshot/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar"
],
"sha256": "ba4df669fec153fa4cd0ef8d02c6d3ef0702b7ac4cabe080facf3b6e490bb972",
"url": "https://jcenter.bintray.com/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3-sources.jar"
},
{
"coord": "com.graphql-java:graphql-java:15.0",
"dependencies": [
"org.slf4j:slf4j-api:1.8.0-beta4",
"com.graphql-java:java-dataloader:2.2.3",
"org.reactivestreams:reactive-streams:1.0.3",
"org.antlr:antlr4-runtime:4.7.2"
],
"directDependencies": [
"com.graphql-java:java-dataloader:2.2.3",
"org.antlr:antlr4-runtime:4.7.2",
"org.reactivestreams:reactive-streams:1.0.3",
"org.slf4j:slf4j-api:1.8.0-beta4"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0.jar",
"https://repo1.maven.org/maven2/com/graphql-java/graphql-java/15.0/graphql-java-15.0.jar",
"https://maven.google.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0.jar",
"https://repo.spring.io/libs-snapshot/com/graphql-java/graphql-java/15.0/graphql-java-15.0.jar"
],
"sha256": "b10bbca361db8bd04ff7391cbfa3cdb57f109b88b397b4e1634cbb8b7e36f4be",
"url": "https://jcenter.bintray.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0.jar"
},
{
"coord": "com.graphql-java:graphql-java:jar:sources:15.0",
"dependencies": [
"org.antlr:antlr4-runtime:jar:sources:4.7.2",
"org.reactivestreams:reactive-streams:jar:sources:1.0.3",
"com.graphql-java:java-dataloader:jar:sources:2.2.3",
"org.slf4j:slf4j-api:jar:sources:1.8.0-beta4"
],
"directDependencies": [
"com.graphql-java:java-dataloader:jar:sources:2.2.3",
"org.antlr:antlr4-runtime:jar:sources:4.7.2",
"org.reactivestreams:reactive-streams:jar:sources:1.0.3",
"org.slf4j:slf4j-api:jar:sources:1.8.0-beta4"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0-sources.jar",
"https://repo1.maven.org/maven2/com/graphql-java/graphql-java/15.0/graphql-java-15.0-sources.jar",
"https://maven.google.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0-sources.jar",
"https://repo.spring.io/libs-snapshot/com/graphql-java/graphql-java/15.0/graphql-java-15.0-sources.jar"
],
"sha256": "ba61914426d156d5ca88607dd863f15110771666bb7453bfd86e53ae4129196b",
"url": "https://jcenter.bintray.com/com/graphql-java/graphql-java/15.0/graphql-java-15.0-sources.jar"
},
{
"coord": "com.graphql-java:java-dataloader:2.2.3",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3.jar",
"https://repo1.maven.org/maven2/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3.jar",
"https://maven.google.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3.jar",
"https://repo.spring.io/libs-snapshot/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3.jar"
],
"sha256": "838bc7887298d6e35f6da8784cf08f9bc9418699cd61d9aa03be1b60da28af8a",
"url": "https://jcenter.bintray.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3.jar"
},
{
"coord": "com.graphql-java:java-dataloader:jar:sources:2.2.3",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3-sources.jar",
"https://repo1.maven.org/maven2/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3-sources.jar",
"https://maven.google.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3-sources.jar",
"https://repo.spring.io/libs-snapshot/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3-sources.jar"
],
"sha256": "c6447cbb2852ce864fce37a305c8bfac5b162eeb7d9f7343c8c381093eb93524",
"url": "https://jcenter.bintray.com/com/graphql-java/java-dataloader/2.2.3/java-dataloader-2.2.3-sources.jar"
},
{
"coord": "com.shapesecurity:salvation:2.7.2",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2.jar",
"https://repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.2/salvation-2.7.2.jar",
"https://maven.google.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2.jar",
"https://repo.spring.io/libs-snapshot/com/shapesecurity/salvation/2.7.2/salvation-2.7.2.jar"
],
"sha256": "52b8673f62a99aea6cb262e79460641ff889ad50cee757be31e227d995a7f2bc",
"url": "https://jcenter.bintray.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2.jar"
},
{
"coord": "com.shapesecurity:salvation:jar:sources:2.7.2",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2-sources.jar",
"https://repo1.maven.org/maven2/com/shapesecurity/salvation/2.7.2/salvation-2.7.2-sources.jar",
"https://maven.google.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2-sources.jar",
"https://repo.spring.io/libs-snapshot/com/shapesecurity/salvation/2.7.2/salvation-2.7.2-sources.jar"
],
"sha256": "6883028d675d05c1806093302939e7184a86da6ee9520c37d61f2bb578d5eaa6",
"url": "https://jcenter.bintray.com/com/shapesecurity/salvation/2.7.2/salvation-2.7.2-sources.jar"
},
{
"coord": "com.squareup.okhttp3:okhttp:3.11.0",
"dependencies": [
"com.squareup.okio:okio:1.14.0"
],
"directDependencies": [
"com.squareup.okio:okio:1.14.0"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar",
"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar",
"https://maven.google.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar",
"https://repo.spring.io/libs-snapshot/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar"
],
"sha256": "e27c7742448f816da1cac72b4ca283b0d7920749e09f5dd0ac017e40714a2efe",
"url": "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0.jar"
},
{
"coord": "com.squareup.okhttp3:okhttp:jar:sources:3.11.0",
"dependencies": [
"com.squareup.okio:okio:jar:sources:1.14.0"
],
"directDependencies": [
"com.squareup.okio:okio:jar:sources:1.14.0"
],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar",
"https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar",
"https://maven.google.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar",
"https://repo.spring.io/libs-snapshot/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar"
],
"sha256": "2dade1d534496d68302adba898eafd7b019cd60c91afb763a50f5bde02ca3f68",
"url": "https://jcenter.bintray.com/com/squareup/okhttp3/okhttp/3.11.0/okhttp-3.11.0-sources.jar"
},
{
"coord": "com.squareup.okio:okio:1.14.0",
"dependencies": [],
"directDependencies": [],
"exclusions": [
"org.hamcrest:hamcrest-all",
"org.hamcrest:hamcrest-core",
"io.netty:netty-all"
],
"file": "v1/https/jcenter.bintray.com/com/squareup/okio/okio/1.14.0/okio-1.14.0.jar",