-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathclaims.json
2651 lines (2651 loc) · 160 KB
/
claims.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
{
"1.7.4.1 scalikejdbc-play-fixture-plugin*": "scalacenter/scaladex-void",
"Azavea leaflet-sjs*": "scalacenter/scaladex-void",
"BIDMat BIDMat*": "scalacenter/scaladex-void",
"EPFL lms*": "scalacenter/scaladex-void",
"FRosner drunken-data-quality": "FRosner/drunken-data-quality",
"LLNL spark-hdf5*": "scalacenter/scaladex-void",
"Lewuathe dllib": "Lewuathe/dllib",
"MantaCode swagger-play2*": "scalacenter/scaladex-void",
"SANDEC java4browser*": "Sandec/SimpleFX-Samples",
"SANDEC javafx-*": "Sandec/SimpleFX-Samples",
"SANDEC simplefx*": "Sandec/SimpleFX-Samples",
"SnappyDataInc snappydata": "scalacenter/scaladex-void",
"SparkFlow sparkflow*": "scalacenter/scaladex-void",
"TheDocking.Space corejs*": "scalacenter/scaladex-void",
"TheDocking.Space corejvm*": "scalacenter/scaladex-void",
"TheDocking.Space quantumjs*": "scalacenter/scaladex-void",
"TheDocking.Space quantumjvm*": "scalacenter/scaladex-void",
"actionstat atto-core*": "scalacenter/scaladex-void",
"actionstat atto-spire*": "scalacenter/scaladex-void",
"ai.okroger slack-scala-client*": "scalacenter/scaladex-void",
"ai.recast sdk_scala_*": "RecastAI/SDK-Scala",
"akka-http-lb akka-http-lb*": "scalacenter/scaladex-void",
"akka-http-twirl akka-http-twirl*": "scalacenter/scaladex-void",
"akka-persistence-dynamodb-plugin akka-persistence-dynamodb-plugin_*": "akka/akka-persistence-dynamodb",
"alvarovg stub-dsl*": "scalacenter/scaladex-void",
"amalfi-grid amalfi-grid*": "scalacenter/scaladex-void",
"andyglow scalax-xml-diff_*": "andyglow/scala-xml-diff",
"anorm anorm*": "scalacenter/scaladex-void",
"anorm-iteratee anorm-iteratee*": "scalacenter/scaladex-void",
"anorm-tokenizer anorm-tokenizer*": "scalacenter/scaladex-void",
"api-gateway api-gateway*": "scalacenter/scaladex-void",
"arimitsu.sf broadax-cassandra*": "scalacenter/scaladex-void",
"arimitsu.sf broadax-core*": "scalacenter/scaladex-void",
"arimitsu.sf broadax-http*": "scalacenter/scaladex-void",
"arimitsu.sf circleci-test*": "scalacenter/scaladex-void",
"arimitsu.sf cql-v3-parser*": "scalacenter/scaladex-void",
"astraea avro2spark*": "scalacenter/scaladex-void",
"astraea geotrellis-spark-sql*": "scalacenter/scaladex-void",
"au.com.dius pact-jvm-provider-gradle*": "scalacenter/scaladex-void",
"au.com.onegeek sbt-dotenv": "mefellows/sbt-dotenv",
"au.id.haworth scala-etcd*": "scalacenter/scaladex-void",
"au.id.haworth.rebuild.agent protocol*": "scalacenter/scaladex-void",
"au.id.jazzy.erqx erqx-engine*": "scalacenter/scaladex-void",
"backline akka-http-metrics*": "scalacenter/scaladex-void",
"backline akka-http-metrics_akka23*": "scalacenter/scaladex-void",
"baloise gitbucket-repolist-extension*": "scalacenter/scaladex-void",
"baloise gitbucket-sec-extension*": "scalacenter/scaladex-void",
"batchstream batchstream*": "scalacenter/scaladex-void",
"bavadim autoschema*": "scalacenter/scaladex-void",
"bavadim jschemagen*": "scalacenter/scaladex-void",
"bavadim play-raml": "bavadim/play-raml",
"be.mygod mygod-lib-android*": "scalacenter/scaladex-void",
"be.venneborg.sbt sbt-typescript": "scalacenter/scaladex-not-found",
"be.venneborg.sbt sbt-typescript-extjs": "scalacenter/scaladex-not-found",
"beyondthelines fluent*": "scalacenter/scaladex-void",
"beyondthelines logoon*": "scalacenter/scaladex-void",
"beyondthelines pbdirect*": "scalacenter/scaladex-void",
"beyondthelines pbmeta*": "scalacenter/scaladex-void",
"biz.cgta otest-*": "cgta/otest",
"biz.cgta sbt-x-sjs-plugin": "cgta/otest",
"biz.k11i xgboost-predictor-spark*": "scalacenter/scaladex-void",
"bondlink composefree*": "scalacenter/scaladex-void",
"bondlink freethemonads*": "scalacenter/scaladex-void",
"bound bound-core_*": "runarorama/scala-bound",
"bound bound-core*": "scalacenter/scaladex-void",
"bound bound-f0-binding_*": "runarorama/scala-bound",
"bound bound-f0-binding*": "scalacenter/scaladex-void",
"bound bound-scalacheck-binding_*": "runarorama/scala-bound",
"bound bound-scalacheck-binding*": "scalacenter/scaladex-void",
"bound bound*": "scalacenter/scaladex-void",
"br.com.handit securesocial": "scalacenter/scaladex-void",
"brkyvz demo-scala-python": "brkyvz/demo-scala-python",
"btomala akka-http-twirl_*": "btomala/akka-http-twirl",
"btomala teapot_*": "btomala/teapot",
"build.unstable tylog-core*": "scalacenter/scaladex-void",
"build.unstable tylog-examples*": "scalacenter/scaladex-void",
"build.unstable tylog-macros*": "scalacenter/scaladex-void",
"build.unstable tylog*": "scalacenter/scaladex-void",
"ca.marvelmathew gcm-scala_*": "marvelm/gcm-scala",
"cc.drx *": "drxcc/drx",
"cc.p2k centrality_*": "webgeist/Centrality",
"cc.p2k spark-centrality*": "scalacenter/scaladex-void",
"cc.p2k yahoo-finance_*": "webgeist/yahoo-finance",
"cc.spray sbt-revolver": "spray/sbt-revolver",
"cc.spray sbt-twirl": "spray/twirl",
"ccp.mts.examples mts-basic-client*": "scalacenter/scaladex-void",
"ch.epfl.scala sbt-release": "scalacenter/release-manager",
"ch.epfl.scala sbt-scalafix": "scalacenter/sbt-scalafix",
"ch.epfl.scala sbt-scalajs-bundler": "scalacenter/scalajs-bundler",
"ch.epfl.scala sbt-web-scalajs-bundler": "scalacenter/scalajs-bundler",
"ch.epfl.scala.index sbt-scaladex": "scalacenter/scaladex",
"ch.insign play-commons*": "scalacenter/scaladex-void",
"ch.insign play-shiro*": "scalacenter/scaladex-void",
"ch.insign play-theme-metronic*": "scalacenter/scaladex-void",
"ch.jodersky jni-library*": "jodersky/sbt-jni",
"ch.jodersky sbt-jni": "jodersky/sbt-jni",
"ch.jodersky sbt-jni-*": "jodersky/sbt-jni",
"ch.ninecode.cim CIMReader*": "derrickoswald/CIMReader",
"ch.unibas.cs.gravis scalismo*": "unibas-gravis/scalismo",
"chainkite chk-commons-core_*": "chainkite/chk-commons",
"chainkite chk-commons-test_*": "chainkite/chk-commons",
"chainkite flyway-sbt-ext": "chainkite/flyway-sbt-ext",
"chhokarpardeep spark-sas7bdat": "scalacenter/scaladex-void",
"citywasp citywasp-api_*": "2m/citywasp-api",
"clarifi f0*": "scalacenter/scaladex-void",
"clarifi machines_*": "runarorama/scala-machines",
"cloudant-labs spark-cloudant": "scalacenter/scaladex-void",
"cn.q-game akka-hystrix-client*": "scalacenter/scaladex-void",
"cn.q-game akka-io-netty*": "scalacenter/scaladex-void",
"cn.q-game akka-kafka-logger*": "scalacenter/scaladex-void",
"cn.q-game akka-kryo-serializer*": "scalacenter/scaladex-void",
"cn.q-game akka-log4j2-logger*": "scalacenter/scaladex-void",
"cn.q-game akka-quartz-scheduler*": "scalacenter/scaladex-void",
"cn.q-game akka-remote-transport-io-netty*": "scalacenter/scaladex-void",
"cn.q-game easy-config*": "scalacenter/scaladex-void",
"cn.q-game easy-crypto*": "scalacenter/scaladex-void",
"cn.q-game easy-files*": "scalacenter/scaladex-void",
"cn.q-game easy-function*": "scalacenter/scaladex-void",
"cn.q-game easy-i18n*": "scalacenter/scaladex-void",
"cn.q-game easy-json*": "scalacenter/scaladex-void",
"cn.q-game easy-locate*": "scalacenter/scaladex-void",
"cn.q-game easy-reflect*": "scalacenter/scaladex-void",
"cn.q-game engine-common*": "scalacenter/scaladex-void",
"cn.q-game engine-sample*": "scalacenter/scaladex-void",
"cn.q-game engine*": "scalacenter/scaladex-void",
"cn.q-game slick-code-generator-driver*": "scalacenter/scaladex-void",
"co.blocke latekafka*": "scalacenter/scaladex-void",
"co.blocke laterabbit_*": "gzoller/LateRabbit",
"co.blocke scalajack_*": "gzoller/ScalaJack",
"co.blocke scalajack_mongo_*": "gzoller/ScalaJack",
"co.enear.fs2 fs2-kafka*": "scalacenter/scaladex-void",
"co.rc session-manager-service-client_*": "rodricifuentes1/session-manager-service-client",
"co.rc session-manager_*": "rodricifuentes1/session-manager",
"co.rc token-manager_*": "rodricifuentes1/token-manager",
"codes.bytes quaich-api*": "scalacenter/scaladex-void",
"codes.bytes quaich-demo*": "scalacenter/scaladex-void",
"codes.bytes quaich-http-api*": "scalacenter/scaladex-void",
"codes.bytes quaich-http-macros*": "scalacenter/scaladex-void",
"codes.bytes quaich-http*": "scalacenter/scaladex-void",
"codes.bytes quaich-util*": "scalacenter/scaladex-void",
"codes.reactive.sbt sbt-codes": "reactivecodes/sbt-codes",
"com.1on1development slick-migration-api-flyway_*": "101dev/slick-migration-api-flyway",
"com.aceevo.ursus ursus-scala*": "rjenkins/ursus",
"com.acervera.osm4scala osm4scala-*": "angelcervera/osm4scala",
"com.actionfps *": "ScalaWilliam/ActionFPS",
"com.adelbertc rebind-core_*": "adelbertc/rebind",
"com.aerospike aerospike-spark*": "aerospike/aerospark",
"com.agilogy sbt-javaversion": "agilogy/sbt-javaversion",
"com.agilogy scala-pdf*": "agilogy/scala-pdf",
"com.agilogy update-changes*": "agilogy/update-changes",
"com.alexknvl leibniz*": "alexknvl/leibniz",
"com.alexknvl newts*": "alexknvl/newtypes",
"com.alexknvl newtypes*": "alexknvl/newtypes",
"com.alexknvl root*": "scalacenter/scaladex-not-found",
"com.alexknvl sio*": "alexknvl/sio",
"com.alpeb sbt-gitignore": "alpeb/sbt-gitignore",
"com.anadeainc sbt-less": "scalacenter/scaladex-not-found",
"com.aol.sbt sbt-sonarrunner-plugin": "aol/sbt-sonarrunner-plugin",
"com.api-tech proxyactors*": "nu11ptr/ProxyActors",
"com.api-tech sourceloader*": "nu11ptr/SourceLoader",
"com.appliedscala doobie-core-cats*": "denisftw/advanced-scala-code",
"com.appliedscala doobie-postgres-cats*": "denisftw/advanced-scala-code",
"com.assembla.scala-incubator graph-*": "scala-graph/scala-graph",
"com.atlassian *": "scalacenter/scaladex-not-found",
"com.atlassian.activeobjects *": "scalacenter/scaladex-not-found",
"com.atlassian.connect *": "scalacenter/scaladex-not-found",
"com.atlassian.crowd.client *": "scalacenter/scaladex-not-found",
"com.atlassian.gatling *": "scalacenter/scaladex-not-found",
"com.autoscout24 backup-requests*": "AutoScout24/backup-requests",
"com.autoscout24 featurebee*": "AutoScout24/featurebee-scala",
"com.autoscout24 toguru-*": "AutoScout24/toguru",
"com.azavea scala-landsat-util_*": "azavea/scala-landsat-util",
"com.azavea scaliper*": "azavea/scaliper",
"com.banno banno-csv_*": "Banno/banno-csv",
"com.banno scala-sitemap_*": "Banno/scala-sitemap",
"com.barcahead.rediscala rediscala_*": "barcahead/rediscala",
"com.bayakala funda*": "Bayakala/FunDA",
"com.benmccann play-plovr-plugin": "benmccann/play-plovr-plugin",
"com.bicou play-json-option-option*": "bicouy0/play-json-option-option",
"com.bicou.sbt sbt-hbs": "bicouy0/sbt-hbs",
"com.biosimilarity.lift specialk*": "leithaus/SpecialK",
"com.blackboxsociety blackbox-core_*": "blackboxsociety/blackbox-core",
"com.blackboxsociety blackbox-http_*": "blackboxsociety/blackbox-http",
"com.blackboxsociety blackbox-json_*": "blackboxsociety/blackbox-json",
"com.blackboxsociety blackbox_*": "blackboxsociety/BlackBox",
"com.blackboxsociety waterhouse*": "blackboxsociety/waterhouse",
"com.blibli travflex-client*": "scalacenter/scaladex-not-found",
"com.blstream sbt-search-maven-plugin": "blstream/sbt-search-maven-plugin",
"com.bluelabs akka-http-aws*": "bluelabsio/s3-stream",
"com.bluelabs s3-stream*": "bluelabsio/s3-stream",
"com.boldradius lambda-range_*": "boldradius/lambda-range",
"com.boldradius slick-transactions_*": "boldradius/slick-transactions",
"com.boldradius total-map_*": "boldradius/total-map",
"com.bowlingx xsbt-wro4j-plugin": "BowlingX/xsbt-wro4j-plugin",
"com.byteground *": "scalacenter/scaladex-not-found",
"com.calvin.experiments *": "scalacenter/scaladex-not-found",
"com.catamorphic mustache*": "catamorphic/scala-mustache",
"com.catamorphic playz*": "catamorphic/playz",
"com.carrotgarden.maven scalor-maven-plugin*": "random-maven/scalor-maven-plugin",
"com.cavorite sbt-avro*": "sbt/sbt-avro",
"com.ccadllc.cedi circuitbreaker*": "ccadllc/cedi-circuitbreakers",
"com.ccadllc.cedi config*": "ccadllc/cedi-config",
"com.ccadllc.cedi dtrace*": "ccadllc/cedi-dtrace",
"com.cibo queueable*": "scalacenter/scaladex-not-found",
"com.cjww-dev.apps session-store*": "cjww-development/session-store",
"com.cjww-dev.backends accounts-microservice*": "cjww-development/accounts-microservice",
"com.cjww-dev.backends auth-microservice*": "cjww-development/auth-microservice",
"com.cjww-dev.backends session-store*": "cjww-development/session-store",
"com.cjww-dev.frontends auth-service*": "cjww-development/auth-service",
"com.cjww-dev.frontends deversity-frontend*": "cjww-development/deversity-frontend",
"com.cjww-dev.libs application-utilities*": "cjww-development/application-utilities",
"com.cjww-dev.libs authorisation*": "cjww-development/authorisation",
"com.cjww-dev.libs backend-auth*": "cjww-development/backend-auth",
"com.cjww-dev.libs bootstrapper*": "cjww-development/bootstrapper",
"com.cjww-dev.libs data-security*": "cjww-development/data-security",
"com.cjww-dev.libs frontend-ui*": "cjww-development/frontend-ui",
"com.cjww-dev.libs http-verbs*": "cjww-development/http-verbs",
"com.cjww-dev.libs logging*": "cjww-development/logging",
"com.cjww-dev.libs reactive-mongo*": "cjww-development/reactive-mongo",
"com.clarifi ermine-legacy*": "ermine-language/ermine-legacy",
"com.clarifi f0*": "joshcough/f0",
"com.clevercloud warp10-scala-client*": "CleverCloud/warp10-scala-client",
"com.cloudinary cloudinary-core-scala_*": "cloudinary/cloudinary_scala",
"com.cloudinary cloudinary-scala-play_*": "cloudinary/cloudinary_scala",
"com.codecommit emm*": "djspiewak/emm",
"com.codecommit parseback*": "djspiewak/parseback",
"com.codecommit shims*": "djspiewak/shims",
"com.codecommit sparse_*": "djspiewak/sparse",
"com.codecommit stream-parsers_*": "djspiewak/sparse",
"com.collective sparkext-*": "collectivemedia/spark-ext",
"com.collective.modelmatrix *": "collectivemedia/modelmatrix",
"com.collective.sparkext *": "collectivemedia/spark-ext",
"com.comcast actor-service-registry*": "Comcast/ActorServiceRegistry",
"com.comicgator lurker*": "comicgator/maestro",
"com.comonad attoparsec*": "ekmett/scala-attoparsec",
"com.crunchdevelopment async-zk-client*": "alexanderscott/async-zookeeper-client",
"com.crunchdevelopment rediscala": "alexanderscott/rediscala",
"com.cubes3d scalajs-virtual-dom*": "scalacenter/scaladex-not-found",
"com.culpin.team sbt-apidoc": "valydia/sbt-apidoc",
"com.czarism czarism*": "OleTraveler/czar-of-convert",
"com.dallaway.richard woot*": "d6y/wootjs",
"com.danieltrinh utils*": "daniel-trinh/sprawler",
"com.danielwestheide kontextfrei*": "dwestheide/kontextfrei",
"com.data-intuitive luciusapi*": "data-intuitive/LuciusAPI",
"com.data-intuitive luciusback*": "data-intuitive/LuciusCore",
"com.data-intuitive luciuscore*": "data-intuitive/LuciusCore",
"com.databricks sbt-databricks": "databricks/sbt-databricks",
"com.davegurnell anchorman*": "davegurnell/anchorman",
"com.davegurnell bulletin*": "davegurnell/bulletin",
"com.davegurnell compose*": "underscoreio/compose",
"com.davegurnell spandoc*": "davegurnell/spandoc",
"com.davegurnell unindent*": "davegurnell/unindent",
"com.davegurnell versionit*": "davegurnell/versionit",
"com.devialab corbel-rem-utils*": "devialab/corbel-rem-utils",
"com.dhpcs play-json-rpc*": "dhpcs/play-json-rpc",
"com.dispalt.pop sbt-pop": "dispalt/sbt-pop",
"com.dohque plainjdbc*": "dohque/plainjdbc",
"com.dongxiguo zero-log*": "Atry/zero-log",
"com.drivetribe orchestra*": "drivetribe/orchestra",
"com.drivetribe circe-field-hints*": "drivetribe/circe-field-hints",
"com.drobisch docker4s*": "scalacenter/scaladex-not-found",
"com.dscleaver.sbt sbt-quickfix": "dscleaver/sbt-quickfix",
"com.dslplatform sbt-dsl-platform": "dsl-platform/sbt-dsl",
"com.dwijnand sbt-dynver": "dwijnand/sbt-dynver",
"com.dwijnand sbt-project-graph": "dwijnand/sbt-project-graph",
"com.dwijnand sbt-travisci": "dwijnand/sbt-travisci",
"com.dwijnand.sbtprojectgraph sbt-project-graph": "dwijnand/sbt-project-graph",
"com.earldouglas sbt-frege": "earldouglas/sbt-frege",
"com.earldouglas sbt-heroku-deploy": "earldouglas/sbt-heroku-deploy",
"com.earldouglas xsbt-web-plugin": "earldouglas/xsbt-web-plugin",
"com.eclipsesource play-json-schema-validator*": "eclipsesource/play-json-schema-validator",
"com.eed3si9n sbt-appengine": "sbt/sbt-appengine",
"com.eed3si9n sbt-assembly": "sbt/sbt-assembly",
"com.eed3si9n sbt-buildinfo": "sbt/sbt-buildinfo",
"com.eed3si9n sbt-dbuild": "sbt/sbt-dbuild",
"com.eed3si9n sbt-dirty-money": "sbt/sbt-dirty-money",
"com.eed3si9n sbt-doge": "sbt/sbt-doge",
"com.eed3si9n sbt-export-repo": "sbt/sbt-export-repo",
"com.eed3si9n sbt-inspectr": "eed3si9n/sbt-inspectr",
"com.eed3si9n sbt-man": "sbt/sbt-man",
"com.eed3si9n sbt-scalashim": "sbt/sbt-scalashim",
"com.eed3si9n sbt-sequential": "sbt/sbt-sequential",
"com.eed3si9n sbt-sh": "sbt/sbt-sh",
"com.eed3si9n sbt-twt": "sbt/sbt-twt",
"com.eed3si9n sbt-unidoc": "sbt/sbt-unidoc",
"com.eed3si9n sbt-unique-version": "sbt/sbt-unique-version",
"com.eed3si9n sbt-ynolub": "sbt/sbt-ynolub",
"com.egulias emailvalidator4scala_*": "egulias/EmailValidator4Scala",
"com.eiipii etcdhttpclient*": "scalacenter/scaladex-not-found",
"com.eiipii event-sourcing*": "scalacenter/scaladex-not-found",
"com.elderresearch ssc*": "ElderResearch/ssc",
"com.elliottsj protobus-scala*": "elliottsj/protobus-scala",
"com.enjapan japanese-tokenizers_*": "en-japan/japanese-tokenizers",
"com.enjapan scala-juman-knp*": "en-japan/scala-juman-knp",
"com.epam.reportportal agent-scala-scalatest*": "reportportal/agent-scala-scalatest",
"com.escalatesoft.subcut subcut*": "dickwall/subcut",
"com.esdrasbeleza sbt-findtags": "esdrasbeleza/sbt-findtags",
"com.etaty.rediscala rediscala*": "etaty/rediscala",
"com.evenfinancial sbt-secrets": "EVENFinancial/sbt-secrets",
"com.evolutiongaming akka-tools*": "evolution-gaming/akka-tools",
"com.evolutiongaming crypto*": "evolution-gaming/crypto",
"com.evolutiongaming executor-tools*": "evolution-gaming/executor-tools",
"com.evolutiongaming kryo-macros*": "evolution-gaming/kryo-macros",
"com.evolutiongaming metric-tools*": "evolution-gaming/metric-tools",
"com.evolutiongaming no-log4j-test*": "evolution-gaming/no-log4j-test",
"com.evolutiongaming scala-tools*": "evolution-gaming/scala-tools",
"com.example scala-library-seed*": "jamesward/scala-library-seed",
"com.expansiva time-slotter": "expansiva-engineering/time-slotter",
"com.eyeem flume-client*": "eyeem/scala-flume-client",
"com.faacets consolidate*": "denisrosset/consolidate",
"com.faacets gluon*": "denisrosset/gluon",
"com.faacets yamlson*": "denisrosset/yamlson",
"com.featurefm river-song*": "ListnPlay/RiverSong",
"com.featurefm squirrel*": "ListnPlay/Squirrel",
"com.flurdy sander*": "flurdy/sander",
"com.foomoo.abc abc-*": "danwatford/abc",
"com.freevariable firkin*": "willb/firkin",
"com.freevariable.adiaphora adiaphora*": "willb/adiaphora",
"com.fundedby *": "scalacenter/scaladex-not-found",
"com.geeoz.atom *": "scalacenter/scaladex-not-found",
"com.geeoz.pawl *": "scalacenter/scaladex-not-found",
"com.geezeo sbt-kamon-newrelic": "scalacenter/scaladex-not-found",
"com.geirsson sbt-scalafmt": "scalameta/scalafmt",
"com.gilt gfc-semver*": "gilt/gfc-semver",
"com.gilt.sbt sbt-aspectjweaver": "gilt/sbt-aspectjweaver",
"com.gilt.sbt sbt-newrelic": "gilt/sbt-newrelic",
"com.gilt.sbt sbt-yourkit": "gilt/sbt-yourkit",
"com.github sonic_*": "scalacenter/scaladex-not-found",
"com.github.DavidPerezIngeniero sbt-izpack": "DavidPerezIngeniero/sbt-izpack",
"com.github.RecastAI sdk-scala*": "RecastAI/SDK-Scala",
"com.github.Shinsuke-Abe calil4s*": "Shinsuke-Abe/calil4s",
"com.github.Shinsuke-Abe dropbox4s*": "Shinsuke-Abe/dropbox4s",
"com.github.Shinsuke-Abe twitter4s*": "Shinsuke-Abe/twitter4s",
"com.github.TanUkkii007 akka-cluster-custom-downing*": "TanUkkii007/akka-cluster-custom-downing",
"com.github.TanUkkii007 akka-http-oauth2*": "scalacenter/scaladex-not-found",
"com.github.aafa realm-sbt-plugin": "aafa/realm-sbt-plugin",
"com.github.acjay spray-json-shapeless-acjay*": "acjay/spray-json-shapeless",
"com.github.agourlay json-2-csv-stream_*": "agourlay/json-2-csv-stream",
"com.github.agourlay lazy-tail_*": "agourlay/lazy-tail",
"com.github.ahjohannessen akka-etcd*": "ahjohannessen/akka-etcd",
"com.github.akileev akka-serial-io_*": "akileev/akka-serial-io",
"com.github.alexarchambault sbt-notebook": "alexarchambault/sbt-notebook",
"com.github.alixba vast_*": "AlixBa/vast",
"com.github.andyglow scalax-xml-diff_*": "andyglow/scala-xml-diff",
"com.github.bolthelmet mockito-sugar-rush*": "Bolthelmet/mockito-sugar-rush",
"com.github.bootlog bootlog": "scalacenter/scaladex-not-found",
"com.github.bseibel akka-persistence-bdb*": "bseibel/akka-persistence-bdb",
"com.github.casualjim sbt-jelastic-deploy": "casualjim/sbt-jelastic-deploy",
"com.github.catap sbt-jsonschema2pojo": "catap/sbt-jsonschema2pojo",
"com.github.cb372 scalacache*": "cb372/scalacache",
"com.github.citrum.webby sbt-web-runner": "citrum/sbt-web-runner",
"com.github.citrum.webby webby-sbt-plugin": "citrum/webby-sbt-plugins",
"com.github.crakjie sbt-spark-plugin": "crakjie/sbt-spark-plugin",
"com.github.cuzfrog excela*": "cuzfrog/excela",
"com.github.cuzfrog maila*": "cuzfrog/maila",
"com.github.cuzfrog sormc*": "cuzfrog/sormc",
"com.github.dannywe honeypot*": "scalacenter/scaladex-not-found",
"com.github.davidkellis acceptparser*": "scalacenter/scaladex-not-found",
"com.github.davidkellis query*": "davidkellis/query",
"com.github.davidpeklak fasqlitate*": "davidpeklak/fasqlitate",
"com.github.davidpeklak smt": "davidpeklak/smt",
"com.github.ddispaltro sbt-reactjs": "dispalt/sbt-reactjs",
"com.github.debop hibernate-rediscala*": "debop/hibernate-rediscala",
"com.github.dhorman scala-async-rich*": "scalacenter/scaladex-not-found",
"com.github.dhorman scalastm2*": "scalacenter/scaladex-not-found",
"com.github.dhorman stm*": "scalacenter/scaladex-not-found",
"com.github.dmexe finagle-consul*": "dmexe/finagle-consul",
"com.github.dmrolfs root*": "scalacenter/scaladex-not-found",
"com.github.dnvriend akka-elasticsearch*": "dnvriend/akka-elasticsearch",
"com.github.dnvriend akka-elasticsearch-logger*": "dnvriend/akka-elasticsearch-logger",
"com.github.dnvriend akka-persistence-inmemory*": "dnvriend/akka-persistence-inmemory",
"com.github.dnvriend akka-persistence-jdbc-query_*": "dnvriend/akka-persistence-jdbc-query",
"com.github.dnvriend akka-persistence-jdbc-serialization-json_*": "dnvriend/akka-persistence-jdbc-serialization-json",
"com.github.dnvriend akka-persistence-jdbc_*": "dnvriend/akka-persistence-jdbc",
"com.github.domino-osgi domino*": "domino-osgi/domino",
"com.github.dvarelap peregrine*": "dvarelap/peregrine",
"com.github.dvarelap stilt*": "gitter-badger/stilt",
"com.github.dwhjames aws-wrap*": "dwhjames/aws-wrap",
"com.github.dwhjames datomisca-play*": "dwhjames/play-datomisca",
"com.github.dwhjames datomisca_*": "dwhjames/datomisca",
"com.github.dwhjames play-cors*": "dwhjames/play-cors",
"com.github.dwhjames sbt-awseb": "dwhjames/sbt-awseb",
"com.github.dwickern sbt-bower": "dwickern/sbt-bower",
"com.github.dwickern sbt-emberjs": "dwickern/sbt-emberjs",
"com.github.easel scalajs-charts*": "easel/scalajs-charts",
"com.github.eduardofcbg playframework2-elasticsearch_*": "eduardofcbg/playframework2-elasticsearch",
"com.github.eduardofcbg redis-scala*": "eduardofcbg/redis-scala",
"com.github.eerohele expek*": "eerohele/expek",
"com.github.floriankirmaier awscala": "FlorianKirmaier/AWScala",
"com.github.frossi85 slick-migration-api*": "frossi85/slick-migration-api",
"com.github.gbeaty scoute*": "gbeaty/scoute",
"com.github.gbeaty typelib": "gbeaty/typelib",
"com.github.gseitz sbt-protobuf": "sbt/sbt-protobuf",
"com.github.gseitz sbt-release": "sbt/sbt-release",
"com.github.hgiddens au-sms*": "hgiddens/au-sms",
"com.github.hgiddens http4s-global-middleware_*": "hgiddens/http4s-global-middleware",
"com.github.hgiddens http4s-session-core_*": "hgiddens/http4s-session",
"com.github.hgiddens http4s-session-example_*": "hgiddens/http4s-session",
"com.github.hgiddens http4s-session_*": "hgiddens/http4s-session",
"com.github.hgiddens telstra-sms-core_*": "hgiddens/au-sms",
"com.github.hgiddens telstra-sms-http4s_*": "hgiddens/au-sms",
"com.github.hgiddens telstra-sms_*": "hgiddens/au-sms",
"com.github.implicitdef toolbox*": "implicitdef/toolbox",
"com.github.inthenow sbt-catalysts": "typelevel/sbt-catalysts",
"com.github.inthenow sbt-scalajs": "scalacenter/scaladex-not-found",
"com.github.izmailoff marshallers*": "izmailoff/Spray-mongo-record",
"com.github.izmailoff mongoconnect*": "izmailoff/Spray-mongo-record",
"com.github.izmailoff root*": "izmailoff/Spray-mongo-record",
"com.github.izmailoff spray-mongo-record*": "izmailoff/Spray-mongo-record",
"com.github.izmailoff testutils*": "izmailoff/Spray-mongo-record",
"com.github.j5ik2o akka-http-swagger*": "j5ik2o/akka-http-swagger",
"com.github.japgolly.fork.specs2 *": "japgolly/specs2",
"com.github.jarlakxen reactive-ftp*": "Jarlakxen/reactive-ftp",
"com.github.jdgoldie akka-persistence*": "jdgoldie/akka-persistence-gridgain-experimental",
"com.github.jedesah codesheet-api*": "jedesah/scala-codesheet-api",
"com.github.jedesah scala-insight*": "jedesah/scala-codesheet-api",
"com.github.jedesah scalainsight*": "jedesah/scala-codesheet-api",
"com.github.jodersky flow*": "jodersky/flow",
"com.github.jodersky mavlink-library_*": "project-condor/sbt-mavlink",
"com.github.jodersky sbt-mavlink": "project-condor/sbt-mavlink",
"com.github.johnreedlol scala-trace-debug_*": "johnreedlol/scala-trace-debug",
"com.github.joprice qmark-plugin_*": "joprice/qmark",
"com.github.joprice scalikejdbc*": "joprice/scalikejdbc",
"com.github.joprice securesocial*": "joprice/securesocial",
"com.github.jw3 consulq_*": "jw3/consulq",
"com.github.jw3 mm4s*": "jw3/mm4s",
"com.github.keddelzz.hidden-args hidden-args*": "keddelzz/hidden-args",
"com.github.krasserm akka-analytics*": "krasserm/akka-analytics",
"com.github.krasserm akka-persistence-cassandra*": "krasserm/akka-persistence-cassandra",
"com.github.krasserm akka-persistence-kafka*": "krasserm/akka-persistence-kafka",
"com.github.krasserm akka-persistence-testkit*": "krasserm/akka-persistence-testkit",
"com.github.krasserm streamz*": "krasserm/streamz",
"com.github.malliina jenkins-control*": "malliina/jenkins-control",
"com.github.malliina logback-rx_*": "malliina/logback-rx",
"com.github.malliina mobile-push_*": "malliina/mobile-push",
"com.github.malliina parent*": "malliina/util",
"com.github.malliina play-base_*": "malliina/play-base",
"com.github.malliina test-lib_*": "malliina/test-lib",
"com.github.malliina util-actor*": "malliina/util",
"com.github.malliina util-audio*": "malliina/util-audio",
"com.github.malliina util-auth*": "malliina/util",
"com.github.malliina util-azure*": "malliina/util",
"com.github.malliina util-base*": "malliina/util-base",
"com.github.malliina util-jdbc*": "malliina/util",
"com.github.malliina util-play*": "malliina/util-play",
"com.github.malliina util-rmi*": "malliina/util",
"com.github.malliina util_*": "malliina/util",
"com.github.marceloemanoel play-rsync-deploy": "marceloemanoel/play-rsync-deploy",
"com.github.master spark-stemming*": "master/spark-stemming",
"com.github.meln1k reactive-telegrambot*": "meln1k/reactive-telegrambot",
"com.github.milenkovicm kamon-prometheus*": "milenkovicm/kamon-prometheus",
"com.github.mkroli dns4s*": "mkroli/dns4s",
"com.github.mkroli sbt-webresource": "mkroli/sbt-webresource",
"com.github.mkroli scrand_*": "mkroli/scrand",
"com.github.mkroli.lpm *": "mkroli/lpm",
"com.github.mmizutani play-gulp_*": "mmizutani/sbt-play-gulp",
"com.github.mskimm ann4s*": "mskimm/ann4s",
"com.github.mskimm annoy4s*": "mskimm/ann4s",
"com.github.mskimm tensorflow-scala*": "mskimm/tensorflow-scala",
"com.github.mvallerie sbt-scage-plugin": "mvallerie/sbt-scage-plugin",
"com.github.mwz sbt-sonar": "mwz/sbt-sonar",
"com.github.nadavwr libffi-scala-native*": "nadavwr/libffi-scala-native",
"com.github.nadavwr libpthread-scala-native*": "nadavwr/libpthread-scala-native",
"com.github.nadavwr makeshift*": "nadavwr/makeshift",
"com.github.nadavwr math-utils*": "nadavwr/math-utils",
"com.github.nadavwr spice-scala*": "nadavwr/spice-scala",
"com.github.njeuk dbmapper-macros_*": "njeuk/dbmapper-macros",
"com.github.njeuk dbmapper_*": "njeuk/dbmapper",
"com.github.nyavro sbt-spi-plugin": "nyavro/spi-plugin",
"com.github.olafurpg postgres-slick*": "olafurpg/postgres-slick",
"com.github.openreviews openreviews*": "openreviews/openreviews",
"com.github.ornicar scalalib*": "ornicar/scalalib",
"com.github.pathikrit better-files*": "pathikrit/better-files",
"com.github.pathikrit metarest*": "pathikrit/metarest",
"com.github.pathikrit sauron*": "pathikrit/sauron",
"com.github.patriknw akka-data-replication*": "patriknw/akka-data-replication",
"com.github.patriknw akka-datareplication*": "patriknw/akka-data-replication",
"com.github.philcali cronish*": "philcali/cronish",
"com.github.piotrga async-dynamo*": "piotrga/async-dynamo",
"com.github.play2war play2-war-plugin": "play2war/play2-war-plugin",
"com.github.ponkin bloom-driver*": "ponkin/bloom",
"com.github.ponkin spark-bloom-connector*": "ponkin/bloom",
"com.github.ratika19 akka-persistence-cassandra*": "ratika19/akka-persistence-cassandra",
"com.github.rehei scala-macros_*": "rehei/scala-macros",
"com.github.rehei.lift lift-hibernate_*": "rehei/lift-hibernate",
"com.github.rehei.lift lift-webjars_*": "rehei/lift-webjars",
"com.github.retronym sbt-onejar": "sbt/sbt-onejar",
"com.github.retronym sbt-xjc": "retronym/sbt-xjc",
"com.github.rockjam httpaste*": "rockjam/httpaste",
"com.github.satoshi.m8a akka-persistence-inmemory_*": "satoshi-m8a/akka-persistence-inmemory",
"com.github.saurfang sbt-spark-submit": "saurfang/sbt-spark-submit",
"com.github.saurfang sparksql-protobuf*": "saurfang/sparksql-protobuf",
"com.github.sbt sbt-fmpp": "sbt/sbt-fmpp",
"com.github.sbt sbt-scalabuff": "sbt/sbt-scalabuff",
"com.github.scarman battlenet*": "hntd187/BattleNet",
"com.github.scyks playacl_*": "scyks/play-acl",
"com.github.shanbin sbt-clover": "shanbin/sbt-clover",
"com.github.shmishleniy sbt-deploy-ssh": "shmishleniy/sbt-deploy-ssh",
"com.github.stacycurl delta-argonaut_*": "stacycurl/delta",
"com.github.stacycurl delta-cats_*": "stacycurl/delta",
"com.github.stacycurl delta-core_*": "stacycurl/delta",
"com.github.stacycurl delta-generic_*": "stacycurl/delta",
"com.github.stacycurl delta-matchers_*": "stacycurl/delta",
"com.github.stacycurl delta-scalaz_*": "stacycurl/delta",
"com.github.stacycurl pimpathon*": "stacycurl/pimpathon",
"com.github.stonexx.sbt sbt-axis": "stonexx/sbt-axis",
"com.github.stonexx.sbt sbt-babeljs": "stonexx/sbt-babeljs",
"com.github.stonexx.sbt sbt-cxf": "stonexx/sbt-cxf",
"com.github.stonexx.sbt sbt-play-auto-refresh": "stonexx/sbt-play-auto-refresh",
"com.github.stonexx.sbt sbt-play-webpack": "stonexx/sbt-play-webpack",
"com.github.stonexx.sbt sbt-webpack": "stonexx/sbt-webpack",
"com.github.thangiee league-of-legend-chat-lib-scala*": "Thangiee/League-of-Legend-Chat-Lib-Scala",
"com.github.thangiee lol-chat-core_*": "Thangiee/LoL-chat-lib",
"com.github.thangiee lol-chat-lib_*": "Thangiee/LoL-chat-lib",
"com.github.thangiee riot-api-scala_*": "Thangiee/Riot-API-Scala",
"com.github.thangiee scala-frp*": "Thangiee/scala.frp",
"com.github.tkawachi sbt-doctest": "tkawachi/sbt-doctest",
"com.github.tototoshi slick-joda-mapper_*": "tototoshi/slick-joda-mapper",
"com.github.tptodorov sbt-cloudformation": "tptodorov/sbt-cloudformation",
"com.github.tptodorov sbt-dart-pub": "tptodorov/sbt-dart-pub",
"com.github.unisay mockserver-client-scala_*": "Unisay/mockserver-client-scala",
"com.github.unisay moki_*": "Unisay/moki",
"com.github.unisay wired_*": "Unisay/wired",
"com.github.walfie pogoprotos*": "walfie/pogoprotos.scala",
"com.github.wookietreiber sbt-scaliterate": "wookietreiber/sbt-scaliterate",
"com.github.yoshiyoshifujii sbt-aws-serverless": "yoshiyoshifujii/sbt-aws-serverless",
"com.github.yzernik bitcoin-scodec_*": "yzernik/bitcoin-scodec",
"com.github.yzernik btc-io_*": "yzernik/btc-io",
"com.gitlab.stevendobay sls*": "scalacenter/scaladex-not-found",
"com.googlecode.kiama *": "scalacenter/scaladex-not-found",
"com.googlecode.mapperdao mapperdao_*": "kostaskougios/mapperdao",
"com.googlecode.sbt-rats sbt-rats": "scalacenter/scaladex-not-found",
"com.googlecode.scalascriptengine scalascriptengine_*": "kostaskougios/scalascriptengine",
"com.goyeau kubernetes-client*": "joan38/kubernetes-client",
"com.goyeau kafka-streams-circe*": "joan38/kafka-streams-circe",
"com.gregghz json-macro*": "gregghz/json-macro",
"com.gu abacus-models*": "guardian/grid",
"com.gu commercial-shared*": "guardian/grid",
"com.gu commercial*": "guardian/grid",
"com.gu flexible-model*": "guardian/grid",
"com.gu frontend-goo-tool*": "guardian/grid",
"com.gu management-internal*": "guardian/grid",
"com.gu management-logback*": "guardian/grid",
"com.gu management-mongo*": "guardian/grid",
"com.gu management-servlet-api*": "guardian/grid",
"com.gu management*": "guardian/grid",
"com.gu pa-client*": "guardian/pa-football-client",
"com.gu panda-hmac*": "guardian/panda-hmac",
"com.gu riffraff-artifact": "guardian/sbt-riffraff-artifact",
"com.gu sbt-play-artifact": "guardian/sbt-play-artifact",
"com.gu sbt-riffraff-artifact": "guardian/sbt-riffraff-artifact",
"com.gu sbt-sonatype-release": "guardian/sbt-sonatype-release",
"com.gu sbt-teamcity-test-reporting-plugin": "guardian/sbt-teamcity-test-reporting-plugin",
"com.gu sbt-version-info-plugin": "guardian/sbt-version-info-plugin",
"com.gu scala-slack-webhook*": "guardian/scala-slack-webhook",
"com.gu story-packages-presentation_*": "guardian/story-packages-presentation",
"com.gu tags-thrift-schema_*": "guardian/tags-thrift-schema",
"com.gu targeting-client-play24*": "guardian/grid",
"com.gu targeting-client*": "guardian/grid",
"com.gu targeting-thrift-schema*": "guardian/grid",
"com.gu tools-web-driver-utils*": "guardian/grid",
"com.gu.identity identity-cookie*": "guardian/grid",
"com.gu.identity identity-crypto*": "guardian/grid",
"com.gu.identity identity-model*": "guardian/grid",
"com.gu.identity identity-request*": "guardian/grid",
"com.gu.identity.api identity-api-client-lib*": "guardian/grid",
"com.haghard nosql-join-stream_*": "haghard/nosql-join-stream",
"com.hanhuy.sbt android-gradle-build": "scala-android/sbt-android",
"com.hanhuy.sbt android-protify": "scala-android/sbt-android-protify",
"com.hanhuy.sbt android-sdk-plugin": "scala-android/sbt-android",
"com.hanhuy.sbt key-path": "pfn/sbt-key-path",
"com.hanhuy.sbt kotlin-plugin": "pfn/kotlin-plugin",
"com.hanhuy.sbt sbt-idea": "pfn/sbt-idea",
"com.hanhuy.sbt sbt-simple-server": "pfn/sbt-simple-server",
"com.hanhuy.sbt sbt-unused": "pfn/sbt-unused",
"com.hazelcast hazelcast-scala_*": "hazelcast/hazelcast-scala",
"com.heroku sbt-heroku": "heroku/sbt-heroku",
"com.hevylight nullable_*": "HevyLight/nullable",
"com.hevylight sbt-ikvm": "HevyLight/sbt-ikvm",
"com.hibob cronish*": "scalacenter/scaladex-void",
"com.hootsuite sbt-swagger": "hootsuite/sbt-swagger",
"com.hortonworks shc": "scalacenter/scaladex-void",
"com.hortonworks shc-core": "scalacenter/scaladex-void",
"com.hpe.cct cct-io*": "scalacenter/scaladex-void",
"com.hpe.cct cct-nn*": "scalacenter/scaladex-void",
"com.hpe.cct cct-sandbox*": "scalacenter/scaladex-void",
"com.hpe.cct hdf-java*": "scalacenter/scaladex-void",
"com.iadvize scala-json-api-library_*": "iadvize/scala-json-api-library",
"com.iheart kanaloa_*": "iheartradio/kanaloa",
"com.iheart play-swagger_*": "iheartradio/play-swagger",
"com.iheart sbt-play-swagger": "iheartradio/play-swagger",
"com.ii galahad-argonaut*": "scalacenter/scaladex-void",
"com.ii galahad-core*": "scalacenter/scaladex-void",
"com.ilunin disconsul*": "scalacenter/scaladex-void",
"com.imageintelligence fs2-sqs*": "scalacenter/scaladex-void",
"com.imageintelligence galahad-argonaut*": "scalacenter/scaladex-void",
"com.imageintelligence galahad-core*": "scalacenter/scaladex-void",
"com.imageintelligence http4c*": "scalacenter/scaladex-void",
"com.imageintelligence metrics*": "scalacenter/scaladex-void",
"com.impactua bouncer-auth*": "scalacenter/scaladex-void",
"com.impactua bouncer-commons*": "scalacenter/scaladex-void",
"com.impactua kafka-restartable*": "scalacenter/scaladex-void",
"com.impactua kafka-restarter*": "scalacenter/scaladex-void",
"com.impactua play-auth*": "scalacenter/scaladex-void",
"com.impactua redis-scala*": "scalacenter/scaladex-void",
"com.innoq leanpub-client*": "scalacenter/scaladex-void",
"com.instructure spark-csv*": "scalacenter/scaladex-void",
"com.iravid play-json-cats*": "iravid/play-json-cats",
"com.ithaca libra*": "scalacenter/scaladex-void",
"com.izmeron planner_*": "haghard/planner",
"com.jamesneve christmas": "scalacenter/scaladex-void",
"com.jamesneve database-cleaner": "scalacenter/scaladex-void",
"com.jamesward play-auto-refresh": "scalacenter/scaladex-void",
"com.jamesward sbt-atom": "jamesward/sbt-atom",
"com.jamesward sbt-force": "jamesward/sbt-force",
"com.jamesward scheroku*": "jamesward/scheroku",
"com.jasperdenkers play-auth*": "scalacenter/scaladex-void",
"com.jasperdenkers play-utils*": "scalacenter/scaladex-void",
"com.jatescher sbt-jolokia": "jtescher/sbt-jolokia",
"com.jdgoldie akka-persistence-shared-inmemory_*": "jdgoldie/akka-persistence-shared-inmemory",
"com.jm2dev sbt-xslt-plugin": "jm2dev/sbt-xslt-plugin",
"com.jmparsons play-dustjs": "jmparsons/play-dustjs",
"com.jmparsons play-lessc": "jmparsons/play-lessc",
"com.jmparsons.sbt sbt-dustjs-linkedin": "jmparsons/sbt-dustjs-linkedin",
"com.joescii sbt-elasticbeanstalk-core": "sqs/sbt-elasticbeanstalk",
"com.joescii sbt-elasticbeanstalk-plugin": "sqs/sbt-elasticbeanstalk",
"com.joescii sbt-jasmine-plugin": "joescii/sbt-jasmine-plugin",
"com.joescii sbt-js-test": "joescii/sbt-js-test",
"com.joshcough minecraft-sbt-plugin": "joshcough/MinecraftPlugins",
"com.joshcough remote-entities_*": "joshcough/Remote-Entities",
"com.joshcough scala-minecraft-plugin-api*": "joshcough/MinecraftPlugins",
"com.joshcough scala-minecraft-scala-library*": "joshcough/MinecraftPlugins",
"com.joshcough scala-minecraft-yml-gen": "joshcough/ScalaMinecraftYmlGen",
"com.jspha ureact*": "tel/scala-ureact",
"com.jsuereth sbt-ghpages-plugin": "sbt/sbt-ghpages",
"com.jsuereth sbt-git-plugin": "sbt/sbt-git",
"com.jsuereth sbt-pgp": "sbt/sbt-pgp",
"com.jsuereth sbt-site-plugin": "sbt/sbt-site",
"com.jsuereth xsbt-gpg-plugin": "sbt/sbt-pgp",
"com.jsuereth.snark snark-core_*": "jsuereth/snark",
"com.kalmanb.sbt sbt-ctags": "kalmanb/sbt-ctags",
"com.kenshoo metrics-play*": "kenshoo/metrics-play",
"com.kindleit gkit*": "kindleit/gkit",
"com.kindleit play-gjson_*": "kindleit/gkit",
"com.kindleit play-gresource-mongo_*": "kindleit/gkit",
"com.kindleit play-gresource-sql_*": "kindleit/gkit",
"com.kindleit play-gresource_*": "kindleit/gkit",
"com.kirkcarrion sandstorm*": "scalacenter/scaladex-void",
"com.kyleu jdub-async_*": "KyleU/jdub-async",
"com.lambdista money*": "scalacenter/scaladex-void",
"com.learningobjects casal_*": "learningobjectsinc/casal",
"com.lenioapp sbt-findbugs-plugin": "josephearl/sbt-findbugs",
"com.lightbend.cinnamon *": "lightbend/cinnamon-futures",
"com.lightbend.conductr sbt-conductr": "typesafehub/sbt-conductr",
"com.lightbend.lagom lagom-sbt-plugin": "lagom/lagom",
"com.lightbend.paradox sbt-paradox*": "lightbend/paradox",
"com.lightbend.sbt sbt-java-formatter": "typesafehub/sbt-java-formatter",
"com.lightbend.sbt sbt-javaagent": "sbt/sbt-javaagent",
"com.lihaoyi autowire*": "lihaoyi/autowire",
"com.lins05 utils*": "scalacenter/scaladex-void",
"com.localytics kinesis-stream*": "scalacenter/scaladex-void",
"com.localytics sbt-dynamodb": "localytics/sbt-dynamodb",
"com.localytics sbt-s3": "localytics/sbt-s3",
"com.localytics sbt-sqs": "localytics/sbt-sqs",
"com.locusenergy solar-calculations*": "LocusEnergy/solar-calculations",
"com.lonelyplanet akka-http-extensions_*": "lonelyplanet/akka-http-extensions",
"com.lonelyplanet prometheus-akka-http_*": "lonelyplanet/prometheus-akka-http",
"com.lonelyplanet scala-healthcheck_*": "lonelyplanet/scala-healthcheck",
"com.lonelyplanet scala-util_*": "lonelyplanet/scala-util",
"com.loyalty migratr-core*": "scalacenter/scaladex-void",
"com.loyalty.one hello-bintray*": "scalacenter/scaladex-void",
"com.lucaongaro minhash*": "scalacenter/scaladex-void",
"com.malliina appbundler*": "malliina/appbundler",
"com.malliina jenkins-control*": "malliina/jenkins-control",
"com.malliina logback-rx_*": "malliina/logback-rx",
"com.malliina parent*": "malliina/util",
"com.malliina play-base*": "scalacenter/scaladex-void",
"com.malliina util-actor*": "malliina/util",
"com.malliina util-audio*": "malliina/util-audio",
"com.malliina util-auth*": "malliina/util",
"com.malliina util-azure*": "malliina/util",
"com.malliina util-base*": "malliina/util-base",
"com.malliina util-jdbc*": "malliina/util",
"com.malliina util-play*": "malliina/util-play",
"com.malliina util-rmi*": "malliina/util",
"com.malliina util_*": "malliina/util",
"com.mandubian freek*": "scalacenter/scaladex-void",
"com.mandubian play-json-zipper*": "mandubian/play-json-zipper",
"com.mandubian scaledn*": "mandubian/scaledn",
"com.mantacode swagger-play2*": "scalacenter/scaladex-void",
"com.manyangled breakable*": "scalacenter/scaladex-void",
"com.manyangled coulomb-macros*": "scalacenter/scaladex-void",
"com.manyangled coulomb-unitexpr*": "scalacenter/scaladex-void",
"com.manyangled coulomb*": "scalacenter/scaladex-void",
"com.markatta scalenium*": "johanandren/scalenium",
"com.markatta taglist-plugin": "scalacenter/scaladex-void",
"com.markusjura swagger-play2_*": "markusjura/swagger-play2",
"com.meetup apple-of-my-iap*": "scalacenter/scaladex-void",
"com.meetup archery*": "meetup/archery",
"com.meetup cupboard*": "scalacenter/scaladex-void",
"com.meetup iap-api*": "scalacenter/scaladex-void",
"com.meetup iap-service*": "scalacenter/scaladex-void",
"com.meetup json-slim*": "meetup/json-slim",
"com.meetup json4s-java-time*": "scalacenter/scaladex-void",
"com.meetup oss-best-sbt-jar*": "scalacenter/scaladex-void",
"com.meetup scala-intacct-client*": "scalacenter/scaladex-void",
"com.meetup scala-logger*": "scalacenter/scaladex-void",
"com.meetup timeywimey-scala*": "scalacenter/scaladex-void",
"com.meituan.firefly generator*": "meituan/Firefly",
"com.merle auth-module*": "datalek/silhouette-rest-seed",
"com.metaforsoftware sjaxen_*": "acruise/sjaxen",
"com.mfglabs precepte*": "MfgLabs/precepte",
"com.mfglabs spark_dbscan*": "scalacenter/scaladex-void",
"com.micronautics awslib_scala*": "mslinn/awslib_scala",
"com.micronautics currency*": "scalacenter/scaladex-void",
"com.micronautics futureperfect*": "mslinn/scalacourses-utils",
"com.micronautics has-id*": "scalacenter/scaladex-void",
"com.micronautics has-value*": "scalacenter/scaladex-void",
"com.micronautics html-email*": "scalacenter/scaladex-void",
"com.micronautics html-form-scala*": "scalacenter/scaladex-void",
"com.micronautics pfview*": "mslinn/PFView",
"com.micronautics play-access-logger*": "mslinn/playAccessLogger",
"com.micronautics quill-cache*": "scalacenter/scaladex-void",
"com.micronautics scalacourses-play-utils*": "mslinn/scalacourses-play-utils",
"com.micronautics scalacourses-slick-utils*": "scalacenter/scaladex-void",
"com.micronautics scalacourses-utils*": "mslinn/scalacourses-utils",
"com.micronautics urlettes*": "scalacenter/scaladex-void",
"com.microsoft.azure spark-eventhubs*": "scalacenter/scaladex-void",
"com.microsoft.azure.iot iothub-react*": "scalacenter/scaladex-void",
"com.microsoft.azure.iot iothub-react*.0-RC1": "scalacenter/scaladex-void",
"com.microsoft.azure.iot iothub2kafka*": "scalacenter/scaladex-void",
"com.microsoft.azure.iot kafka-connect-iothub*": "scalacenter/scaladex-void",
"com.microsoft.azure.toketi toketi-iothub-react*": "scalacenter/scaladex-void",
"com.migesok akka-persistence-in-memory-snapshot-store*": "migesok/akka-persistence-in-memory-snapshot-store",
"com.mintbeans sbt-ecr": "scalacenter/scaladex-void",
"com.mirkocaserta.swatch swatch*": "scalacenter/scaladex-void",
"com.mojolly.scalate xsbt-scalate-generator": "backchatio/xsbt-scalate-generate",
"com.monovore coast-core*": "scalacenter/scaladex-void",
"com.monovore coast-samza*": "scalacenter/scaladex-void",
"com.monovore decline*": "scalacenter/scaladex-void",
"com.monsanto.arch aws2scala*": "MonsantoCo/aws2scala",
"com.monsanto.arch cloud-formation-template-generator_*": "MonsantoCo/cloudformation-template-generator",
"com.monsanto.arch fleet-client_*": "MonsantoCo/fleet-client",
"com.monsanto.arch kamon-prometheus*": "scalacenter/scaladex-void",
"com.monsanto.arch spray-kamon-metrics_*": "MonsantoCo/spray-kamon-metrics",
"com.monsanto.labs mwundo_*": "MonsantoCo/mwundo",
"com.monsanto.stats chinese-restaurant-process_*": "MonsantoCo/chinese-restaurant-process",
"com.mwrobel postcodesio*": "scalacenter/scaladex-void",
"com.mysema.scalagen scalagen-maven-plugin_2.9.3": "scalacenter/scaladex-void",
"com.mysema.scalagen scalagen-root*": "scalacenter/scaladex-void",
"com.mysema.scalagen scalagen*": "scalacenter/scaladex-void",
"com.netaporter scala-i18n*": "scalacenter/scaladex-void",
"com.nicta metagraph*": "scalacenter/scaladex-void",
"com.nicta scoobi*": "NICTA/scoobi",
"com.nicta scoobi-compatibility-cdh3*": "NICTA/scoobi-compatibility-cdh3",
"com.nicta scoobi-compatibility-cdh4*": "NICTA/scoobi-compatibility-cdh4",
"com.nicta scoobi-compatibility-cdh5*": "NICTA/scoobi-compatibility-cdh5",
"com.nicta scoobi-compatibility-hadoop2*": "NICTA/scoobi-compatibility-hadoop2",
"com.nocandysw platform-executing_*.0-M7": "scalacenter/scaladex-void",
"com.nocandysw platform-executing_*.0-M8": "scalacenter/scaladex-void",
"com.nocandysw platform-executing_*.0-RC1": "scalacenter/scaladex-void",
"com.nocandysw platform-executing_*.0-RC3": "scalacenter/scaladex-void",
"com.nocandysw platform-executing*": "scalacenter/scaladex-void",
"com.nocandysw platform-executing*.0-M7": "scalacenter/scaladex-void",
"com.nocandysw platform-executing*.0-M8": "scalacenter/scaladex-void",
"com.nocandysw platform-executing*.0-RC1": "scalacenter/scaladex-void",
"com.nocandysw platform-executing*.0-RC3": "scalacenter/scaladex-void",
"com.novocode sbt-ornate": "szeiger/ornate",
"com.nrinaudo tabulate_*": "nrinaudo/kantan.csv",
"com.onzo dynamodb-scala_*": "onzocom/dynamodb-scala",
"com.oohish bitcoin-scodec*": "scalacenter/scaladex-void",
"com.opi.lil sbt-spark": "OPI-LIL/sbt-spark",
"com.oradian.sbt sbt-sh": "melezov/sbt-sh",
"com.originate nice-error-compiler-plugin*": "scalacenter/scaladex-void",
"com.originate nice-error-transformer*": "scalacenter/scaladex-void",
"com.originate sbt-nice-error*": "scalacenter/scaladex-void",
"com.orsella sbt-sublime": "orrsella/sbt-sublime",
"com.oschrenk sunrise-scala*": "scalacenter/scaladex-void",
"com.ostronom scala-ecb-parser*": "scalacenter/scaladex-void",
"com.outtherelabs play-application-diagnostics*": "scalacenter/scaladex-void",
"com.outworkers morpheus*": "outworkers/morpheus",
"com.outworkers phantom*": "outworkers/phantom",
"com.outworkers util*": "outworkers/util",
"com.ovoenergy common*": "scalacenter/scaladex-void",
"com.ovoenergy comms-kafka-akka-helpers*": "scalacenter/scaladex-void",
"com.ovoenergy comms-kafka-messages*": "ovotech/comms-kafka-messages",
"com.ovoenergy comms-kafka-serialisation*": "ovotech/comms-kafka-serialisation",
"com.ovoenergy mailgun-api-client*": "scalacenter/scaladex-void",
"com.owm owm-jmapprojlib_*": "pomadchin/owm-jmapprojlib",
"com.pagerduty metrics*": "PagerDuty/scala-metrics",
"com.pasviegas scalajs-date*": "scalacenter/scaladex-void",
"com.pasviegas shoushiling_*": "pasviegas/shoushiling",
"com.pavlinic luautils_*": "triggerNZ/luautils",
"com.pellucid argonaut-spray*": "dwhjames/argonaut-spray",
"com.pellucid aws-wrap*": "dwhjames/aws-wrap",
"com.pellucid case-config_*": "mrvisser/case-config",
"com.pellucid datomisca*": "dwhjames/datomisca",
"com.pellucid datomisca-play*": "dwhjames/play-datomisca",
"com.pellucid framian*": "mrvisser/framian",
"com.pellucid play-datomisca*": "dwhjames/play-datomisca",
"com.pellucid samael*": "scalacenter/scaladex-void",
"com.pellucid sealerate*": "mrvisser/sealerate",
"com.peoplepattern lemkit-train*": "scalacenter/scaladex-void",
"com.peoplepattern lib-text*": "peoplepattern/lib-text",
"com.pepegar hammock-*": "pepegar/hammock",
"com.pepegar hammock*": "pepegar/hammock",
"com.philipsoutham scala-fnv*": "philipsoutham/scala-fnv",
"com.plasmaconduit algebro*": "plasmaconduit/algebro",
"com.plasmaconduit consul-kv*": "plasmaconduit/consul-kv",
"com.plasmaconduit convergence*": "plasmaconduit/convergence",
"com.plasmaconduit conveyance*": "plasmaconduit/conveyance",
"com.plasmaconduit digital-ocean*": "plasmaconduit/digital-ocean",
"com.plasmaconduit edge*": "plasmaconduit/edge",
"com.plasmaconduit elasticsearch-client*": "plasmaconduit/elasticsearch-client",
"com.plasmaconduit email*": "plasmaconduit/email",
"com.plasmaconduit etag-cache-middleware*": "plasmaconduit/etag-cache-middleware",
"com.plasmaconduit form*": "scalacenter/scaladex-void",
"com.plasmaconduit github-auth-middleware_*": "plasmaconduit/github-auth-middleware",
"com.plasmaconduit http-request-logger-middleware_*": "plasmaconduit/http-request-logger-middleware",
"com.plasmaconduit jcg-traits*": "scalacenter/scaladex-void",
"com.plasmaconduit json*": "plasmaconduit/json",
"com.plasmaconduit json-codegen-traits*": "scalacenter/scaladex-void",
"com.plasmaconduit json-config*": "plasmaconduit/json-config",
"com.plasmaconduit json-log-entry*": "plasmaconduit/json-log-entry",
"com.plasmaconduit json-pointer*": "plasmaconduit/json-pointer",
"com.plasmaconduit json-response*": "plasmaconduit/json-response",
"com.plasmaconduit jsonml*": "plasmaconduit/jsonml",
"com.plasmaconduit jwa*": "plasmaconduit/jwa",
"com.plasmaconduit jws*": "plasmaconduit/jws",
"com.plasmaconduit jwt*": "plasmaconduit/jwt",
"com.plasmaconduit mime-types*": "plasmaconduit/mime-types",
"com.plasmaconduit plasmaconduit-framework*": "plasmaconduit/plasmaconduit-framework",
"com.plasmaconduit riak-kv*": "plasmaconduit/riak-kv",
"com.plasmaconduit rx-netty-scala*": "plasmaconduit/rx-netty-scala",
"com.plasmaconduit sendgrid-client*": "plasmaconduit/sendgrid-client",
"com.plasmaconduit static-file-middleware*": "plasmaconduit/static-file-middleware",
"com.plasmaconduit timber*": "plasmaconduit/timber",
"com.plasmaconduit try-to-observable*": "plasmaconduit/try-to-observable",
"com.plasmaconduit url*": "plasmaconduit/url",
"com.plasmaconduit validated-string*": "plasmaconduit/validators",
"com.plasmaconduit validation*": "plasmaconduit/validation",
"com.plasmaconduit validators*": "plasmaconduit/validators",
"com.plasmaconduit waterhouse*": "plasmaconduit/waterhouse",
"com.polymorph buccaneer*": "scalacenter/scaladex-void",
"com.pragmasoft spray-funnel*": "galarragas/spray-funnel",
"com.productfoundry akka-cqrs*": "Product-Foundry/akka-cqrs",
"com.productfoundry akka-persistence-couchbase*": "Product-Foundry/akka-persistence-couchbase",
"com.productfoundry hal-scala*": "Product-Foundry/hal-scala",
"com.productfoundry play-json-zipper*": "Product-Foundry/play-json-zipper",
"com.projectseptember freek*": "scalacenter/scaladex-void",
"com.psm commons*": "scalacenter/scaladex-void",
"com.q42 gae-codex*": "scalacenter/scaladex-void",
"com.qonceptual.sbt sbt-pmd-plugin": "qonceptual/sbt-pmd-plugin",
"com.quadas konfig-twitter-util*": "scalacenter/scaladex-void",
"com.quadas konfig*": "scalacenter/scaladex-void",
"com.quartethealth datomisca*": "scalacenter/scaladex-void",
"com.queirozf scala-date-time-utils*": "scalacenter/scaladex-void",
"com.rbmhtechnology eventuate*": "RBMHTechnology/eventuate",
"com.reincarnation.cache play-cache-status*": "scalacenter/scaladex-void",
"com.rethinkscala change-feed_*": "kclay/rethink-scala",
"com.rethinkscala core*": "kclay/rethink-scala",
"com.rethinkscala root*": "kclay/rethink-scala",
"com.rms.miu slick-cats*": "scalacenter/scaladex-void",
"com.roperzh.sbt sbt-msx": "roperzh/sbt-msx",
"com.rossabaker jawn-streamz*": "rossabaker/jawn-streamz",
"com.roundeights hasher*": "scalacenter/scaladex-void",
"com.ruiandrebatista dbio-cats*": "scalacenter/scaladex-void",
"com.ruiandrebatista fs2-extensions*": "scalacenter/scaladex-void",
"com.ruiandrebatista scalapaypalclient*": "scalacenter/scaladex-void",
"com.ruiandrebatista scalapaypalobjects*": "scalacenter/scaladex-void",
"com.ruiandrebatista.godiva *": "ragb/godiva-scala",
"com.rxthings akka-injects_*": "jw3/akka-injects",
"com.rxthings cloud-config*": "scalacenter/scaladex-void",
"com.rxthings webhooks*": "jw3/webhooks",
"com.sageserpent americium*": "scalacenter/scaladex-void",
"com.saikocat sbt-fork-test-by-annotation-plugin": "saikocat/sbt-fork-test-by-annotation-plugin",
"com.samstarling finagle-prometheus*": "scalacenter/scaladex-void",
"com.samthomson idiomears*": "scalacenter/scaladex-void",
"com.samthomson scala-utils*": "scalacenter/scaladex-void",
"com.sanoma.cda maxmind-geoip2-scala*": "Sanoma-CDA/maxmind-geoip2-scala",
"com.sc.sbt sbt-eslint": "toc777/sbt-eslint",
"com.sc.sbt sbt-webpack": "toc777/sbt-webpack",
"com.scalafi scala-openbook*": "ezhulenev/scala-openbook",
"com.scalafi.openbook scala-openbook*": "scalacenter/scaladex-void",
"com.scalagen scalagen*": "scalacenter/scaladex-void",
"com.scalakata *": "MasseGuillaume/ScalaKata2",
"com.scalakata.metadoc *": "metadoc/metadoc",
"com.scalapenos sbt-prompt": "agemooij/sbt-prompt",
"com.scalawilliam scala-fastcgi-client*": "ScalaWilliam/scala-fastcgi-client",
"com.scalway b3cls*": "scalway/b3cls",
"com.scalway scalatags-*": "scalacenter/scaladex-void",
"com.scalway scalatags-b3*": "scalacenter/scaladex-void",
"com.scalway scalatags-b3*": "scalacenter/scaladex-void",
"com.sciabarra agilesites2-setup*": "scalacenter/scaladex-void",
"com.sclasen akka-persistence-dynamodb*": "akka/akka-persistence-dynamodb",
"com.seroperson sbt-crashlytics": "seroperson/sbt-crashlytics",
"com.servicerocket sbt-aws-eb": "scalacenter/scaladex-not-found",
"com.servicerocket sbt-git-flow": "scalacenter/scaladex-not-found",
"com.sfxcode.nosql simple-mongo*": "scalacenter/scaladex-void",
"com.sfxcode.sapphire sapphire-core_*": "sfxcode/sapphire-core",
"com.sfxcode.sapphire sapphire-extension_*": "sfxcode/sapphire-extension",
"com.shalloui typebase-lite-android*": "scalacenter/scaladex-void",
"com.shalloui typebase-lite-core*": "scalacenter/scaladex-void",
"com.shalloui typebase-lite-java*": "scalacenter/scaladex-void",
"com.shengc fingers-cats*": "scalacenter/scaladex-void",
"com.shengc fingers-core*": "scalacenter/scaladex-void",
"com.shengc fingers-scalaz711*": "scalacenter/scaladex-void",
"com.shengc fingers-scalaz72*": "scalacenter/scaladex-void",
"com.simpleenergy se-stream-xml*": "scalacenter/scaladex-void",
"com.simplytyped sbt-antlr4": "scalacenter/scaladex-void",
"com.sksamuel.sbt-versions sbt-versions": "sksamuel/sbt-versions",
"com.sksamuel.scala-scales sbt-scales": "scalacenter/scaladex-void",
"com.sksamuel.scapegoat sbt-scapegoat": "scalacenter/scaladex-void",
"com.sksamuel.scoverage sbt-coveralls": "scalacenter/scaladex-void",
"com.sksamuel.scoverage sbt-scoverage": "scalacenter/scaladex-void",
"com.sksamuel.scribble sbt-scribble": "scalacenter/scaladex-void",
"com.smartelk fluent-translator*": "SmartElk/fluent-translator",
"com.softwaremill akka-http-session*": "softwaremill/akka-http-session",
"com.softwaremill reactive-kafka*": "akka/reactive-kafka",
"com.softwaremill.clippy *": "softwaremill/scala-clippy",
"com.sorrentocorp scala-macros*": "scalacenter/scaladex-void",
"com.sorrentocorp streaming-json-parser*": "scalacenter/scaladex-void",
"com.specdevs specgine*": "scalacenter/scaladex-void",
"com.specdevs specgine-macros*": "scalacenter/scaladex-void",
"com.sphonic phantom-connector*": "Sphonic/sphonic-phantom",
"com.spotcap xero-java-spotcap*": "scalacenter/scaladex-void",
"com.squants squants*": "scalacenter/scaladex-void",
"com.sungevity cma-es-scala*": "scalacenter/scaladex-void",
"com.swoop scala-sugar*": "scalacenter/scaladex-void",
"com.swoop spark-records*": "scalacenter/scaladex-void",
"com.swoop spark-test-sugar*": "scalacenter/scaladex-void",
"com.tapad scala-druid-client*": "scalacenter/scaladex-void",
"com.tapad.sbt marathon-templating-lib*": "scalacenter/scaladex-void",
"com.tapad.sbt marathon-util*": "scalacenter/scaladex-void",
"com.tapad.sbt sbt-marathon": "scalacenter/scaladex-void",
"com.tapad.sbt sbt-marathon-templating": "scalacenter/scaladex-void",
"com.tapad.scaerospike scaerospike_*": "Tapad/scaerospike",
"com.taraxe akka-http-jto-validation*": "scalacenter/scaladex-void",
"com.taxis99 awsscala*": "99taxis/awsscala",
"com.teambytes.sbt sbt-dynamodb": "scalacenter/scaladex-void",
"com.ted.tools scala-memoization*": "scalacenter/scaladex-void",
"com.tersesystems play20-rememberme*": "scalacenter/scaladex-void",
"com.tersesystems.blindsight blindsight*": "tersesystems/blindsight",
"com.thangiee freasy-monad*": "scalacenter/scaladex-void",
"com.thangiee metadroid*": "scalacenter/scaladex-void",
"com.thatscalaguy play-pjax*": "scalacenter/scaladex-void",
"com.themillhousegroup arallon*": "themillhousegroup/arallon",
"com.themillhousegroup bombardier*": "themillhousegroup/bombardier",
"com.themillhousegroup edn-scala*": "themillhousegroup/edn-scala",
"com.themillhousegroup flogger*": "themillhousegroup/flogger",
"com.themillhousegroup gasket*": "themillhousegroup/gasket",
"com.themillhousegroup imagine*": "themillhousegroup/imagine",
"com.themillhousegroup l7-merge*": "themillhousegroup/l7-merge",
"com.themillhousegroup mondrian*": "themillhousegroup/mondrian",
"com.themillhousegroup pac4j-fitbit*": "themillhousegroup/pac4j-fitbit",
"com.themillhousegroup pac4j-underarmour*": "themillhousegroup/pac4j-underarmour",
"com.themillhousegroup play2-mailgun*": "themillhousegroup/play2-mailgun",
"com.themillhousegroup play2-reactivemongo-mocks*": "themillhousegroup/play2-reactivemongo-mocks",
"com.themillhousegroup play2-strava*": "scalacenter/scaladex-void",
"com.themillhousegroup play2letsencrypt*": "scalacenter/scaladex-void",
"com.themillhousegroup prudence*": "themillhousegroup/prudence",
"com.themillhousegroup sausagefactory*": "themillhousegroup/sausagefactory",
"com.themillhousegroup scoup*": "themillhousegroup/scoup",
"com.themillhousegroup scuggler*": "themillhousegroup/scuggler",
"com.themillhousegroup sses*": "scalacenter/scaladex-void",
"com.themillhousegroup witchhunt*": "themillhousegroup/witchhunt",
"com.thenewmotion scynapse-root*": "thenewmotion/scynapse",
"com.theseventhsense utils-collections-akka*": "scalacenter/scaladex-void",
"com.theseventhsense utils-collections-all*": "scalacenter/scaladex-void",
"com.theseventhsense utils-collections-circe*": "scalacenter/scaladex-void",
"com.theseventhsense utils-collections-mapdb*": "scalacenter/scaladex-void",
"com.theseventhsense utils-collections-spark*": "scalacenter/scaladex-void",
"com.theseventhsense utils-collections*": "scalacenter/scaladex-void",
"com.theseventhsense utils-collections*": "scalacenter/scaladex-void",
"com.theseventhsense utils-datetime-circe*": "scalacenter/scaladex-void",
"com.theseventhsense utils-datetime-circe*": "scalacenter/scaladex-void",
"com.theseventhsense utils-datetime-playjson*": "scalacenter/scaladex-void",
"com.theseventhsense utils-datetime*": "scalacenter/scaladex-void",
"com.theseventhsense utils-datetime*": "scalacenter/scaladex-void",
"com.theseventhsense.ec2akka aws-akka*": "scalacenter/scaladex-void",
"com.theseventhsense.ec2akka ec2-akka*": "scalacenter/scaladex-void",
"com.theseventhsense.ec2akka ecs-akka*": "scalacenter/scaladex-void",
"com.thoughtworks sbteo": "scalacenter/scaladex-void",
"com.ticketmaster.api commerce-scala*": "scalacenter/scaladex-void",
"com.ticketmaster.api core-scala*": "scalacenter/scaladex-void",
"com.ticketmaster.api discovery-scala*": "scalacenter/scaladex-void",
"com.timeout akka-http-healthchecks*": "scalacenter/scaladex-void",
"com.timeout docless*": "scalacenter/scaladex-void",
"com.timeout kamon-cloudwatch*": "scalacenter/scaladex-void",
"com.timushev.sbt sbt-updates": "rtimush/sbt-updates",
"com.tjelp play-liquibase-plugin*": "scalacenter/scaladex-void",
"com.tmzint.sbt sbt-vulcanize": "scalacenter/scaladex-void",
"com.tomtorsneyweir date-scala*": "scalacenter/scaladex-void",
"com.tradeshift akka-persistence-cassandra-query*": "jypma/akka-persistence-cassandra-query",
"com.tradeshift ts-reaktive*": "Tradeshift/ts-reaktive",
"com.tradeshift.scala-japi *": "jypma/scala-japi",
"com.trafficland sbt-plugins": "scalacenter/scaladex-void",
"com.twitter finagle-zookeeper*": "finagle/finagle-zookeeper",
"com.twitter scrooge-sbt-plugin": "scalacenter/scaladex-void",