forked from scalacenter/scaladex-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclaims.json
2367 lines (2367 loc) · 115 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_2.10": null,
"Azavea leaflet-sjs_sjs0.6_2.11": null,
"BIDMat BIDMat_2.11": null,
"EPFL lms_2.10": null,
"FRosner drunken-data-quality": "FRosner/drunken-data-quality",
"LLNL spark-hdf5_2.11": null,
"Lewuathe dllib": "Lewuathe/dllib",
"SANDEC java4browser*": null,
"SANDEC java4browser-jvm_2.11": null,
"SANDEC java4browser-server_2.11": null,
"SANDEC java4browser-shared_2.11": null,
"SANDEC javafx-ensemble-sbt_2.11": null,
"SANDEC javafx-scenebuilder-sbt_2.11": null,
"SANDEC simplefx-all_2.11": null,
"SANDEC simplefx-core_2.11": null,
"SANDEC simplefx-extended_2.11": null,
"SANDEC simplefx-macro_2.11": null,
"SANDEC simplefx-remote_2.11": null,
"SANDEC simplefx-utility_2.11": null,
"SANDEC simplefx-wrapping_2.11": null,
"SANDEC simplefx_2.11": null,
"SnappyDataInc snappydata": null,
"SparkFlow sparkflow_2.11": null,
"actionstat atto-core_2.10": null,
"actionstat atto-spire_2.10": null,
"ai.okroger slack-scala-client_2.11": null,
"ai.recast sdk_scala_*": "RecastAI/SDK-Scala",
"akka-http-lb akka-http-lb_2.11": null,
"akka-http-twirl akka-http-twirl_2.11": null,
"akka-persistence-dynamodb-plugin akka-persistence-dynamodb-plugin_*": "akka/akka-persistence-dynamodb",
"alvarovg stub-dsl_2.11": null,
"amalfi-grid amalfi-grid_2.11": null,
"andyglow scalax-xml-diff_*": "andyglow/scala-xml-diff",
"anorm anorm_2.11": null,
"anorm-iteratee anorm-iteratee_2.11": null,
"anorm-tokenizer anorm-tokenizer_2.11": null,
"api-gateway api-gateway_2.11": null,
"arimitsu.sf broadax-cassandra_2.10": null,
"arimitsu.sf broadax-cassandra_2.11": null,
"arimitsu.sf broadax-core_2.10": null,
"arimitsu.sf broadax-core_2.11": null,
"arimitsu.sf broadax-http_2.10": null,
"arimitsu.sf broadax-http_2.11": null,
"arimitsu.sf circleci-test_2.10": null,
"arimitsu.sf circleci-test_2.11": null,
"arimitsu.sf cql-v3-parser_2.10": null,
"arimitsu.sf cql-v3-parser_2.11": null,
"au.com.dius pact-jvm-provider-gradle_2.10": null,
"au.com.dius pact-jvm-provider-gradle_2.11": null,
"au.id.haworth scala-etcd_2.10": null,
"au.id.haworth scala-etcd_2.11": null,
"au.id.haworth.rebuild.agent protocol_2.10": null,
"au.id.haworth.rebuild.agent protocol_2.11": null,
"au.id.jazzy.erqx erqx-engine_2.11": null,
"backline akka-http-metrics_2.10": null,
"backline akka-http-metrics_2.11": null,
"backline akka-http-metrics_2.12": null,
"backline akka-http-metrics_akka23_2.10": null,
"backline akka-http-metrics_akka23_2.11": null,
"baloise gitbucket-repolist-extension_2.11": null,
"baloise gitbucket-sec-extension_2.11": null,
"batchstream batchstream_2.10": null,
"bavadim autoschema_2.10": null,
"bavadim jschemagen_2.10": null,
"be.mygod mygod-lib-android_2.11": null,
"biz.cgta otest-jvm_2.10": null,
"biz.cgta otest-jvm_2.11": null,
"biz.cgta otest-sjs_sjs*": "cgta/otest",
"bondlink composefree_2.11": null,
"bondlink freethemonads_2.11": null,
"bound bound-core_*": "runarorama/scala-bound",
"bound bound-core_2.10": null,
"bound bound-f0-binding_*": "runarorama/scala-bound",
"bound bound-f0-binding_2.10": null,
"bound bound-scalacheck-binding_*": "runarorama/scala-bound",
"bound bound-scalacheck-binding_2.10": null,
"bound bound_2.10": null,
"brkyvz demo-scala-python": "brkyvz/demo-scala-python",
"btomala akka-http-twirl_*": "btomala/akka-http-twirl",
"btomala teapot_*": "btomala/teapot",
"build.unstable tylog-core_2.11": null,
"build.unstable tylog-examples_2.11": null,
"build.unstable tylog-macros_2.11": null,
"build.unstable tylog_2.11": null,
"ca.marvelmathew gcm-scala_*": "marvelm/gcm-scala",
"cc.p2k centrality_*": "webgeist/Centrality",
"cc.p2k spark-centrality_2.10": null,
"cc.p2k yahoo-finance_*": "webgeist/yahoo-finance",
"ccp.mts.examples mts-basic-client_2.11": null,
"ch.insign play-commons_2.11": null,
"ch.insign play-shiro_2.11": null,
"ch.insign play-theme-metronic_2.11": null,
"ch.jodersky jni-library_2.10": null,
"ch.jodersky jni-library_2.11": null,
"ch.jodersky jni-library_2.12.0-M3": null,
"ch.jodersky jni-library_2.12.0-M4": null,
"ch.jodersky sbt-jni-macros_2.10": null,
"ch.jodersky sbt-jni-macros_2.11": null,
"ch.jodersky sbt-jni-macros_2.12": null,
"ch.jodersky sbt-jni-macros_2.12.0-M4": null,
"ch.jodersky sbt-jni-macros_2.12.0-M5": null,
"ch.jodersky sbt-jni-macros_2.12.0-RC1": null,
"ch.jodersky sbt-jni-macros_2.12.0-RC2": null,
"ch.unibas.cs.gravis scalismo-faces_2.11": null,
"ch.unibas.cs.gravis scalismo_2.11": null,
"chainkite chk-commons-core_*": "chainkite/chk-commons",
"chainkite chk-commons-test_*": "chainkite/chk-commons",
"citywasp citywasp-api_*": "2m/citywasp-api",
"clarifi f0_2.10": null,
"clarifi machines_*": "runarorama/scala-machines",
"cloudant-labs spark-cloudant": null,
"cn.q-game akka-hystrix-client_2.11": null,
"cn.q-game akka-io-netty_2.11": null,
"cn.q-game akka-kafka-logger_2.11": null,
"cn.q-game akka-kryo-serializer_2.11": null,
"cn.q-game akka-log4j2-logger_2.11": null,
"cn.q-game akka-quartz-scheduler_2.11": null,
"cn.q-game akka-remote-transport-io-netty_2.11": null,
"cn.q-game easy-config_2.11": null,
"cn.q-game easy-crypto_2.11": null,
"cn.q-game easy-files_2.11": null,
"cn.q-game easy-function_2.11": null,
"cn.q-game easy-i18n_2.11": null,
"cn.q-game easy-json_2.11": null,
"cn.q-game easy-locate_2.11": null,
"cn.q-game easy-reflect_2.11": null,
"cn.q-game engine-common_2.11": null,
"cn.q-game engine-sample_2.11": null,
"cn.q-game engine_2.11": null,
"cn.q-game slick-code-generator-driver_2.10": null,
"cn.q-game slick-code-generator-driver_2.11": null,
"co.blocke latekafka_2.11": null,
"co.blocke laterabbit_*": "gzoller/LateRabbit",
"co.blocke scalajack_*": "gzoller/ScalaJack",
"co.blocke scalajack_mongo_*": "gzoller/ScalaJack",
"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",
"com.1on1development slick-migration-api-flyway_*": "101dev/slick-migration-api-flyway",
"com.aceevo.ursus ursus-scala_*.4": null,
"com.aceevo.ursus ursus-scala_2.10.4": null,
"com.acervera.osm4scala osm4scala-core_2.10": null,
"com.acervera.osm4scala osm4scala-core_2.11": null,
"com.adelbertc rebind-core_*": "adelbertc/rebind",
"com.agilogy scala-pdf_2.11": null,
"com.alexknvl sio-concurrent_2.12": null,
"com.alexknvl sio-core_2.12": null,
"com.alexknvl sio-eff_2.12": null,
"com.alexknvl sio-example_2.12": null,
"com.alexknvl sio-iteratee-files_2.12": null,
"com.alexknvl sio-iteratee-gzip_2.12": null,
"com.alexknvl sio-iteratee_2.12": null,
"com.alexknvl sio-regions_2.12": null,
"com.alexknvl sio-teletype_2.12": null,
"com.alexknvl sio_2.12": null,
"com.api-tech proxyactors_2.10": null,
"com.api-tech sourceloader_2.10": null,
"com.appliedscala doobie-core-cats_2.11": null,
"com.appliedscala doobie-postgres-cats_2.11": null,
"com.assembla.scala-incubator graph-*": "scala-graph/scala-graph",
"com.atlassian json-hal_2.10": null,
"com.atlassian json-patch-play_2.10": null,
"com.atlassian json-patch_2.10": null,
"com.atlassian.activeobjects activeobjects-scala_2.10": null,
"com.atlassian.activeobjects activeobjects-scala_2.11": null,
"com.atlassian.connect ac-play-java_2.10": null,
"com.atlassian.crowd.client all_2.10": null,
"com.atlassian.crowd.client all_2.11": null,
"com.atlassian.crowd.client crowd-scala-client-model_2.10": null,
"com.atlassian.crowd.client crowd-scala-client-model_2.11": null,
"com.atlassian.crowd.client crowd-scala-rest-client_2.10": null,
"com.atlassian.crowd.client crowd-scala-rest-client_2.11": null,
"com.atlassian.gatling gatling-jwt_2.10": null,
"com.autoscout24 backup-requests_2.11": null,
"com.autoscout24 featurebee*": "AutoScout24/featurebee-scala",
"com.autoscout24 toguru-scala-client_2.11": null,
"com.azavea scala-landsat-util_*": "azavea/scala-landsat-util",
"com.azavea scaliper_2.10": null,
"com.banno banno-csv_*": "Banno/banno-csv",
"com.banno scala-sitemap_*": "Banno/scala-sitemap",
"com.barcahead.rediscala rediscala_*": "barcahead/rediscala",
"com.bicou play-json-option-option_2.11": null,
"com.biosimilarity.lift specialk_2.10": null,
"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_2.10": null,
"com.blackboxsociety waterhouse_2.11": null,
"com.blibli travflex-client_2.11": null,
"com.bluelabs akka-http-aws_2.11": null,
"com.bluelabs s3-stream_2.11": null,
"com.boldradius lambda-range_*": "boldradius/lambda-range",
"com.boldradius slick-transactions_*": "boldradius/slick-transactions",
"com.boldradius total-map_*": "boldradius/total-map",
"com.byteground byteground-graphicsmagick_2.10": null,
"com.byteground byteground-iptc-news_2.10": null,
"com.byteground byteground-iptc-sports_2.10": null,
"com.byteground byteground-iptc-topics_2.10": null,
"com.byteground byteground-iptc_2.10": null,
"com.byteground byteground-opencv-native_2.10": null,
"com.byteground byteground-opencv_2.10": null,
"com.calvin.experiments updatr-core_2.11": null,
"com.catamorphic mustache_2.10": null,
"com.catamorphic playz_2.10": null,
"com.ccadllc.cedi config_2.11": null,
"com.ccadllc.cedi config_2.12": null,
"com.cibo queueable_2.11": null,
"com.clarifi ermine-legacy_2.10": null,
"com.clarifi f0_**": "joshcough/f0",
"com.clevercloud warp10-scala-client_2.11": null,
"com.cloudinary cloudinary-core-scala_2.10": null,
"com.cloudinary cloudinary-core-scala_2.11": null,
"com.cloudinary cloudinary-scala-play_2.10": null,
"com.cloudinary cloudinary-scala-play_2.11": null,
"com.codecommit emm*": "djspiewak/emm",
"com.codecommit parseback_2.10": null,
"com.codecommit parseback_2.11": null,
"com.codecommit parseback_2.12": null,
"com.codecommit shims*": "djspiewak/shims",
"com.codecommit sparse_*": "djspiewak/sparse",
"com.codecommit stream-parsers_*": "djspiewak/sparse",
"com.collective sparkext-mllib_2.10": null,
"com.collective sparkext-sql_2.10": null,
"com.collective.modelmatrix * ": "collectivemedia/modelmatrix",
"com.collective.modelmatrix modelmatrix-cli_2.10": null,
"com.collective.modelmatrix modelmatrix-client_2.10": null,
"com.collective.modelmatrix modelmatrix-core_2.10": null,
"com.collective.modelmatrix modelmatrix-udf_2.10": null,
"com.collective.sparkext sparkext-mllib*": "collectivemedia/spark-ext",
"com.collective.sparkext sparkext-sql*": "collectivemedia/spark-ext",
"com.comcast actor-service-registry_2.11": null,
"com.comicgator lurker_2.11": null,
"com.comonad attoparsec_2.10": null,
"com.crunchdevelopment async-zk-client_2.10": null,
"com.crunchdevelopment async-zk-client_2.11": null,
"com.crunchdevelopment rediscala_2.10": null,
"com.cubes3d scalajs-virtual-dom_sjs0.6_2.11": null,
"com.czarism czarism_2.11": null,
"com.dallaway.richard woot*": "d6y/wootjs",
"com.dallaway.richard woot-client_sjs0.6_2.11": null,
"com.dallaway.richard woot-model_2.11": null,
"com.dallaway.richard woot-model_sjs0.6_2.11": null,
"com.dallaway.richard woot-server_2.11": null,
"com.danieltrinh utils_2.10": null,
"com.danieltrinh utils_2.11": null,
"com.danielwestheide kontextfrei-core_2.10": null,
"com.danielwestheide kontextfrei-core_2.11": null,
"com.danielwestheide kontextfrei-scalatest_2.10": null,
"com.danielwestheide kontextfrei-scalatest_2.11": null,
"com.data-intuitive luciusapi_2.10": null,
"com.data-intuitive luciusapi_2.11": null,
"com.data-intuitive luciusback_2.10": null,
"com.data-intuitive luciuscore*": "data-intuitive/LuciusCore",
"com.davegurnell anchorman_2.11": null,
"com.davegurnell bulletin*": "davegurnell/bulletin",
"com.davegurnell compose-*": "underscoreio/compose",
"com.davegurnell spandoc_2.11": null,
"com.davegurnell unindent*": "davegurnell/unindent",
"com.davegurnell versionit*": "davegurnell/versionit",
"com.devialab corbel-rem-utils*": "devialab/corbel-rem-utils",
"com.dhpcs play-json-rpc-testkit_2.11": null,
"com.dhpcs play-json-rpc_*": "dhpcs/play-json-rpc",
"com.dohque plainjdbc_2.11": null,
"com.dongxiguo zero-log*": "Atry/zero-log",
"com.dongxiguo.zero-log *": "Atry/zero-log",
"com.eclipsesource play-json-schema-validator*": "eclipsesource/play-json-schema-validator",
"com.eiipii etcdhttpclient_2.11": null,
"com.elderresearch ssc_2.11": null,
"com.elderresearch ssc_2.12.0-RC1": null,
"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_2.10": null,
"com.epam.reportportal agent-scala-scalatest_2.11": null,
"com.epam.reportportal agent-scala-scalatest_2.12": null,
"com.escalatesoft.subcut subcut*": "dickwall/subcut",
"com.etaty.rediscala rediscala*": "etaty/rediscala",
"com.evolutiongaming akka-tools_2.11": null,
"com.evolutiongaming crypto_2.11": null,
"com.evolutiongaming kryo-macros_2.11": null,
"com.evolutiongaming no-log4j-test_2.11": null,
"com.evolutiongaming no-log4j-test_2.12": null,
"com.evolutiongaming scala-tools_2.11": null,
"com.example scala-library-seed*": "jamesward/scala-library-seed",
"com.expansiva time-slotter": null,
"com.eyeem flume-client_2.11": null,
"com.faacets consolidate_2.11": null,
"com.faacets yamlson_2.11": null,
"com.featurefm river-song*": "ListnPlay/RiverSong",
"com.featurefm squirrel*": "ListnPlay/Squirrel",
"com.flurdy sander_2.11": null,
"com.foomoo.abc abc-app_2.11": null,
"com.foomoo.abc abc-domain_2.11": null,
"com.foomoo.abc abc-parent_2.11": null,
"com.foomoo.abc abc-parser_2.11": null,
"com.freevariable firkin-client_2.10": null,
"com.freevariable firkin_2.10": null,
"com.freevariable.adiaphora adiaphora_2.10": null,
"com.fundedby fundedby_2.11": null,
"com.fundedby spark-jobs_2.11": null,
"com.geeoz.atom atom-api_2.11": null,
"com.geeoz.atom atom-audit_2.11": null,
"com.geeoz.atom atom-kie_2.11": null,
"com.geeoz.atom atom-macro_2.11": null,
"com.geeoz.atom atom-notification_2.11": null,
"com.geeoz.atom atom-notifications_2.11": null,
"com.geeoz.atom atom-oauth_2.11": null,
"com.geeoz.atom atom-showcase_2.11": null,
"com.geeoz.atom atom-web_2.11": null,
"com.geeoz.atom atom-ws_2.11": null,
"com.geeoz.atom atom_2.11": null,
"com.geeoz.pawl pawl-scalatest_2.11": null,
"com.geeoz.pawl pawl_2.11": null,
"com.gilt gfc-semver*": "gilt/gfc-semver",
"com.github sonic_2.10": null,
"com.github sonic_parser_2.10": null,
"com.github.RecastAI sdk-scala_2.10": null,
"com.github.Shinsuke-Abe calil4s*": "Shinsuke-Abe/calil4s",
"com.github.Shinsuke-Abe dropbox4s_*": "Shinsuke-Abe/dropbox4s",
"com.github.Shinsuke-Abe twitter4s_2.10": null,
"com.github.TanUkkii007 akka-cluster-custom-downing_2.11": null,
"com.github.TanUkkii007 akka-cluster-custom-downing_2.12": null,
"com.github.acjay spray-json-shapeless-acjay_2.11": null,
"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_2.10": null,
"com.github.akileev akka-serial-io_*": "akileev/akka-serial-io",
"com.github.alixba vast_*": "AlixBa/vast",
"com.github.andyglow scalax-xml-diff_*": "andyglow/scala-xml-diff",
"com.github.bseibel akka-persistence-bdb*": "bseibel/akka-persistence-bdb",
"com.github.cb372 scalacache-caffeine_2.11": null,
"com.github.cb372 scalacache-core_2.11": null,
"com.github.cb372 scalacache-ehcache_2.11": null,
"com.github.cb372 scalacache-guava_2.11": null,
"com.github.cb372 scalacache-memcached_2.11": null,
"com.github.cb372 scalacache-redis_2.11": null,
"com.github.cb372 scalacache_2.11": null,
"com.github.cuzfrog maila_2.11": null,
"com.github.cuzfrog sormc_2.11": null,
"com.github.dannywe honeypot_2.11": null,
"com.github.davidkellis acceptparser_2.11": null,
"com.github.davidkellis query_*": "davidkellis/query",
"com.github.davidpeklak fasqlitate_2.10": null,
"com.github.debop hibernate-rediscala_2.10": null,
"com.github.dhorman scala-async-rich_2.11": null,
"com.github.dhorman scalastm2-collection_2.11": null,
"com.github.dhorman scalastm2-core_2.11": null,
"com.github.dhorman scalastm2_2.11": null,
"com.github.dhorman stm_2.11": null,
"com.github.dmexe finagle-consul*": "dmexe/finagle-consul",
"com.github.dmrolfs root_2.11": null,
"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.easel scalajs-charts_sjs0.6_2.11": null,
"com.github.eduardofcbg playframework2-elasticsearch_*": "eduardofcbg/playframework2-elasticsearch",
"com.github.eduardofcbg redis-scala-utils_2.11": null,
"com.github.eerohele expek_2.11": null,
"com.github.floriankirmaier awscala_2.11": null,
"com.github.frossi85 slick-migration-api-flyway_2.11": null,
"com.github.frossi85 slick-migration-api_2.11": null,
"com.github.gbeaty scoute_2.11": null,
"com.github.gbeaty scoute_sjs0.6_2.11": null,
"com.github.gbeaty typelib_sjs0.6_2.11": null,
"com.github.hgiddens au-sms-core_*": "hgiddens/au-sms",
"com.github.hgiddens au-sms-smscentral_2.11": null,
"com.github.hgiddens au-sms-telstra_2.11": null,
"com.github.hgiddens au-sms_2.11": null,
"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_2.11": null,
"com.github.izmailoff marshallers_2.10": null,
"com.github.izmailoff mongoconnect_2.10": null,
"com.github.izmailoff root_2.10": null,
"com.github.izmailoff spray-mongo-record_2.10": null,
"com.github.izmailoff testutils_2.10": null,
"com.github.j5ik2o akka-http-swagger_2.11": null,
"com.github.japgolly.fork.specs2 *": "japgolly/specs2",
"com.github.jarlakxen reactive-ftp_2.11": null,
"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_2.10": null,
"com.github.johnreedlol scala-trace-debug_2.10": null,
"com.github.johnreedlol scala-trace-debug_2.11": null,
"com.github.joprice qmark-plugin_*": "joprice/qmark",
"com.github.joprice scalikejdbc*": "joprice/scalikejdbc",
"com.github.joprice securesocial_2.10": null,
"com.github.jw3 consulq_*": "jw3/consulq",
"com.github.jw3 mm4s-api_2.11": null,
"com.github.jw3 mm4s-bots_2.11": null,
"com.github.jw3 mm4s-dockerbots_2.11": null,
"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.master spark-stemming_2.10": null,
"com.github.meln1k reactive-telegrambot*": "meln1k/reactive-telegrambot",
"com.github.mkroli dns4s*": "mkroli/dns4s",
"com.github.mkroli scrand_2.10": null,
"com.github.mkroli scrand_2.11": null,
"com.github.mkroli scrand_2.12": null,
"com.github.mkroli.lpm *": "mkroli/lpm",
"com.github.mmizutani play-gulp_*": "mmizutani/sbt-play-gulp",
"com.github.mskimm ann4s_2.10": null,
"com.github.mskimm ann4s_2.11": null,
"com.github.mskimm annoy4s_2.10": null,
"com.github.mskimm annoy4s_2.11": null,
"com.github.mskimm tensorflow-scala_2.10": null,
"com.github.mskimm tensorflow-scala_2.11": null,
"com.github.njeuk dbmapper-macros_*": "njeuk/dbmapper-macros",
"com.github.njeuk dbmapper_*": "njeuk/dbmapper",
"com.github.olafurpg postgres-slick*": "olafurpg/postgres-slick",
"com.github.openreviews openreviews_2.10": null,
"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_2.11": null,
"com.github.piotrga async-dynamo_2.10": null,
"com.github.piotrga async-dynamo_2.11": null,
"com.github.ratika19 akka-persistence-cassandra_2.10": null,
"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.satoshi.m8a akka-persistence-inmemory_*": "satoshi-m8a/akka-persistence-inmemory",
"com.github.saurfang sparksql-protobuf_2.10": null,
"com.github.scarman battlenet*": "hntd187/BattleNet",
"com.github.scyks playacl_*": "scyks/play-acl",
"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.stacycurl pimpathon_2.11": null,
"com.github.stacycurl pimpathon_2.12": null,
"com.github.thangiee league-of-legend-chat-lib-scala_*": "Thangiee/League-of-Legend-Chat-Lib-Scala",
"com.github.thangiee lol-chat-core_2.11": null,
"com.github.thangiee lol-chat-lib_2.11": null,
"com.github.thangiee riot-api-scala_*": "Thangiee/Riot-API-Scala",
"com.github.thangiee scala-frp_2.11": null,
"com.github.unisay mockserver-client-scala_*": "Unisay/mockserver-client-scala",
"com.github.unisay wired_2.11": null,
"com.github.walfie pogoprotos_2.11": null,
"com.github.yzernik bitcoin-scodec_*": "yzernik/bitcoin-scodec",
"com.github.yzernik btc-io_*": "yzernik/btc-io",
"com.googlecode.kiama kiama_*.0-M7": null,
"com.googlecode.kiama kiama_*.0-RC1": null,
"com.googlecode.kiama kiama_*.0-RC2": null,
"com.googlecode.kiama kiama_*.0-RC3": null,
"com.googlecode.kiama kiama_*.0-RC5": null,
"com.googlecode.kiama kiama_2.10": null,
"com.googlecode.kiama kiama_2.10.0-M7": null,
"com.googlecode.kiama kiama_2.10.0-RC1": null,
"com.googlecode.kiama kiama_2.10.0-RC2": null,
"com.googlecode.kiama kiama_2.10.0-RC3": null,
"com.googlecode.kiama kiama_2.10.0-RC5": null,
"com.googlecode.kiama kiama_2.11": null,
"com.googlecode.kiama kiama_2.12": null,
"com.googlecode.mapperdao mapperdao_*": "kostaskougios/mapperdao",
"com.googlecode.scalascriptengine scalascriptengine_*": "kostaskougios/scalascriptengine",
"com.gu abacus-models_2.11": null,
"com.gu frontend-goo-tool_2.10": null,
"com.gu management-internal_2.11": null,
"com.gu management-logback_2.11": null,
"com.gu management-mongo_2.11": null,
"com.gu management-servlet-api_2.11": null,
"com.gu management_2.11": null,
"com.gu pa-client_*": "guardian/pa-football-client",
"com.gu panda-hmac_2.11": null,
"com.gu scala-slack-webhook_2.11": null,
"com.gu story-packages-presentation_*": "guardian/story-packages-presentation",
"com.gu tags-thrift-schema_*": "guardian/tags-thrift-schema",
"com.gu targeting-client-play24_2.11": null,
"com.gu targeting-client_2.11": null,
"com.gu targeting-thrift-schema_2.11": null,
"com.gu tools-web-driver-utils_2.11": null,
"com.gu.identity identity-cookie_2.10": null,
"com.gu.identity identity-cookie_2.11": null,
"com.gu.identity identity-crypto_2.10": null,
"com.gu.identity identity-crypto_2.11": null,
"com.gu.identity identity-model_2.10": null,
"com.gu.identity identity-model_2.11": null,
"com.gu.identity identity-request_2.10": null,
"com.gu.identity identity-request_2.11": null,
"com.gu.identity.api identity-api-client-lib_2.10": null,
"com.gu.identity.api identity-api-client-lib_2.11": null,
"com.haghard nosql-join-stream_*": "haghard/nosql-join-stream",
"com.hazelcast hazelcast-scala_*": "hazelcast/hazelcast-scala",
"com.hevylight nullable_*": "HevyLight/nullable",
"com.hibob cronish_2.11": null,
"com.hortonworks shc": null,
"com.hortonworks shc-core": null,
"com.hpe.cct cct-io_2.11": null,
"com.hpe.cct cct-nn_2.11": null,
"com.hpe.cct cct-sandbox_2.11": null,
"com.hpe.cct hdf-java_2.10": null,
"com.hpe.cct hdf-java_2.11": null,
"com.iadvize scala-json-api-library_*": "iadvize/scala-json-api-library",
"com.iheart kanaloa_*": "iheartradio/kanaloa",
"com.iheart play-swagger_*": "iheartradio/play-swagger",
"com.ii galahad-argonaut_2.11": null,
"com.ii galahad-core_2.11": null,
"com.ilunin disconsul_2.10": null,
"com.ilunin disconsul_2.11": null,
"com.imageintelligence fs2-sqs_2.11": null,
"com.imageintelligence galahad-argonaut_2.11": null,
"com.imageintelligence galahad-core_2.11": null,
"com.imageintelligence http4c_2.11": null,
"com.imageintelligence metrics_2.11": null,
"com.impactua bouncer-auth_2.11": null,
"com.impactua bouncer-commons_2.11": null,
"com.impactua redis-scala_2.11": null,
"com.instructure spark-csv*": null,
"com.instructure spark-csv_2.10": null,
"com.instructure spark-csv_2.11": null,
"com.izmeron planner_*": "haghard/planner",
"com.jamesward scheroku_2.10": null,
"com.jasperdenkers play-auth_2.11": null,
"com.jdgoldie akka-persistence-shared-inmemory_*": "jdgoldie/akka-persistence-shared-inmemory",
"com.joshcough remote-entities_*": "joshcough/Remote-Entities",
"com.joshcough scala-minecraft-plugin-api*": "joshcough/MinecraftPlugins",
"com.joshcough scala-minecraft-scala-library_*": "joshcough/MinecraftPlugins",
"com.jspha ureact_sjs0.6_2.11": null,
"com.jsuereth.snark snark-core_*": "jsuereth/snark",
"com.kenshoo metrics-play_2.11": null,
"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_2.11": null,
"com.kyleu jdub-async_*": "KyleU/jdub-async",
"com.lambdista money_2.10": null,
"com.learningobjects casal_*": "learningobjectsinc/casal",
"com.lightbend.cinnamon *": null,
"com.lightbend.cinnamon cinnamon-akka-spi_2.11": null,
"com.lightbend.cinnamon cinnamon-akka_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-conductr-elasticsearch-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-conductr-statsd-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-elasticsearch-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-elasticsearch1x-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-elasticsearch2x-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-http-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-jvm-metrics_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics-statsd-reporter_2.11": null,
"com.lightbend.cinnamon cinnamon-chmetrics_2.11": null,
"com.lightbend.cinnamon cinnamon-contrail_2.11": null,
"com.lightbend.cinnamon cinnamon-core_2.11": null,
"com.lightbend.cinnamon cinnamon-lagom_2.11": null,
"com.lightbend.cinnamon cinnamon-sandbox_2.11": null,
"com.lightbend.cinnamon cinnamon-slf4j-mdc_2.11": null,
"com.lightbend.cinnamon cinnamon-takipi_2.11": null,
"com.lihaoyi autowire*": "lihaoyi/autowire",
"com.lins05 utils_2.11": null,
"com.localytics kinesis-stream_2.10": null,
"com.localytics kinesis-stream_2.11": null,
"com.locusenergy solar-calculations_2.10": null,
"com.lonelyplanet akka-http-extensions_2.11": null,
"com.lonelyplanet prometheus-akka-http_2.11": null,
"com.lonelyplanet scala-healthcheck_2.11": null,
"com.lonelyplanet scala-util_2.11": null,
"com.loyalty migratr-core_2.11": null,
"com.loyalty.one hello-bintray_2.11": null,
"com.lucaongaro minhash_2.11": null,
"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_2.11": null,
"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_2.11": null,
"com.mandubian play-json-zipper*": "mandubian/play-json-zipper",
"com.mandubian scaledn*": "mandubian/scaledn",
"com.markatta scalenium_*": "johanandren/scalenium",
"com.markusjura swagger-play2_*": "markusjura/swagger-play2",
"com.meetup apple-of-my-iap_2.11": null,
"com.meetup archery*": "meetup/archery",
"com.meetup cupboard_2.11": null,
"com.meetup iap-api_2.10": null,
"com.meetup iap-api_2.11": null,
"com.meetup iap-service_2.11": null,
"com.meetup json-slim*": "meetup/json-slim",
"com.meetup json4s-java-time_2.11": null,
"com.meetup oss-best-sbt-jar_2.11": null,
"com.meetup scala-intacct-client_2.11": null,
"com.meetup scala-logger_2.11": null,
"com.meetup timeywimey-scala_2.11": null,
"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_2.10": null,
"com.micronautics awslib_scala*": "mslinn/awslib_scala",
"com.micronautics currency_2.10": null,
"com.micronautics currency_2.11": null,
"com.micronautics currency_2.12": null,
"com.micronautics futureperfect*": "mslinn/scalacourses-utils",
"com.micronautics pfview*": "mslinn/PFView",
"com.micronautics play-access-logger*": "mslinn/playAccessLogger",
"com.micronautics scalacourses-play-utils*": "mslinn/scalacourses-play-utils",
"com.micronautics scalacourses-slick-utils_2.10": null,
"com.micronautics scalacourses-slick-utils_2.11": null,
"com.micronautics scalacourses-utils*": "mslinn/scalacourses-utils",
"com.micronautics urlettes_2.11": null,
"com.microsoft.azure spark-eventhubs_2.10": null,
"com.microsoft.azure spark-eventhubs_2.11": null,
"com.microsoft.azure.iot iothub-react_2.11": null,
"com.microsoft.azure.iot iothub-react_2.12.0-RC1": null,
"com.microsoft.azure.iot iothub2kafka_2.11": null,
"com.microsoft.azure.iot kafka-connect-iothub_2.11": null,
"com.microsoft.azure.toketi toketi-iothub-react_2.11": null,
"com.migesok akka-persistence-in-memory-snapshot-store*": "migesok/akka-persistence-in-memory-snapshot-store",
"com.mirkocaserta.swatch swatch_2.10": null,
"com.monovore coast-core_2.10": null,
"com.monovore coast-samza_2.10": null,
"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_2.11": null,
"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_2.10": null,
"com.mysema.scalagen scalagen-maven-plugin_2.9.3": null,
"com.netaporter scala-i18n_2.10": null,
"com.nicta metagraph_2.10": null,
"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": null,
"com.nocandysw platform-executing_*.0-M8": null,
"com.nocandysw platform-executing_*.0-RC1": null,
"com.nocandysw platform-executing_*.0-RC3": null,
"com.nocandysw platform-executing_2.10": null,
"com.nocandysw platform-executing_2.11": null,
"com.nocandysw platform-executing_2.11.0-M7": null,
"com.nocandysw platform-executing_2.11.0-M8": null,
"com.nocandysw platform-executing_2.11.0-RC1": null,
"com.nocandysw platform-executing_2.11.0-RC3": null,
"com.onzo dynamodb-scala_*": "onzocom/dynamodb-scala",
"com.oohish bitcoin-scodec_2.11": null,
"com.originate nice-error-compiler-plugin_2.11": null,
"com.originate nice-error-transformer_2.11": null,
"com.originate sbt-nice-error_2.11": null,
"com.ostronom scala-ecb-parser_2.11": null,
"com.outtherelabs play-application-diagnostics_2.11": null,
"com.outworkers phantom-connectors_2.10": null,
"com.outworkers phantom-connectors_2.11": null,
"com.outworkers phantom-connectors_2.12": null,
"com.outworkers phantom-dsl_2.10": null,
"com.outworkers phantom-dsl_2.11": null,
"com.outworkers phantom-dsl_2.12": null,
"com.outworkers phantom-example_2.10": null,
"com.outworkers phantom-example_2.11": null,
"com.outworkers phantom-finagle_2.10": null,
"com.outworkers phantom-finagle_2.11": null,
"com.outworkers phantom-jdk8_2.10": null,
"com.outworkers phantom-jdk8_2.11": null,
"com.outworkers phantom-jdk8_2.12": null,
"com.outworkers phantom-streams_2.10": null,
"com.outworkers phantom-streams_2.11": null,
"com.outworkers phantom-thrift_2.10": null,
"com.outworkers phantom-thrift_2.11": null,
"com.outworkers util-domain_2.10": null,
"com.outworkers util-domain_2.11": null,
"com.outworkers util-domain_2.12": null,
"com.outworkers util-lift_2.10": null,
"com.outworkers util-lift_2.11": null,
"com.outworkers util-macros_2.10": null,
"com.outworkers util-macros_2.11": null,
"com.outworkers util-macros_2.12": null,
"com.outworkers util-parsers-cats_2.10": null,
"com.outworkers util-parsers-cats_2.11": null,
"com.outworkers util-parsers-cats_2.12": null,
"com.outworkers util-parsers_2.10": null,
"com.outworkers util-parsers_2.11": null,
"com.outworkers util-parsers_2.12": null,
"com.outworkers util-play_2.10": null,
"com.outworkers util-play_2.11": null,
"com.outworkers util-testing_2.10": null,
"com.outworkers util-testing_2.11": null,
"com.outworkers util-testing_2.12": null,
"com.outworkers util-urls_2.10": null,
"com.outworkers util-urls_2.11": null,
"com.outworkers util-urls_2.12": null,
"com.outworkers util-validators_2.10": null,
"com.outworkers util-validators_2.11": null,
"com.outworkers util-validators_2.12": null,
"com.outworkers util_2.10": null,
"com.outworkers util_2.11": null,
"com.ovoenergy common_2.11": null,
"com.ovoenergy comms-kafka-messages-common_2.11": null,
"com.ovoenergy comms-kafka-messages-internal_2.11": null,
"com.ovoenergy comms-kafka-messages-public_2.11": null,
"com.ovoenergy comms-kafka-messages_2.11": null,
"com.ovoenergy comms-kafka-serialisation_2.11": null,
"com.ovoenergy mailgun-api-client_2.11": null,
"com.owm owm-jmapprojlib_*": "pomadchin/owm-jmapprojlib",
"com.pagerduty metrics-api_2.10": null,
"com.pagerduty metrics-api_2.11": null,
"com.pagerduty metrics-dogstatsd_2.10": null,
"com.pagerduty metrics-dogstatsd_2.11": null,
"com.pasviegas scalajs-date_sjs0.6_2.11": null,
"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_2.10": null,
"com.pellucid sealerate*": "mrvisser/sealerate",
"com.peoplepattern lib-text*": "peoplepattern/lib-text",
"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*": null,
"com.plasmaconduit form_2.11": null,
"com.plasmaconduit github-auth-middleware_*": "plasmaconduit/github-auth-middleware",
"com.plasmaconduit http-request-logger-middleware_*": "plasmaconduit/http-request-logger-middleware",
"com.plasmaconduit jcg-traits*": null,
"com.plasmaconduit jcg-traits_2.10": null,
"com.plasmaconduit jcg-traits_2.11": null,
"com.plasmaconduit json*": "plasmaconduit/json",
"com.plasmaconduit json-codegen-traits*": null,
"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.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*": null,
"com.projectseptember freek_2.11": null,
"com.projectseptember freek_2.12": null,
"com.psm commons_2.11": null,
"com.q42 gae-codex_2.11": null,
"com.quadas konfig-twitter-util_2.11": null,
"com.quadas konfig-twitter-util_2.12": null,
"com.quadas konfig_2.11": null,
"com.quadas konfig_2.12": null,
"com.queirozf scala-date-time-utils_2.10": null,
"com.queirozf scala-date-time-utils_2.11": null,
"com.rbmhtechnology eventuate*": "RBMHTechnology/eventuate",
"com.rethinkscala change-feed_*": "kclay/rethink-scala",
"com.rethinkscala core*": "kclay/rethink-scala",
"com.rethinkscala root*": "kclay/rethink-scala",
"com.rossabaker jawn-streamz*": "rossabaker/jawn-streamz",
"com.roundeights hasher_2.11": null,
"com.ruiandrebatista dbio-cats_2.11": null,
"com.ruiandrebatista scalapaypalclient_2.11": null,
"com.ruiandrebatista scalapaypalobjects*": null,
"com.ruiandrebatista scalapaypalobjects_2.11": null,
"com.ruiandrebatista.godiva *": "ragb/godiva-scala",
"com.rxthings akka-injects_*": "jw3/akka-injects",
"com.rxthings cloud-config_2.11": null,
"com.rxthings webhooks*": "jw3/webhooks",
"com.sageserpent americium_2.11": null,
"com.samstarling finagle-prometheus_2.11": null,
"com.samthomson idiomears_2.11": null,
"com.samthomson scala-utils_2.11": null,
"com.sanoma.cda maxmind-geoip2-scala*": "Sanoma-CDA/maxmind-geoip2-scala",
"com.scalafi scala-openbook*": "ezhulenev/scala-openbook",
"com.scalafi.openbook scala-openbook*": null,
"com.scalafi.openbook scala-openbook_2.11": null,
"com.scalagen scalagen_2.10": null,
"com.scalagen scalagen_2.11": null,
"com.scalakata *": "MasseGuillaume/ScalaKata2",
"com.scalakata.metadoc *": "metadoc/metadoc",
"com.scalawilliam scala-fastcgi-client*": "ScalaWilliam/scala-fastcgi-client",
"com.scalway b3cls*": "scalway/b3cls",
"com.scalway scalatags-*": null,
"com.scalway scalatags-b3_2.10": null,
"com.scalway scalatags-b3_2.11": null,
"com.scalway scalatags-b3_sjs0.6_2.10": null,
"com.scalway scalatags-b3_sjs0.6_2.11": null,
"com.sciabarra agilesites2-setup_2.10": null,
"com.sclasen akka-persistence-dynamodb*": "akka/akka-persistence-dynamodb",
"com.sfxcode.sapphire sapphire-core_*": "sfxcode/sapphire-core",
"com.sfxcode.sapphire sapphire-extension_*": "sfxcode/sapphire-extension",
"com.shalloui typebase-lite-android_2.11": null,
"com.shalloui typebase-lite-core_2.11": null,
"com.shalloui typebase-lite-java_2.11": null,
"com.shengc fingers-cats_2.12": null,
"com.shengc fingers-core_2.12": null,
"com.shengc fingers-scalaz711_2.12": null,
"com.shengc fingers-scalaz72_2.12": null,
"com.simpleenergy se-stream-xml*": null,
"com.simpleenergy se-stream-xml_2.10": null,
"com.smartelk fluent-translator*": "SmartElk/fluent-translator",
"com.softwaremill akka-http-session*": "softwaremill/akka-http-session",
"com.softwaremill.clippy *": "softwaremill/scala-clippy",
"com.softwaremill reactive-kafka*": "akka/reactive-kafka",
"com.sorrentocorp scala-macros_2.11": null,
"com.sorrentocorp streaming-json-parser_2.11": null,
"com.specdevs specgine*": null,
"com.specdevs specgine-macros_2.10": null,
"com.specdevs specgine-macros_2.11": null,
"com.specdevs specgine_2.10": null,
"com.specdevs specgine_2.11": null,
"com.sphonic phantom-connector*": "Sphonic/sphonic-phantom",
"com.squants squants_2.11": null,
"com.squants squants_2.12": null,
"com.sungevity cma-es-scala*": null,
"com.sungevity cma-es-scala_2.10": null,
"com.sungevity cma-es-scala_2.11": null,
"com.swoop scala-sugar*": null,
"com.swoop scala-sugar_2.10": null,
"com.swoop spark-test-sugar_2.10": null,
"com.tapad scala-druid-client_2.11": null,
"com.tapad.scaerospike scaerospike_*": "Tapad/scaerospike",
"com.taraxe akka-http-jto-validation_2.11": null,
"com.taxis99 awsscala*": "99taxis/awsscala",
"com.ted.tools scala-memoization*": null,
"com.ted.tools scala-memoization_2.11": null,
"com.tersesystems play20-rememberme*": null,
"com.tersesystems play20-rememberme_2.10": null,
"com.thangiee freasy-monad_2.11": null,
"com.thangiee metadroid_2.11": null,
"com.thatscalaguy play-pjax_2.11": null,
"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 prudence*": "themillhousegroup/prudence",
"com.themillhousegroup sausagefactory*": "themillhousegroup/sausagefactory",
"com.themillhousegroup scoup*": "themillhousegroup/scoup",
"com.themillhousegroup scuggler*": "themillhousegroup/scuggler",
"com.themillhousegroup witchhunt*": "themillhousegroup/witchhunt",
"com.thenewmotion scynapse-root*": "thenewmotion/scynapse",
"com.theseventhsense utils-collections-akka_2.11": null,
"com.theseventhsense utils-collections-all_2.11": null,
"com.theseventhsense utils-collections-circe_2.11": null,
"com.theseventhsense utils-collections-mapdb_2.11": null,
"com.theseventhsense utils-collections-spark_2.11": null,
"com.theseventhsense utils-collections_2.11": null,
"com.theseventhsense utils-collections_sjs0.6_2.11": null,
"com.theseventhsense utils-datetime-circe_2.11": null,
"com.theseventhsense utils-datetime-circe_sjs0.6_2.11": null,
"com.theseventhsense utils-datetime-playjson_2.11": null,
"com.theseventhsense utils-datetime_2.11": null,
"com.theseventhsense utils-datetime_sjs0.6_2.11": null,
"com.theseventhsense.ec2akka ec2-akka_2.11": null,
"com.theseventhsense.ec2akka ecs-akka_2.11": null,
"com.ticketmaster.api commerce-scala_2.11": null,
"com.ticketmaster.api core-scala_2.11": null,
"com.ticketmaster.api discovery-scala_2.11": null,
"com.timeout akka-http-healthchecks_2.11": null,
"com.timeout docless_2.11": null,
"com.tjelp play-liquibase-plugin_2.10": null,
"com.tomtorsneyweir date-scala_2.10": null,
"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.twitter finagle-zookeeper*": "finagle/finagle-zookeeper",
"com.typesafe jse_*": "typesafehub/js-engine",
"com.typesafe npm_2.10": null,
"com.typesafe play-mini_2.10": null,
"com.typesafe play-plugins-mailer_2.10": null,
"com.typesafe play-plugins-redis_2.10": null,
"com.typesafe play-plugins-util_2.10": null,
"com.typesafe slick-extensions_*.0-RC5": null,
"com.typesafe slick-extensions_2.10": null,
"com.typesafe slick-extensions_2.10.0-RC5": null,
"com.typesafe webdriver_2.10": null,
"com.typesafe.activator activator-tutorial-generator_2.10": null,
"com.typesafe.activator analytics*": "typesafehub/activator",
"com.typesafe.activator runner*": null,
"com.typesafe.activator runner_2.10": null,
"com.typesafe.activator runner_2.11": null,
"com.typesafe.akka akka-contrib-extra*": "typesafehub/akka-contrib-extra",
"com.typesafe.akka akka-quartz-scheduler*": null,
"com.typesafe.akka akka-quartz-scheduler_2.10": null,
"com.typesafe.akka akka-quartz-scheduler_2.11": null,
"com.typesafe.atmos atmos*": null,
"com.typesafe.atmos atmos-event_2.10": null,
"com.typesafe.atmos atmos-event_2.11.0-M3": null,
"com.typesafe.atmos atmos-trace_2.10": null,
"com.typesafe.atmos atmos-trace_2.11.0-M3": null,
"com.typesafe.atmos trace-akka*": null,
"com.typesafe.atmos trace-akka-2.2.0-RC1_2.10": null,
"com.typesafe.atmos trace-akka-2.2.0-RC1_2.11.0-M3": null,
"com.typesafe.atmos trace-akka-2.2.0_2.10": null,
"com.typesafe.atmos trace-akka-2.2.0_2.11.0-M3": null,
"com.typesafe.atmos trace-akka-2.2.1_2.10": null,
"com.typesafe.cinnamon *": null,
"com.typesafe.cinnamon cinnamon-akka_2.11": null,
"com.typesafe.cinnamon cinnamon-chmetrics-conductr-statsd-reporter_2.11": null,
"com.typesafe.cinnamon cinnamon-chmetrics-http-reporter_2.11": null,
"com.typesafe.cinnamon cinnamon-chmetrics-jvm-metrics_2.11": null,
"com.typesafe.cinnamon cinnamon-chmetrics-statsd-reporter_2.11": null,
"com.typesafe.cinnamon cinnamon-chmetrics_2.11": null,
"com.typesafe.cinnamon cinnamon-console_2.11": null,
"com.typesafe.cinnamon cinnamon-core_2.11": null,
"com.typesafe.cinnamon cinnamon-graphite_2.11": null,
"com.typesafe.cinnamon cinnamon-http_2.11": null,
"com.typesafe.cinnamon cinnamon-jmx_2.11": null,
"com.typesafe.cinnamon cinnamon-metrics_2.11": null,
"com.typesafe.cinnamon cinnamon-signalfx_2.11": null,
"com.typesafe.cinnamon cinnamon-slf4j-mdc_2.11": null,
"com.typesafe.cinnamon cinnamon-slf4j_2.11": null,
"com.typesafe.cinnamon cinnamon-takipi_2.11": null,
"com.typesafe.conductr *": "typesafehub/conductr-lib",
"com.typesafe.config config": null,
"com.typesafe.config config_2.9.1": null,
"com.typesafe.contrail *": null,
"com.typesafe.contrail akka-syslog-adapter_2.11": null,
"com.typesafe.contrail akka-syslog-adapter_2.12": null,
"com.typesafe.contrail conductr-service-locator_2.11": null,
"com.typesafe.contrail conductr-service-locator_2.12": null,
"com.typesafe.contrail syslog-codec_2.11": null,
"com.typesafe.contrail syslog-codec_2.12": null,
"com.typesafe.dynamicdatasource *": null,
"com.typesafe.dynamicdatasource dynamic-data-source_2.11": null,