This repository has been archived by the owner on Apr 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmodule-maven.properties
3651 lines (3651 loc) · 237 KB
/
module-maven.properties
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
biz.aQute.bnd=biz.aQute.bnd:biz.aQute.bnd
biz.aQute.bnd.annotation=biz.aQute.bnd:biz.aQute.bnd.annotation
biz.aQute.bnd.exporters=biz.aQute.bnd:biz.aQute.bnd.exporters
biz.aQute.bnd.gradle=biz.aQute.bnd:biz.aQute.bnd.gradle
biz.aQute.bnd.maven=biz.aQute.bnd:biz.aQute.bnd.maven
biz.aQute.bnd.reporter=biz.aQute.bnd:biz.aQute.bnd.reporter
biz.aQute.bndlib=biz.aQute.bnd:biz.aQute.bndlib
br.com.jarch.agent=br.com.jarch:jarch-agent
ch.megard.akka.http.cors=ch.megard:akka-http-cors_2.11
ch.obermuhlner.math.big=ch.obermuhlner:big-math
ch.qos.logback.classic=ch.qos.logback:logback-classic
ch.qos.logback.core=ch.qos.logback:logback-core
ch.ralscha.extdirectspring=ch.ralscha:extdirectspring
ch.rasc.bsoncodec.annotations=ch.rasc:bsoncodec-annotations
ch.rasc.piwik=ch.rasc:piwik-tracking
ch.rasc.sse.eventbus=ch.rasc:sse-eventbus
ch.rasc.wamp2spring=ch.rasc:wamp2spring-core
ch.rasc.wamp2spring.security=ch.rasc:wamp2spring-security
ch.rasc.wamp2spring.session=ch.rasc:wamp2spring-session
ch.rasc.wampspring=ch.rasc:wampspring
ch.rasc.wampspring.security=ch.rasc:wampspring-security
ch.rasc.wampspring.session=ch.rasc:wampspring-session
ch.rasc.xodusqueue=ch.rasc:xodus-queue
ch.softappeal.yass=ch.softappeal.yass:yass
ch.softappeal.yass.generate=ch.softappeal.yass:yass-generate
ch.softappeal.yass.transport.ktor=ch.softappeal.yass:yass-transport-ktor
ch.softappeal.yass.transport.ws=ch.softappeal.yass:yass-transport-ws
cn.nextop.gadget.etcd=cn.nextop:gadget-etcd
cn.nextop.lite.pool=cn.nextop:lite-pool
co.elastic.apm.agent=co.elastic.apm:elastic-apm-agent
co.elastic.apm.api=co.elastic.apm:apm-agent-api
co.elastic.apm.opentracing=co.elastic.apm:apm-opentracing
co.paralleluniverse.quasar.actors=co.paralleluniverse:quasar-actors
co.paralleluniverse.quasar.core=co.paralleluniverse:quasar-core
co.paralleluniverse.quasar.disruptor=co.paralleluniverse:quasar-disruptor
co.paralleluniverse.quasar.kotlin=co.paralleluniverse:quasar-kotlin
co.paralleluniverse.quasar.reactivestreams=co.paralleluniverse:quasar-reactive-streams
com.aitusoftware.proxygen=com.aitusoftware:proxygen
com.aitusoftware.transport=com.aitusoftware:transport
com.assylias.jbloomberg=com.assylias:jbloomberg
com.athaydes.protobuf_tcp_rpc=com.athaydes.protobuf:protobuf-tcp-rpc
com.athaydes.protobuf_tcp_rsa_provider=com.athaydes.protobuf:protobuf-tcp-rsa-provider
com.athaydes.spock.reports=com.athaydes:spock-reports
com.blazebit.ai.utils=com.blazebit:blaze-ai-utils
com.blazebit.apt.utils=com.blazebit:blaze-apt-utils
com.blazebit.common.utils=com.blazebit:blaze-common-utils
com.blazebit.ee.apt=com.blazebit:blaze-ee-apt
com.blazebit.ee.utils=com.blazebit:blaze-ee-utils
com.blazebit.mail.utils=com.blazebit:blaze-mail-utils
com.blazebit.persistence.checkstyle.rules=com.blazebit:blaze-persistence-checkstyle-rules
com.blazebit.persistence.core=com.blazebit:blaze-persistence-core-api
com.blazebit.persistence.core.impl=com.blazebit:blaze-persistence-core-impl
com.blazebit.persistence.core.parser=com.blazebit:blaze-persistence-core-parser
com.blazebit.persistence.core.testsuite=com.blazebit:blaze-persistence-core-testsuite
com.blazebit.persistence.criteria=com.blazebit:blaze-persistence-jpa-criteria-api
com.blazebit.persistence.criteria.impl=com.blazebit:blaze-persistence-jpa-criteria-impl
com.blazebit.persistence.criteria.jpa2compatibility=com.blazebit:blaze-persistence-jpa-criteria-jpa-2-compatibility
com.blazebit.persistence.criteria.testsuite=com.blazebit:blaze-persistence-jpa-criteria-testsuite
com.blazebit.persistence.examples.showcase.base=com.blazebit:blaze-persistence-examples-showcase-base
com.blazebit.persistence.examples.showcase.fragments.basic=com.blazebit:blaze-persistence-examples-showcase-fragments-basic
com.blazebit.persistence.examples.showcase.fragments.cte=com.blazebit:blaze-persistence-examples-showcase-fragments-cte
com.blazebit.persistence.examples.showcase.fragments.spring.data=com.blazebit:blaze-persistence-examples-showcase-fragments-spring-data
com.blazebit.persistence.examples.showcase.runner.cdi=com.blazebit:blaze-persistence-examples-showcase-runner-cdi
com.blazebit.persistence.examples.showcase.runner.spring=com.blazebit:blaze-persistence-examples-showcase-runner-spring
com.blazebit.persistence.examples.showcase.spi=com.blazebit:blaze-persistence-examples-showcase-spi
com.blazebit.persistence.examples.spring.data.rest=com.blazebit:blaze-persistence-examples-spring-data-rest
com.blazebit.persistence.integration.datanucleus=com.blazebit:blaze-persistence-integration-datanucleus
com.blazebit.persistence.integration.deltaspike.data=com.blazebit:blaze-persistence-integration-deltaspike-data-api
com.blazebit.persistence.integration.deltaspike.data.base=com.blazebit:blaze-persistence-integration-deltaspike-data-base
com.blazebit.persistence.integration.deltaspike.data.impl=com.blazebit:blaze-persistence-integration-deltaspike-data-impl-1.7
com.blazebit.persistence.integration.deltaspike.data.rest=com.blazebit:blaze-persistence-integration-deltaspike-data-rest-api
com.blazebit.persistence.integration.deltaspike.data.rest.impl=com.blazebit:blaze-persistence-integration-deltaspike-data-rest-impl
com.blazebit.persistence.integration.deltaspike.data.testsuite=com.blazebit:blaze-persistence-integration-deltaspike-data-testsuite
com.blazebit.persistence.integration.eclipselink=com.blazebit:blaze-persistence-integration-eclipselink
com.blazebit.persistence.integration.hibernate=com.blazebit:blaze-persistence-integration-hibernate-4.2
com.blazebit.persistence.integration.hibernate.base=com.blazebit:blaze-persistence-integration-hibernate-base
com.blazebit.persistence.integration.jpa=com.blazebit:blaze-persistence-integration-jpa-base
com.blazebit.persistence.integration.openjpa=com.blazebit:blaze-persistence-integration-openjpa
com.blazebit.persistence.integration.spring.data=com.blazebit:blaze-persistence-integration-spring-data-base
com.blazebit.persistence.integration.spring.data.impl=com.blazebit:blaze-persistence-integration-spring-data-1.x
com.blazebit.persistence.integration.spring.data.rest=com.blazebit:blaze-persistence-integration-spring-data-rest
com.blazebit.persistence.integration.spring.data.testsuite=com.blazebit:blaze-persistence-integration-spring-data-testsuite
com.blazebit.persistence.integration.view.cdi=com.blazebit:blaze-persistence-integration-entity-view-cdi
com.blazebit.persistence.integration.view.spring=com.blazebit:blaze-persistence-integration-entity-view-spring
com.blazebit.persistence.testsuite.base.datanucleus=com.blazebit:blaze-persistence-testsuite-base-datanucleus
com.blazebit.persistence.testsuite.base.eclipselink=com.blazebit:blaze-persistence-testsuite-base-eclipselink
com.blazebit.persistence.testsuite.base.hibernate=com.blazebit:blaze-persistence-testsuite-base-hibernate
com.blazebit.persistence.testsuite.base.jpa=com.blazebit:blaze-persistence-testsuite-base-jpa
com.blazebit.persistence.testsuite.base.openjpa=com.blazebit:blaze-persistence-testsuite-base-openjpa
com.blazebit.persistence.view=com.blazebit:blaze-persistence-entity-view-api
com.blazebit.persistence.view.impl=com.blazebit:blaze-persistence-entity-view-impl
com.blazebit.persistence.view.testsuite=com.blazebit:blaze-persistence-entity-view-testsuite
com.blazebit.template.utils=com.blazebit:blaze-template-utils
com.calendarfx.recurrence=com.calendarfx:recurrence
com.calendarfx.view=com.calendarfx:view
com.caucho.hessian=com.caucho:hessian
com.codahale.aesgcmsiv=com.codahale:aes-gcm-siv
com.codahale.gimli=com.codahale:gimli
com.codahale.longmapper=com.codahale:longmapper
com.codahale.passpol=com.codahale:passpol
com.codahale.shamir=com.codahale:shamir
com.codahale.usl4j=com.codahale:usl4j
com.codahale.xsalsa20poly1305=com.codahale:xsalsa20poly1305
com.codeborne.selenide=com.codeborne:selenide
com.cosium.spring.data.jpa.entity.graph=com.cosium.spring.data:spring-data-jpa-entity-graph
com.cosium.vet=com.cosium.vet:vet
com.couchbase.client.core=com.couchbase.client:core-io
com.couchbase.client.java=com.couchbase.client:java-client
com.digitalascent.common=com.digitalascent:digitalascent-common
com.digitalascent.logger=com.digitalascent:digitalascent-fluent-logger
com.digitalascent.servlet=com.digitalascent:digitalascent-servlet
com.dlsc.formsfx=com.dlsc.formsfx:formsfx-core
com.dlsc.preferencesfx=com.dlsc.preferencesfx:preferencesfx-core
com.dongjinlee.beanpiece=com.dongjinlee:beanpiece
com.emarsys.rdb.connector.bigquery=com.emarsys:rdb-connector-bigquery_2.12
com.emarsys.rdb.connector.common=com.emarsys:rdb-connector-common_2.12
com.emarsys.rdb.connector.mssql=com.emarsys:rdb-connector-mssql_2.12
com.emarsys.rdb.connector.mysql=com.emarsys:rdb-connector-mysql_2.12
com.emarsys.rdb.connector.postgresql=com.emarsys:rdb-connector-postgresql_2.12
com.emarsys.rdb.connector.redshift=com.emarsys:rdb-connector-redshift_2.12
com.emarsys.rdb.connector.test=com.emarsys:rdb-connector-test_2.12
com.envimate=com.envimate:webmate
com.envimate.webmate.integrations.awslambda=com.envimate.webmate.integrations:webmate-awslambda
com.envimate.webmate.integrations.jetty=com.envimate.webmate.integrations:webmate-jetty
com.envimate.webmate.integrations.mapmate=com.envimate.webmate.integrations:webmate-mapmate
com.envimate.webmate.integrations.multipart=com.envimate.webmate.integrations:webmate-multipart
com.envimate.webmate.integrations.servlet=com.envimate.webmate.integrations:webmate-servlet
com.envimate.webmate.integrations.spark=com.envimate.webmate.integrations:webmate-spark
com.esotericsoftware.kryo=com.esotericsoftware:kryo
com.esotericsoftware.minlog=com.esotericsoftware:minlog
com.esotericsoftware.reflectasm=com.esotericsoftware:reflectasm
com.fasterxml.aalto=com.fasterxml:aalto-xml
com.fasterxml.classmate=com.fasterxml:classmate
com.fasterxml.jackson.core=com.fasterxml.jackson.core:jackson-core
com.fasterxml.jackson.dataformat.avro=com.fasterxml.jackson.dataformat:jackson-dataformat-avro
com.fasterxml.jackson.dataformat.cbor=com.fasterxml.jackson.dataformat:jackson-dataformat-cbor
com.fasterxml.jackson.dataformat.csv=com.fasterxml.jackson.dataformat:jackson-dataformat-csv
com.fasterxml.jackson.dataformat.ion=com.fasterxml.jackson.dataformat:jackson-dataformat-ion
com.fasterxml.jackson.dataformat.javaprop=com.fasterxml.jackson.dataformat:jackson-dataformat-properties
com.fasterxml.jackson.dataformat.protobuf=com.fasterxml.jackson.dataformat:jackson-dataformat-protobuf
com.fasterxml.jackson.dataformat.smile=com.fasterxml.jackson.dataformat:jackson-dataformat-smile
com.fasterxml.jackson.dataformat.xml=com.fasterxml.jackson.dataformat:jackson-dataformat-xml
com.fasterxml.jackson.dataformat.yaml=com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
com.fasterxml.jackson.datatype.guava=com.fasterxml.jackson.datatype:jackson-datatype-guava
com.fasterxml.jackson.datatype.hibernate3=com.fasterxml.jackson.datatype:jackson-datatype-hibernate3
com.fasterxml.jackson.datatype.hibernate4=com.fasterxml.jackson.datatype:jackson-datatype-hibernate4
com.fasterxml.jackson.datatype.hibernate5=com.fasterxml.jackson.datatype:jackson-datatype-hibernate5
com.fasterxml.jackson.datatype.hppc=com.fasterxml.jackson.datatype:jackson-datatype-hppc
com.fasterxml.jackson.datatype.jaxrs=com.fasterxml.jackson.datatype:jackson-datatype-jaxrs
com.fasterxml.jackson.datatype.jdk8=com.fasterxml.jackson.datatype:jackson-datatype-jdk8
com.fasterxml.jackson.datatype.joda=com.fasterxml.jackson.datatype:jackson-datatype-joda
com.fasterxml.jackson.datatype.jsonorg=com.fasterxml.jackson.datatype:jackson-datatype-json-org
com.fasterxml.jackson.datatype.jsr310=com.fasterxml.jackson.datatype:jackson-datatype-jsr310
com.fasterxml.jackson.datatype.jsr353=com.fasterxml.jackson.datatype:jackson-datatype-jsr353
com.fasterxml.jackson.jaxrs.cbor=com.fasterxml.jackson.jaxrs:jackson-jaxrs-cbor-provider
com.fasterxml.jackson.jaxrs.json=com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
com.fasterxml.jackson.jaxrs.smile=com.fasterxml.jackson.jaxrs:jackson-jaxrs-smile-provider
com.fasterxml.jackson.jaxrs.xml=com.fasterxml.jackson.jaxrs:jackson-jaxrs-xml-provider
com.fasterxml.jackson.jaxrs.yaml=com.fasterxml.jackson.jaxrs:jackson-jaxrs-yaml-provider
com.fasterxml.jackson.jr.ob=com.fasterxml.jackson.jr:jackson-jr-objects
com.fasterxml.jackson.jr.stree=com.fasterxml.jackson.jr:jackson-jr-stree
com.fasterxml.jackson.module.afterburner=com.fasterxml.jackson.module:jackson-module-afterburner
com.fasterxml.jackson.module.guice=com.fasterxml.jackson.module:jackson-module-guice
com.fasterxml.jackson.module.jaxb=com.fasterxml.jackson.module:jackson-module-jaxb-annotations
com.fasterxml.jackson.module.kotlin=com.fasterxml.jackson.module:jackson-module-kotlin
com.fasterxml.jackson.module.mrbean=com.fasterxml.jackson.module:jackson-module-mrbean
com.fasterxml.jackson.module.osgi=com.fasterxml.jackson.module:jackson-module-osgi
com.fasterxml.jackson.module.paramnames=com.fasterxml.jackson.module:jackson-module-parameter-names
com.fasterxml.jackson.module.paranamer=com.fasterxml.jackson.module:jackson-module-paranamer
com.fasterxml.uuid=com.fasterxml.uuid:java-uuid-generator
com.fazecast.jSerialComm=com.fazecast:jSerialComm
com.github.akarnokd.rxjava2jdk9interop=com.github.akarnokd:rxjava2-jdk9-interop
com.github.akurilov.commons=com.github.akurilov:java-commons
com.github.akurilov.confuse=com.github.akurilov:confuse
com.github.akurilov.confuse.io.json=com.github.akurilov:confuse-io-json
com.github.akurilov.confuse.io.yaml=com.github.akurilov:confuse-io-yaml
com.github.akurilov.fiber4j=com.github.akurilov:fiber4j
com.github.akurilov.netty.connection.pool=com.github.akurilov:netty-connection-pool
com.github.albfernandez.itext2=com.github.albfernandez:itext2
com.github.albfernandez.javadbf=com.github.albfernandez:javadbf
com.github.albfernandez.joinpdf=com.github.albfernandez:joinpdf
com.github.albfernandez.juniversalchardet=com.github.albfernandez:juniversalchardet
com.github.brake.threegpp.telecom_charsets=com.github.brake.threegpp:telecom-charsets
com.github.collinalpert.java2db=com.github.collinalpert:java2db
com.github.collinalpert.lambda2sql=com.github.collinalpert:lambda2sql
com.github.danielwegener.logback.kafka=com.github.danielwegener:logback-kafka-appender
com.github.davidmoten.io.extras=com.github.davidmoten:io-extras
com.github.davidmoten.javabuilder2=com.github.davidmoten:java-builder2
com.github.davidmoten.rxjava2.aws=com.github.davidmoten:rxjava2-aws
com.github.davidmoten.rxjava2.extras=com.github.davidmoten:rxjava2-extras
com.github.davidmoten.rxjava2.http=com.github.davidmoten:rxjava2-http
com.github.davidmoten.rxjava2.jdbc=com.github.davidmoten:rxjava2-jdbc
com.github.davidmoten.rxjava2.pool=com.github.davidmoten:rxjava2-pool
com.github.davidmoten.wordwrap=com.github.davidmoten:word-wrap
com.github.elopteryx.reflect=com.github.elopteryx:bean-mirror
com.github.elopteryx.upload=com.github.elopteryx:upload-parser
com.github.elopteryx.upload.rs=com.github.elopteryx:upload-parser-jaxrs
com.github.fburato.typesafecomparator.api=com.github.fburato.typesafecomparator:typesafecomparator-api
com.github.fburato.typesafecomparator.impl=com.github.fburato.typesafecomparator:typesafecomparator-impl
com.github.gquintana.beepbeep=com.github.gquintana.beepbeep:beepbeep
com.github.javaparser.core=com.github.javaparser:javaparser-core
com.github.javaparser.core.serialization=com.github.javaparser:javaparser-core-serialization
com.github.javaparser.symbolsolver.core=com.github.javaparser:javaparser-symbol-solver-core
com.github.javaparser.symbolsolver.logic=com.github.javaparser:javaparser-symbol-solver-logic
com.github.javaparser.symbolsolver.model=com.github.javaparser:javaparser-symbol-solver-model
com.github.jj3l.maven.example=com.github.jj3l:maven-example
com.github.johnpoth.jshell=com.github.johnpoth:jshell-maven-plugin
com.github.joonasvali.naturalmouse=com.github.joonasvali.naturalmouse:naturalmouse
com.github.librepdf.openpdf=com.github.librepdf:openpdf
com.github.luben.zstd_jni=com.github.luben:zstd-jni
com.github.marschall.charsequences=com.github.marschall:charsequences
com.github.marschall.getrandom=com.github.marschall:getrandom-provider
com.github.marschall.jfrjdbc=com.github.marschall:jfr-jdbc
com.github.marschall.jfrjdbctemplate=com.github.marschall:jfr-jdbctemplate
com.github.marschall.junit.jfr=com.github.marschall:junit-jfr
com.github.marschall.lineparser=com.github.marschall:line-parser
com.github.marschall.memoryfilesystem=com.github.marschall:memoryfilesystem
com.github.marschall.rdrand=com.github.marschall:rdrand-provider
com.github.marschall.stored.procedure.proxy=com.github.marschall:stored-procedure-proxy
com.github.marschall.stringdedupparser=com.github.marschall:string-dedup-parser
com.github.mjeanroy.junit.servers.core=com.github.mjeanroy:junit-servers-core
com.github.mjeanroy.junit.servers.jetty=com.github.mjeanroy:junit-servers-jetty
com.github.mjeanroy.junit.servers.tomcat=com.github.mjeanroy:junit-servers-tomcat
com.github.nruzic.extensions.eclipse.model.ad=com.github.nruzic.extensions.eclipse.model:com.github.nruzic.extensions.eclipse.model.ad
com.github.nruzic.extensions.eclipse.model.profile.prototype=com.github.nruzic.extensions.eclipse.model:com.github.nruzic.extensions.eclipse.model.profile.prototype
com.github.nullterminated.trylambda=com.github.nullterminated:trylambda
com.github.ocraft.s2client.api=com.github.ocraft:ocraft-s2client-api
com.github.ocraft.s2client.benchmark=com.github.ocraft:ocraft-s2client-benchmark
com.github.ocraft.s2client.bot=com.github.ocraft:ocraft-s2client-bot
com.github.ocraft.s2client.protocol=com.github.ocraft:ocraft-s2client-protocol
com.github.panga.beans=com.github.panga:java-beans-lite
com.github.pukkaone.grapid.grapid.compiler=com.github.pukkaone:grapid-compiler
com.github.pukkaone.grapid.grapid.core=com.github.pukkaone:grapid-core
com.github.pukkaone.grapid.grapid.maven.plugin=com.github.pukkaone:grapid-maven-plugin
com.github.pukkaone.grapid.grapid.web.spring.boot.starter=com.github.pukkaone:grapid-web-spring-boot-starter
com.github.richardroda.util.closeit=com.github.richardroda.util:closeit
com.github.robozonky.api=com.github.robozonky:robozonky-api
com.github.robozonky.app=com.github.robozonky:robozonky-app
com.github.robozonky.common=com.github.robozonky:robozonky-common
com.github.robozonky.installer=com.github.robozonky:robozonky-installer
com.github.robozonky.installer.panels=com.github.robozonky.installer:robozonky-installer-panels
com.github.robozonky.integration.zonkoid=com.github.robozonky:robozonky-integration-zonkoid
com.github.robozonky.integrations.stonky=com.github.robozonky:robozonky-integration-stonky
com.github.robozonky.marketplaces=com.github.robozonky:robozonky-marketplaces
com.github.robozonky.notifications=com.github.robozonky:robozonky-notifications
com.github.robozonky.strategy.natural=com.github.robozonky:robozonky-strategy-natural
com.github.robozonky.test=com.github.robozonky:robozonky-test
com.github.rosolko.wdm4j=com.github.rosolko:wdm4j
com.github.shiguruikai.combinatoricskt=com.github.shiguruikai:combinatoricskt
com.github.skjolber.aotc.agent=com.github.skjolber.aotc:agent
com.github.spotbugs.annotations=com.github.spotbugs:spotbugs-annotations
com.github.spotbugs.ant=com.github.spotbugs:spotbugs-ant
com.github.spotbugs.spotbugs=com.github.spotbugs:spotbugs
com.github.spotbugs.test=com.github.spotbugs:test-harness
com.github.spotbugs.test.core=com.github.spotbugs:test-harness-core
com.github.spotbugs.test.jupiter=com.github.spotbugs:test-harness-jupiter
com.github.themrmilchmann.kopt=com.github.themrmilchmann.kopt:kopt
com.github.themrmilchmann.mjl.events=com.github.themrmilchmann.mjl:mjl-events
com.github.themrmilchmann.mjl.options=com.github.themrmilchmann.mjl:mjl-options
com.github.tinosteinort.flda.accessor=com.github.tinosteinort:flda-core
com.github.tinosteinort.flda.fixedlengthstring=com.github.tinosteinort:flda-fixedlengthstring
com.github.tinosteinort.flda.stringlist=com.github.tinosteinort:flda-stringlist
com.github.tonivade.purefun=com.github.tonivade:purefun
com.github.vebqa.vebtal3270=com.github.vebqa:vebtal-3270
com.github.vebqa.vebtal5250=com.github.vebqa:vebtal-5250
com.github.vebqa.vebtalapi=com.github.vebqa:vebtal-api
com.github.vebqa.vebtalimagecompare=com.github.vebqa:vebtal-imagecompare
com.github.vebqa.vebtalmanager=com.github.vebqa:vebtal-manager
com.github.vebqa.vebtalpdf=com.github.vebqa:vebtal-pdf
com.github.vebqa.vebtalselenium=com.github.vebqa:vebtal-selenium
com.github.vebqa.vebtaltestdata=com.github.vebqa:vebtal-testdata
com.github.vlsi.mxgraph.jgraphx=com.github.vlsi.mxgraph:jgraphx
com.github.wumpz.diffutils=com.github.wumpz:diffutils
com.gitlab.haynes.paranamer=com.gitlab.haynes.paranamer:paranamer
com.gluonhq.strange=com.gluonhq:strange
com.gluonhq.strangefx=com.gluonhq:strangefx
com.google.cloud.tools.jib=com.google.cloud.tools:jib-core
com.google.googlejavaformat=com.google.googlejavaformat:google-java-format
com.h2database=com.h2database:h2
com.h2database.mvstore=com.h2database:h2-mvstore
com.hack23.cia.encrypt.properties=com.hack23.cia:encrypt.properties
com.hack23.cia.jms.broker=com.hack23.cia:jms.broker
com.hack23.cia.model.common.api=com.hack23.cia:model.common.api
com.hack23.cia.model.common.impl=com.hack23.cia:model.common.impl
com.hack23.cia.model.external.riksdagen.documentcontent.impl=com.hack23.cia:model.external.riksdagen.documentcontent.impl
com.hack23.cia.model.external.riksdagen.dokumentlista.impl=com.hack23.cia:model.external.riksdagen.dokumentlista.impl
com.hack23.cia.model.external.riksdagen.dokumentstatus.impl=com.hack23.cia:model.external.riksdagen.dokumentstatus.impl
com.hack23.cia.model.external.riksdagen.person.impl=com.hack23.cia:model.external.riksdagen.person.impl
com.hack23.cia.model.external.riksdagen.personlista.impl=com.hack23.cia:model.external.riksdagen.personlista.impl
com.hack23.cia.model.external.riksdagen.utskottsforslag.impl=com.hack23.cia:model.external.riksdagen.utskottsforslag.impl
com.hack23.cia.model.external.riksdagen.votering.impl=com.hack23.cia:model.external.riksdagen.votering.impl
com.hack23.cia.model.external.riksdagen.voteringlista.impl=com.hack23.cia:model.external.riksdagen.voteringlista.impl
com.hack23.cia.model.external.val.kommunvalkrets.impl=com.hack23.cia:model.external.val.kommunvalkrets.impl
com.hack23.cia.model.external.val.landstingvalkrets.impl=com.hack23.cia:model.external.val.landstingvalkrets.impl
com.hack23.cia.model.external.val.partier.impl=com.hack23.cia:model.external.val.partier.impl
com.hack23.cia.model.external.val.riksdagsvalkrets.impl=com.hack23.cia:model.external.val.riksdagsvalkrets.impl
com.hack23.cia.model.external.worldbank.countries.impl=com.hack23.cia:model.external.worldbank.countries.impl
com.hack23.cia.model.external.worldbank.data.impl=com.hack23.cia:model.external.worldbank.data.impl
com.hack23.cia.model.external.worldbank.indicators.impl=com.hack23.cia:model.external.worldbank.indicators.impl
com.hack23.cia.model.external.worldbank.topic.impl=com.hack23.cia:model.external.worldbank.topic.impl
com.hack23.cia.model.internal.application.user.impl=com.hack23.cia:model.internal.application.user.impl
com.hack23.cia.service.api=com.hack23.cia:service.api
com.hack23.cia.service.component.agent.api=com.hack23.cia:service.component.agent.api
com.hack23.cia.service.component.agent.impl=com.hack23.cia:service.component.agent.impl
com.hack23.cia.service.data.api=com.hack23.cia:service.data.api
com.hack23.cia.service.data.impl=com.hack23.cia:service.data.impl
com.hack23.cia.service.external.common=com.hack23.cia:service.external.common
com.hack23.cia.service.external.esv=com.hack23.cia:service.external.esv
com.hack23.cia.service.external.riksdagen=com.hack23.cia:service.external.riksdagen
com.hack23.cia.service.external.val=com.hack23.cia:service.external.val
com.hack23.cia.service.external.worldbank=com.hack23.cia:service.external.worldbank
com.hack23.cia.service.impl=com.hack23.cia:service.impl
com.hack23.cia.testfoundation=com.hack23.cia:testfoundation
com.hack23.cia.web.widgets=com.hack23.cia:web-widgets
com.hazelcast.client=com.hazelcast:hazelcast-client
com.hazelcast.core=com.hazelcast:hazelcast
com.hazelcast.jet=com.hazelcast.jet:hazelcast-jet
com.hazelcast.jet.avro=com.hazelcast.jet:hazelcast-jet-avro
com.hazelcast.jet.core=com.hazelcast.jet:hazelcast-jet-core
com.hazelcast.jet.hadoop=com.hazelcast.jet:hazelcast-jet-hadoop
com.hazelcast.jet.kafka=com.hazelcast.jet:hazelcast-jet-kafka
com.hazelcast.jet.spring=com.hazelcast.jet:hazelcast-jet-spring
com.headius.invokebinder=com.headius:invokebinder
com.headius.modulator=com.headius:modulator
com.helger.as2=com.helger:as2-lib
com.helger.as2.servlet=com.helger:as2-servlet
com.helger.as2lib.partner.mongodb=com.helger:as2-partnership-mongodb
com.helger.as4=com.helger:ph-as4-lib
com.helger.as4.esens=com.helger:ph-as4-esens
com.helger.as4.servlet=com.helger:ph-as4-servlet
com.helger.asic=com.helger:ph-asic
com.helger.bc=com.helger:ph-bc
com.helger.bde=com.helger:ph-bde
com.helger.bdve=com.helger:ph-bdve
com.helger.bdve.cii=com.helger:ph-bdve-cii
com.helger.bdve.ebinterface=com.helger:ph-bdve-ebinterface
com.helger.bdve.ehf=com.helger:ph-bdve-ehf
com.helger.bdve.en16931=com.helger:ph-bdve-en16931
com.helger.bdve.energieefactuur=com.helger:ph-bdve-energieefactuur
com.helger.bdve.oioubl=com.helger:ph-bdve-oioubl
com.helger.bdve.peppol=com.helger:ph-bdve-peppol
com.helger.bdve.simplerinvoicing=com.helger:ph-bdve-simplerinvoicing
com.helger.bdve.teapps=com.helger:ph-bdve-teapps
com.helger.bdve.ubl=com.helger:ph-bdve-ubl
com.helger.bdve.ublbe=com.helger:ph-bdve-ublbe
com.helger.charset=com.helger:ph-charset
com.helger.cii.d16a1=com.helger:ph-cii-d16a-1
com.helger.cii.d16b=com.helger:ph-cii-d16b
com.helger.cii.testfiles=com.helger:ph-cii-testfiles
com.helger.cli=com.helger:ph-cli
com.helger.collection=com.helger:ph-collection
com.helger.commons=com.helger:ph-commons
com.helger.css=com.helger:ph-css
com.helger.dao=com.helger:ph-dao
com.helger.datetime=com.helger:ph-datetime
com.helger.db.api=com.helger:ph-db-api
com.helger.db.jdbc=com.helger:ph-db-jdbc
com.helger.db.jpa=com.helger:ph-db-jpa
com.helger.ebinterface=com.helger:ph-ebinterface
com.helger.ebinterface.ubl=com.helger:ebinterface-ubl-mapping
com.helger.event=com.helger:ph-events
com.helger.font.alegreya_sans=com.helger:ph-fonts-alegreya-sans
com.helger.font.anaheim=com.helger:ph-fonts-anaheim
com.helger.font.api=com.helger:ph-fonts-api
com.helger.font.exo2=com.helger:ph-fonts-exo2
com.helger.font.lato2=com.helger:ph-fonts-lato2
com.helger.font.open_sans=com.helger:ph-fonts-open-sans
com.helger.font.roboto=com.helger:ph-fonts-roboto
com.helger.font.source_sans_pro=com.helger:ph-fonts-source-sans-pro
com.helger.genericode=com.helger:ph-genericode
com.helger.graph=com.helger:ph-graph
com.helger.holiday=com.helger:ph-holiday
com.helger.http=com.helger:ph-http
com.helger.httpclient=com.helger:ph-httpclient
com.helger.jaxb=com.helger:ph-jaxb
com.helger.jcodemodel=com.helger:jcodemodel
com.helger.jdmc.core=com.helger:ph-jdmc-core
com.helger.jdmc.example=com.helger:ph-jdmc-example
com.helger.json=com.helger:ph-json
com.helger.lesscommons=com.helger:ph-less-commons
com.helger.mail=com.helger:ph-mail
com.helger.masterdata=com.helger:ph-masterdata
com.helger.math=com.helger:ph-math
com.helger.matrix=com.helger:ph-matrix
com.helger.network=com.helger:ph-network
com.helger.pd=com.helger:peppol-directory-api
com.helger.pd.businesscard=com.helger:peppol-directory-businesscard
com.helger.pd.client=com.helger:peppol-directory-client
com.helger.pd.indexer=com.helger:peppol-directory-indexer
com.helger.pdflayout4=com.helger:ph-pdf-layout4
com.helger.peppol=com.helger:peppol-commons
com.helger.peppol.as2client=com.helger:as2-peppol-client
com.helger.peppol.as2servlet=com.helger:as2-peppol-servlet
com.helger.peppol.sbdh=com.helger:peppol-sbdh
com.helger.peppol.smlclient=com.helger:peppol-sml-client
com.helger.peppol.smpclient=com.helger:peppol-smp-client
com.helger.peppol.smpserver=com.helger:peppol-smp-server-library
com.helger.peppol.smpserver.data.sql=com.helger:peppol-smp-server-sql
com.helger.peppol.smpserver.data.xml=com.helger:peppol-smp-server-xml
com.helger.peppol.testfiles=com.helger:peppol-testfiles
com.helger.photon.atom=com.helger:ph-oton-atom
com.helger.photon.basic=com.helger:ph-oton-basic
com.helger.photon.bootstrap3=com.helger:ph-oton-bootstrap3
com.helger.photon.bootstrap3.pages=com.helger:ph-oton-bootstrap3-pages
com.helger.photon.bootstrap3.stub=com.helger:ph-oton-bootstrap3-stub
com.helger.photon.bootstrap3.uictrls=com.helger:ph-oton-bootstrap3-uictrls
com.helger.photon.bootstrap4=com.helger:ph-oton-bootstrap4
com.helger.photon.bootstrap4.stub=com.helger:ph-oton-bootstrap4-stub
com.helger.photon.bootstrap4.uictrls=com.helger:ph-oton-bootstrap4-uictrls
com.helger.photon.connect=com.helger:ph-oton-connect
com.helger.photon.core=com.helger:ph-oton-core
com.helger.photon.exchange=com.helger:ph-oton-exchange
com.helger.photon.html=com.helger:ph-oton-html
com.helger.photon.html.jquery=com.helger:ph-oton-jquery
com.helger.photon.html.jscode=com.helger:ph-oton-jscode
com.helger.photon.icon=com.helger:ph-oton-icon
com.helger.photon.jetty=com.helger:ph-oton-jetty
com.helger.photon.security=com.helger:ph-oton-security
com.helger.photon.tinymce4=com.helger:ph-oton-tinymce4
com.helger.photon.uicore=com.helger:ph-oton-uicore
com.helger.photon.uictrls=com.helger:ph-oton-uictrls
com.helger.photon.uictrls.datatables=com.helger:ph-oton-datatables
com.helger.poi=com.helger:ph-poi
com.helger.quartz=com.helger:ph-mini-quartz
com.helger.sbdh=com.helger:ph-sbdh
com.helger.schedule=com.helger:ph-schedule
com.helger.schematron=com.helger:ph-schematron
com.helger.schematron.ant=com.helger:ph-schematron-ant-task
com.helger.schematron.testfiles=com.helger:ph-schematron-testfiles
com.helger.schematron.validator=com.helger:ph-schematron-validator
com.helger.scope=com.helger:ph-scopes
com.helger.scopes=com.helger:ph-scopes
com.helger.security=com.helger:ph-security
com.helger.servlet=com.helger:ph-servlet
com.helger.settings=com.helger:ph-settings
com.helger.sitemap=com.helger:ph-sitemap
com.helger.smtp=com.helger:ph-smtp
com.helger.tenancy=com.helger:ph-tenancy
com.helger.tree=com.helger:ph-tree
com.helger.ubl.api=com.helger:ph-ubl-api
com.helger.ubl.testfiles=com.helger:ph-ubl-testfiles
com.helger.ubl20=com.helger:ph-ubl20
com.helger.ubl20.codelist=com.helger:ph-ubl20-codelists
com.helger.ubl21=com.helger:ph-ubl21
com.helger.ubl21.codelist=com.helger:ph-ubl21-codelists
com.helger.ubl22=com.helger:ph-ubl22
com.helger.ubl22.codelist=com.helger:ph-ubl22-codelists
com.helger.ublpe=com.helger:ph-ublpe
com.helger.ubltr=com.helger:ph-ubltr
com.helger.useragent=com.helger:ph-useragent
com.helger.web=com.helger:ph-web
com.helger.wsclient=com.helger:ph-wsclient
com.helger.xml=com.helger:ph-xml
com.helger.xmldsig=com.helger:ph-xmldsig
com.helger.xsds.ccts.cct.schemamodule=com.helger:ph-xsds-ccts-cct-schemamodule
com.helger.xsds.xades132=com.helger:ph-xsds-xades132
com.helger.xsds.xades141=com.helger:ph-xsds-xades141
com.helger.xsds.xmldsig=com.helger:ph-xsds-xmldsig
com.helger.xsds.xmldsig11=com.helger:ph-xsds-xmldsig11
com.helger.xservlet=com.helger:ph-xservlet
com.hello2morrow.sonargraph.integration.access=com.hello2morrow:sonargraph-integration-access
com.ibm.icu=com.ibm.icu:icu4j
com.ibm.icu.charset=com.ibm.icu:icu4j-charset
com.ibm.icu.localespi=com.ibm.icu:icu4j-localespi
com.illucit.instatrie=com.illucit:instatrie
com.illucit.lucene.utils=com.illucit:lucene-utils
com.imsweb.algorithms=com.imsweb:algorithms
com.imsweb.algorithms.staging=com.imsweb:staging-client-java
com.imsweb.datagenerator=com.imsweb:data-generator
com.imsweb.geocoder=com.imsweb:naaccr-geocoder-client
com.imsweb.layout=com.imsweb:layout
com.imsweb.mph=com.imsweb:mph
com.imsweb.naaccrxml=com.imsweb:naaccr-xml
com.imsweb.seerapi.client=com.imsweb:seerapi-client-java
com.imsweb.seerdata=com.imsweb:seerdata-utility
com.imsweb.seerutils=com.imsweb:seerutils
com.imsweb.seerutilsgui=com.imsweb:seerutils-gui
com.imsweb.staging.cs=com.imsweb:staging-algorithm-cs
com.imsweb.staging.tnm=com.imsweb:staging-algorithm-tnm
com.imsweb.validation=com.imsweb:validation
com.imsweb.x12=com.imsweb:x12-parser
com.io7m.changelog.cmdline=com.io7m.changelog:com.io7m.changelog.cmdline
com.io7m.changelog.core=com.io7m.changelog:com.io7m.changelog.core
com.io7m.changelog.parser.api=com.io7m.changelog:com.io7m.changelog.parser.api
com.io7m.changelog.schema=com.io7m.changelog:com.io7m.changelog.schema
com.io7m.changelog.text=com.io7m.changelog:com.io7m.changelog.text
com.io7m.changelog.text.api=com.io7m.changelog:com.io7m.changelog.text.api
com.io7m.changelog.text.vanilla=com.io7m.changelog:com.io7m.changelog.text.vanilla
com.io7m.changelog.writer.api=com.io7m.changelog:com.io7m.changelog.writer.api
com.io7m.changelog.xml.api=com.io7m.changelog:com.io7m.changelog.xml.api
com.io7m.changelog.xml.vanilla=com.io7m.changelog:com.io7m.changelog.xml.vanilla
com.io7m.immutables.style=com.io7m.immutables.style:com.io7m.immutables.style
com.io7m.jaffirm.core=com.io7m.jaffirm:com.io7m.jaffirm.core
com.io7m.jaffirm.documentation=com.io7m.jaffirm:com.io7m.jaffirm.documentation
com.io7m.jcoords.core=com.io7m.jcoords:com.io7m.jcoords.core
com.io7m.jcoords.documentation=com.io7m.jcoords:com.io7m.jcoords.documentation
com.io7m.jequality.core=com.io7m.jequality:com.io7m.jequality.core
com.io7m.jequality.documentation=com.io7m.jequality:com.io7m.jequality.documentation
com.io7m.jeucreader.core=com.io7m.jeucreader:com.io7m.jeucreader.core
com.io7m.jfsm.core=com.io7m.jfsm:com.io7m.jfsm.core
com.io7m.jfsm.documentation=com.io7m.jfsm:com.io7m.jfsm.documentation
com.io7m.jintegers.core=com.io7m.jintegers:com.io7m.jintegers.core
com.io7m.jintegers.documentation=com.io7m.jintegers:com.io7m.jintegers.documentation
com.io7m.jinterp.core=com.io7m.jinterp:com.io7m.jinterp.core
com.io7m.jinterp.documentation=com.io7m.jinterp:com.io7m.jinterp.documentation
com.io7m.jlexing.core=com.io7m.jlexing:com.io7m.jlexing.core
com.io7m.jlexing.documentation=com.io7m.jlexing:com.io7m.jlexing.documentation
com.io7m.jmulticlose.core=com.io7m.jmulticlose:com.io7m.jmulticlose.core
com.io7m.jnfp.core=com.io7m.jnfp:com.io7m.jnfp.core
com.io7m.jnfp.documentation=com.io7m.jnfp:com.io7m.jnfp.documentation
com.io7m.jnull.core=com.io7m.jnull:com.io7m.jnull.core
com.io7m.jobj.core=com.io7m.jobj:com.io7m.jobj.core
com.io7m.jobj.documentation=com.io7m.jobj:com.io7m.jobj.documentation
com.io7m.jorchard.core=com.io7m.jorchard:com.io7m.jorchard.core
com.io7m.jorchard.documentation=com.io7m.jorchard:com.io7m.jorchard.documentation
com.io7m.jorchard.generators=com.io7m.jorchard:com.io7m.jorchard.generators
com.io7m.jpita.core=com.io7m.jpita:com.io7m.jpita.core
com.io7m.jpita.documentation=com.io7m.jpita:com.io7m.jpita.documentation
com.io7m.jpplib.core=com.io7m.jpplib:com.io7m.jpplib.core
com.io7m.jproperties.core=com.io7m.jproperties:com.io7m.jproperties.core
com.io7m.jproperties.documentation=com.io7m.jproperties:com.io7m.jproperties.documentation
com.io7m.jranges.core=com.io7m.jranges:com.io7m.jranges.core
com.io7m.jranges.documentation=com.io7m.jranges:com.io7m.jranges.documentation
com.io7m.jranges.tests=com.io7m.jranges:com.io7m.jranges.tests
com.io7m.jregions.core=com.io7m.jregions:com.io7m.jregions.core
com.io7m.jregions.documentation=com.io7m.jregions:com.io7m.jregions.documentation
com.io7m.jregions.generators=com.io7m.jregions:com.io7m.jregions.generators
com.io7m.jserial.core=com.io7m.jserial:com.io7m.jserial.core
com.io7m.jserial.documentation=com.io7m.jserial:com.io7m.jserial.documentation
com.io7m.jspiel.api=com.io7m.jspiel:com.io7m.jspiel.api
com.io7m.jspiel.cmdline=com.io7m.jspiel:com.io7m.jspiel.cmdline
com.io7m.jspiel.documentation=com.io7m.jspiel:com.io7m.jspiel.documentation
com.io7m.jspiel.tests=com.io7m.jspiel:com.io7m.jspiel.tests
com.io7m.jspiel.vanilla=com.io7m.jspiel:com.io7m.jspiel.vanilla
com.io7m.jsx.combinators=com.io7m.jsx:com.io7m.jsx.combinators
com.io7m.jsx.core=com.io7m.jsx:com.io7m.jsx.core
com.io7m.jsx.documentation=com.io7m.jsx:com.io7m.jsx.documentation
com.io7m.jsx.parser=com.io7m.jsx:com.io7m.jsx.parser
com.io7m.jsx.parser.api=com.io7m.jsx:com.io7m.jsx.parser.api
com.io7m.jsx.prettyprint=com.io7m.jsx:com.io7m.jsx.prettyprint
com.io7m.jtensors.core=com.io7m.jtensors:com.io7m.jtensors.core
com.io7m.jtensors.documentation=com.io7m.jtensors:com.io7m.jtensors.documentation
com.io7m.jtensors.generators=com.io7m.jtensors:com.io7m.jtensors.generators
com.io7m.jtensors.orthonormalization=com.io7m.jtensors:com.io7m.jtensors.orthonormalization
com.io7m.jtensors.storage.api=com.io7m.jtensors:com.io7m.jtensors.storage.api
com.io7m.jtensors.storage.bytebuffered=com.io7m.jtensors:com.io7m.jtensors.storage.bytebuffered
com.io7m.jtensors.storage.heap=com.io7m.jtensors:com.io7m.jtensors.storage.heap
com.io7m.junreachable.core=com.io7m.junreachable:com.io7m.junreachable.core
com.io7m.junreachable.documentation=com.io7m.junreachable:com.io7m.junreachable.documentation
com.io7m.junsigned.core=com.io7m.junsigned:com.io7m.junsigned.core
com.io7m.junsigned.documentation=com.io7m.junsigned:com.io7m.junsigned.documentation
com.io7m.junsigned.ranges=com.io7m.junsigned:com.io7m.junsigned.ranges
com.io7m.jwhere.cmdline=com.io7m.jwhere:com.io7m.jwhere.cmdline
com.io7m.jwhere.core=com.io7m.jwhere:com.io7m.jwhere.core
com.io7m.jwhere.documentation=com.io7m.jwhere:com.io7m.jwhere.documentation
com.io7m.jwhere.gui=com.io7m.jwhere:com.io7m.jwhere.gui
com.io7m.jwhere.gwhere=com.io7m.jwhere:com.io7m.jwhere.gwhere
com.io7m.jwhere.schema=com.io7m.jwhere:com.io7m.jwhere.schema
com.io7m.jwhere.search=com.io7m.jwhere:com.io7m.jwhere.search
com.io7m.jwhere.tests=com.io7m.jwhere:com.io7m.jwhere.tests
com.io7m.jxe.core=com.io7m.jxe:com.io7m.jxe.core
com.io7m.jxe.documentation=com.io7m.jxe:com.io7m.jxe.documentation
com.io7m.minisite.core=com.io7m.minisite:com.io7m.minisite.core
com.io7m.minisite.maven_plugin=com.io7m.minisite:com.io7m.minisite.maven_plugin
com.io7m.minisite.tests=com.io7m.minisite:com.io7m.minisite.tests
com.io7m.mutable.numbers.core=com.io7m.mutable.numbers:com.io7m.mutable.numbers.core
com.io7m.mutable.numbers.documentation=com.io7m.mutable.numbers:com.io7m.mutable.numbers.documentation
com.io7m.timehack6435126.core=com.io7m.timehack6435126:com.io7m.timehack6435126.core
com.io7m.timehack6435126.documentation=com.io7m.timehack6435126:com.io7m.timehack6435126.documentation
com.jfoenix=com.jfoenix:jfoenix
com.jongsoft.lang=com.jongsoft.lang:language
com.jongsoft.lang.collection=com.jongsoft.lang:collections
com.jongsoft.lang.common=com.jongsoft.lang:commons
com.jongsoft.lang.functional=com.jongsoft.lang:functional
com.jtconnors.socket=com.jtconnors.socket:com.jtconnors.socket
com.jwebmp.components.bootstrap.themes.sbadmin2=com.jwebmp:jwebmp-sb2-admin-theme
com.jwebmp.core=com.jwebmp:jwebmp-core
com.jwebmp.core.angularjs=com.jwebmp:jwebmp-angularjs
com.jwebmp.entityassist=com.jwebmp:entity-assist
com.jwebmp.guiced.rest=com.jwebmp:guiced-rest-services
com.jwebmp.guiced.swagger=com.jwebmp:guiced-swagger
com.jwebmp.guicedhazelcast=com.jwebmp:guiced-hazelcast
com.jwebmp.guicedinjection=com.jwebmp:guiced-injection
com.jwebmp.guicedpersistence=com.jwebmp:guiced-persistence
com.jwebmp.guicedpersistence.btm=com.jwebmp:guiced-persistence-btm
com.jwebmp.guicedpersistence.c3p0=com.jwebmp:guiced-persistence-c3p0
com.jwebmp.guicedpersistence.ehcache=com.jwebmp:guiced-persistence-ehcache
com.jwebmp.guicedpersistence.jpa=com.jwebmp:guiced-persistence-jpa
com.jwebmp.guicedpersistence.readers.eclipselink=com.jwebmp:guiced-persistence-eclipselink-reader
com.jwebmp.guicedpersistence.readers.hibernateproperties=com.jwebmp:guiced-persistence-hibernateproperties-reader
com.jwebmp.guicedpersistence.readers.systemproperties=com.jwebmp:guiced-persistence-systemproperties-reader
com.jwebmp.guicedpersistence.wildfly=com.jwebmp:guiced-persistence-wildfly
com.jwebmp.guicedservlets=com.jwebmp:guiced-servlets
com.jwebmp.guicedservlets.jsf=com.jwebmp:guiced-servlets-jsf
com.jwebmp.guicedservlets.requestscoped=com.jwebmp:guiced-servlets-request-scoper
com.jwebmp.interception=com.jwebmp:jwebmp-interception
com.jwebmp.logmaster=com.jwebmp:jwebmp-log-master
com.jwebmp.plugins.angularanimate=com.jwebmp:jwebmp-angular-animate
com.jwebmp.plugins.angularanimatedchange=com.jwebmp:jwebmp-angular-animated-change
com.jwebmp.plugins.angularautoexpand=com.jwebmp:jwebmp-angular-auto-expand
com.jwebmp.plugins.angularautofocus=com.jwebmp:jwebmp-angular-auto-focus
com.jwebmp.plugins.angularbootstrapdatetimepicker=com.jwebmp:jwebmp-bootstrap-date-time-picker
com.jwebmp.plugins.angularfastclick=com.jwebmp:jwebmp-angular-fastclick
com.jwebmp.plugins.angularfileupload=com.jwebmp:jwebmp-angular-file-upload
com.jwebmp.plugins.angularionslider=com.jwebmp:jwebmp-angular-ion-slider
com.jwebmp.plugins.angularnyabootstrapselector=com.jwebmp:jwebmp-bootstrap-nya-select
com.jwebmp.plugins.angularprettycheckboxes=com.jwebmp:jwebmp-angular-pretty-checkboxes
com.jwebmp.plugins.angularprogressbuttonstyles=com.jwebmp:jwebmp-angular-progress-button-styles
com.jwebmp.plugins.angularroute=com.jwebmp:jwebmp-angular-route
com.jwebmp.plugins.angularsanitize=com.jwebmp:jwebmp-angular-sanitize
com.jwebmp.plugins.angularscrollposition=com.jwebmp:jwebmp-angular-scroll-position
com.jwebmp.plugins.angularslimscroll=com.jwebmp:jwebmp-angular-slim-scroll
com.jwebmp.plugins.angulartouch=com.jwebmp:jwebmp-angular-touch
com.jwebmp.plugins.angulartrackwidth=com.jwebmp:jwebmp-angular-track-width
com.jwebmp.plugins.angularuibootstrap=com.jwebmp:jwebmp-angular-ui-bootstrap
com.jwebmp.plugins.angularuiselect=com.jwebmp:jwebmp-angular-ui-select
com.jwebmp.plugins.angularuisortable=com.jwebmp:jwebmp-angular-ui-sortable
com.jwebmp.plugins.angularzoomanimation=com.jwebmp:jwebmp-angular-ui-zoom
com.jwebmp.plugins.bit6=com.jwebmp:jwebmp-bit6
com.jwebmp.plugins.blockui=com.jwebmp:jwebmp-block-ui
com.jwebmp.plugins.blueimp.fileupload=com.jwebmp:jwebmp-blueimp-fileupload
com.jwebmp.plugins.blueimp.gallery=com.jwebmp:jwebmp-blueimp-gallery
com.jwebmp.plugins.bluradmin=com.jwebmp:jwebmp-blur-admin-theme
com.jwebmp.plugins.bootstrap=com.jwebmp:jwebmp-bootstrap
com.jwebmp.plugins.bootstrap.dialog=com.jwebmp:jwebmp-bootstrap-dialog
com.jwebmp.plugins.bootstrap4=com.jwebmp:jwebmp-bootstrap4
com.jwebmp.plugins.bootstrapselect=com.jwebmp:jwebmp-bootstrap-select
com.jwebmp.plugins.bootstrapswitch=com.jwebmp:jwebmp-bootstrap-switch
com.jwebmp.plugins.bootstraptagsinput=com.jwebmp:jwebmp-bootstrap-tags-input
com.jwebmp.plugins.bs4.dialog=com.jwebmp:jwebmp-bootstrap-dialog4
com.jwebmp.plugins.bsquickforms=com.jwebmp:jwebmp-bootstrap-quick-forms
com.jwebmp.plugins.c3=com.jwebmp:jwebmp-c3
com.jwebmp.plugins.cordovify=com.jwebmp:jwebmp-cordovify
com.jwebmp.plugins.d3=com.jwebmp:jwebmp-d3
com.jwebmp.plugins.d3.reingoldtilfordtree=com.jwebmp:jwebmp-d3-reigngold-tilford-tree
com.jwebmp.plugins.datatable=com.jwebmp:jwebmp-data-tables
com.jwebmp.plugins.dynamicsourcecode=com.jwebmp:jwebmp-dynamic-source-code-viewer
com.jwebmp.plugins.easypiechart=com.jwebmp:jwebmp-easy-pie-chart
com.jwebmp.plugins.fontawesome=com.jwebmp:jwebmp-font-awesome
com.jwebmp.plugins.fontawesome5=com.jwebmp:jwebmp-font-awesome5
com.jwebmp.plugins.fullcalendar=com.jwebmp:jwebmp-full-calendar
com.jwebmp.plugins.globalize.cultures=com.jwebmp:jwebmp-globalize
com.jwebmp.plugins.glyphicons=com.jwebmp:jwebmp-glyphicons
com.jwebmp.plugins.google.sourceprettify=com.jwebmp:jwebmp-google-source-code-prettify
com.jwebmp.plugins.imagemap=com.jwebmp:jwebmp-image-map-heatmap
com.jwebmp.plugins.ionic.ionicons=com.jwebmp:jwebmp-ion-icons
com.jwebmp.plugins.ionrangeslider=com.jwebmp:jwebmp-ion-range-slider
com.jwebmp.plugins.jqgradientlinear=com.jwebmp:jwebmp-gradients-linear-ie6
com.jwebmp.plugins.jqlayout=com.jwebmp:jwebmp-jquery-ui-layout
com.jwebmp.plugins.jqplot=com.jwebmp:jwebmp-jqplot
com.jwebmp.plugins.jqruler=com.jwebmp:jwebmp-jqruler
com.jwebmp.plugins.jqueryui=com.jwebmp:jwebmp-jquery-ui
com.jwebmp.plugins.jqueryui.themes=com.jwebmp:jwebmp-jquery-ui-themes
com.jwebmp.plugins.jqueryui.themes.nestable=com.jwebmp:jwebmp-jquery-ui-themes-nestable
com.jwebmp.plugins.jqxwidgets=com.jwebmp:jwebmp-jqx-widgets
com.jwebmp.plugins.jstree=com.jwebmp:jwebmp-jstree
com.jwebmp.plugins.leaflet=com.jwebmp:jwebmp-leafletjs
com.jwebmp.plugins.materialdesignicons=com.jwebmp:jwebmp-material-design-icons
com.jwebmp.plugins.metrojs=com.jwebmp:jwebmp-metro-tiles
com.jwebmp.plugins.modernizr=com.jwebmp:jwebmp-modernizr
com.jwebmp.plugins.moment=com.jwebmp:jwebmp-momentjs
com.jwebmp.plugins.ngslimscroll=com.jwebmp:jwebmp-ng-slim-scroll
com.jwebmp.plugins.pace=com.jwebmp:jwebmp-pace-plugin
com.jwebmp.plugins.particlejs=com.jwebmp:jwebmp-particlesjs
com.jwebmp.plugins.plusastab=com.jwebmp:jwebmp-plus-as-tab
com.jwebmp.plugins.quickforms=com.jwebmp:jwebmp-quickforms
com.jwebmp.plugins.radialsvgslider=com.jwebmp:jwebmp-radial-slider-gem
com.jwebmp.plugins.skycons=com.jwebmp:jwebmp-skycons
com.jwebmp.plugins.smartwizard=com.jwebmp:jwebmp-smart-wizard
com.jwebmp.plugins.smartwizard4=com.jwebmp:jwebmp-smart-wizard-bootstrap4
com.jwebmp.plugins.softhistorychange=com.jwebmp:jwebmp-soft-history-change
com.jwebmp.plugins.spectrum.colourpicker=com.jwebmp:jwebmp-spectrum-colour-picker
com.jwebmp.plugins.textangular=com.jwebmp:jwebmp-text-angular
com.jwebmp.plugins.textinputeffects=com.jwebmp:jwebmp-text-input-effects
com.jwebmp.plugins.themify.icons=com.jwebmp:jwebmp-themify-icons
com.jwebmp.plugins.toastr=com.jwebmp:jwebmp-toastr
com.jwebmp.plugins.verticaltimeline=com.jwebmp:jwebmp-vertical-timeline-css
com.jwebmp.plugins.waveseffect=com.jwebmp:jwebmp-waveseffect
com.jwebmp.plugins.weathericons=com.jwebmp:jwebmp-weathericons
com.jwebmp.plugins.weblogappender=com.jwebmp:jwebmp-web-log-appender
com.jwebmp.plugins.xeditable=com.jwebmp:jwebmp-xeditable
com.jwebmp.undertow=com.jwebmp:jwebmp-undertow
com.jwebmp.websockets=com.jwebmp:jwebmp-websockets
com.kohlschutter.junixsocket.core=com.kohlschutter.junixsocket:junixsocket-core
com.kohlschutter.junixsocket.nativecommon=com.kohlschutter.junixsocket:junixsocket-native-common
com.kohlschutter.junixsocket.nativecustom=com.kohlschutter.junixsocket:junixsocket-native-custom
com.mercateo.immutables=com.mercateo:default-immutables
com.microsoft.sqlserver.jdbc=com.microsoft.sqlserver:mssql-jdbc
com.moilioncircle.redis.replicator=com.moilioncircle:redis-replicator
com.ncredinburgh.incontrol=com.ncredinburgh:in-control
com.netflix.servo.apache=com.netflix.servo:servo-apache
com.netflix.servo.atlas=com.netflix.servo:servo-atlas
com.netflix.servo.aws=com.netflix.servo:servo-aws
com.netflix.servo.core=com.netflix.servo:servo-core
com.netflix.servo.example=com.netflix.servo:servo-example
com.netflix.servo.graphite=com.netflix.servo:servo-graphite
com.netflix.servo.tomcat=com.netflix.servo:servo-tomcat
com.netflix.spectator.agent=com.netflix.spectator:spectator-agent
com.netflix.spectator.api=com.netflix.spectator:spectator-api
com.netflix.spectator.atlas=com.netflix.spectator:spectator-reg-atlas
com.netflix.spectator.aws=com.netflix.spectator:spectator-ext-aws
com.netflix.spectator.aws2=com.netflix.spectator:spectator-ext-aws2
com.netflix.spectator.gc=com.netflix.spectator:spectator-ext-gc
com.netflix.spectator.ipc=com.netflix.spectator:spectator-ext-ipc
com.netflix.spectator.ipcservlet=com.netflix.spectator:spectator-ext-ipcservlet
com.netflix.spectator.jvm=com.netflix.spectator:spectator-ext-jvm
com.netflix.spectator.log4j1=com.netflix.spectator:spectator-ext-log4j1
com.netflix.spectator.log4j2=com.netflix.spectator:spectator-ext-log4j2
com.netflix.spectator.metrics3=com.netflix.spectator:spectator-reg-metrics3
com.netflix.spectator.micrometer=com.netflix.spectator:spectator-reg-micrometer
com.netflix.spectator.nflx=com.netflix.spectator:spectator-nflx-plugin
com.netflix.spectator.nflx.governator=com.netflix.spectator:spectator-nflx
com.netflix.spectator.perf=com.netflix.spectator:spectator-perf
com.netflix.spectator.placeholders=com.netflix.spectator:spectator-ext-placeholders
com.netflix.spectator.sandbox=com.netflix.spectator:spectator-ext-sandbox
com.netflix.spectator.servo=com.netflix.spectator:spectator-reg-servo
com.netflix.spectator.spark=com.netflix.spectator:spectator-ext-spark
com.netflix.spectator.spring=com.netflix.spectator:spectator-web-spring
com.netflix.spectator.stateless=com.netflix.spectator:spectator-reg-stateless
com.networknt.audit=com.networknt:audit
com.networknt.balance=com.networknt:balance
com.networknt.basic.auth=com.networknt:basic-auth
com.networknt.body=com.networknt:body
com.networknt.client=com.networknt:client
com.networknt.cluster=com.networknt:cluster
com.networknt.common=com.networknt:common
com.networknt.config=com.networknt:config
com.networknt.consul=com.networknt:consul
com.networknt.content=com.networknt:content
com.networknt.correlation=com.networknt:correlation
com.networknt.cors=com.networknt:cors
com.networknt.data.source=com.networknt:data-source
com.networknt.decryptor=com.networknt:decryptor
com.networknt.deref.token=com.networknt:deref-token
com.networknt.dump=com.networknt:dump
com.networknt.email.sender=com.networknt:email-sender
com.networknt.exception=com.networknt:exception
com.networknt.handler=com.networknt:handler
com.networknt.header=com.networknt:header
com.networknt.health=com.networknt:health
com.networknt.http.string=com.networknt:http-string
com.networknt.http.url=com.networknt:http-url
com.networknt.info=com.networknt:info
com.networknt.ip.whitelist=com.networknt:ip-whitelist
com.networknt.mask=com.networknt:mask
com.networknt.metrics=com.networknt:metrics
com.networknt.monadresult=com.networknt:monad-result
com.networknt.prometheus=com.networknt:prometheus
com.networknt.rate.limit=com.networknt:rate-limit
com.networknt.registry=com.networknt:registry
com.networknt.resource=com.networknt:resource
com.networknt.sanitizer=com.networknt:sanitizer
com.networknt.security=com.networknt:security
com.networknt.server=com.networknt:server
com.networknt.service=com.networknt:service
com.networknt.status=com.networknt:status
com.networknt.switcher=com.networknt:switcher
com.networknt.traceability=com.networknt:traceability
com.networknt.utility=com.networknt:utility
com.networknt.zookeeper=com.networknt:zookeeper
com.nexitia.emaginplatform.core.api=com.nexitia.emaginplatform:emagin-core-api
com.nexitia.emaginplatform.core.bridge=com.nexitia.emaginplatform:emagin-core-bridge
com.nexitia.emaginplatform.core.i18n=com.nexitia.emaginplatform:emagin-core-i18n
com.nexitia.emaginplatform.core.ioc=com.nexitia.emaginplatform:emagin-core-ioc
com.nexitia.emaginplatform.core.utils=com.nexitia.emaginplatform:emagin-core-utils
com.nexitia.emaginplatform.corebusiness.cloud.services=com.nexitia.emaginplatform:emagin-corebusiness-cloud-services
com.nexitia.emaginplatform.corebusiness.offline.operations=com.nexitia.emaginplatform:emagin-corebusiness-offline-operations
com.nexitia.emaginplatform.corebusiness.offline.services=com.nexitia.emaginplatform:emagin-corebusiness-offline-services
com.nexitia.emaginplatform.corebusiness.operations=com.nexitia.emaginplatform:emagin-corebusiness-cloud-operations
com.nexitia.emaginplatform.coreui.cloud.operations=com.nexitia.emaginplatform:emagin-coreui-cloud-operations
com.nexitia.emaginplatform.coreui.cloud.services=com.nexitia.emaginplatform:emagin-coreui-cloud-services
com.nexitia.emaginplatform.coreview.definition=com.nexitia.emaginplatform:emagin-jfxcore-viewdefinition
com.nextbreakpoint.ffmpeg4java=com.nextbreakpoint:com.nextbreakpoint.ffmpeg4java
com.nextbreakpoint.fork=com.nextbreakpoint:com.nextbreakpoint.fork
com.nextbreakpoint.freeimage4java=com.nextbreakpoint:com.nextbreakpoint.freeimage4java
com.nextbreakpoint.nextfractal.contextfree=com.nextbreakpoint:com.nextbreakpoint.nextfractal.contextfree
com.nextbreakpoint.nextfractal.core=com.nextbreakpoint:com.nextbreakpoint.nextfractal.core
com.nextbreakpoint.nextfractal.mandelbrot=com.nextbreakpoint:com.nextbreakpoint.nextfractal.mandelbrot
com.nextbreakpoint.nextfractal.runtime=com.nextbreakpoint:com.nextbreakpoint.nextfractal.runtime
com.nextbreakpoint.sqltemplate=com.nextbreakpoint:com.nextbreakpoint.sqltemplate
com.nextbreakpoint.try4java=com.nextbreakpoint:com.nextbreakpoint.try4java
com.opengamma.elsql=com.opengamma:elsql
com.opengamma.sdk.common=com.opengamma.sdk:sdk-common
com.opengamma.sdk.margin=com.opengamma.sdk:sdk-margin
com.opengamma.strata.basics=com.opengamma.strata:strata-basics
com.opengamma.strata.calc=com.opengamma.strata:strata-calc
com.opengamma.strata.collect=com.opengamma.strata:strata-collect
com.opengamma.strata.data=com.opengamma.strata:strata-data
com.opengamma.strata.loader=com.opengamma.strata:strata-loader
com.opengamma.strata.market=com.opengamma.strata:strata-market
com.opengamma.strata.math=com.opengamma.strata:strata-math
com.opengamma.strata.measure=com.opengamma.strata:strata-measure
com.opengamma.strata.pricer=com.opengamma.strata:strata-pricer
com.opengamma.strata.product=com.opengamma.strata:strata-product
com.opengamma.strata.report=com.opengamma.strata:strata-report
com.oracle.bedrock.coherence=com.oracle.bedrock.coherence:coherence-12.1.2-testing-support
com.oracle.bedrock.coherence.testing.support=com.oracle.bedrock.coherence:coherence-12.2.1-testing-support
com.oracle.bedrock.core=com.oracle.bedrock:bedrock-core
com.oracle.bedrock.runtime=com.oracle.bedrock:bedrock-runtime
com.oracle.bedrock.runtime.docker=com.oracle.bedrock:bedrock-runtime-docker
com.oracle.bedrock.runtime.jacoco=com.oracle.bedrock:bedrock-runtime-jacoco
com.oracle.bedrock.runtime.jprofiler=com.oracle.bedrock:bedrock-runtime-jprofiler
com.oracle.bedrock.runtime.k8s=com.oracle.bedrock:bedrock-runtime-k8s
com.oracle.bedrock.runtime.maven=com.oracle.bedrock:bedrock-runtime-maven
com.oracle.bedrock.runtime.remote=com.oracle.bedrock:bedrock-runtime-remote
com.oracle.bedrock.runtime.vagrant=com.oracle.bedrock:bedrock-runtime-vagrant
com.oracle.bedrock.runtime.virtual=com.oracle.bedrock:bedrock-runtime-virtual
com.oracle.bedrock.runtime.windows=com.oracle.bedrock:bedrock-runtime-windows
com.oracle.bedrock.testsupport=com.oracle.bedrock:bedrock-testing-support
com.orsonpdf.orsonpdf=com.orsonpdf:orsonpdf
com.peruncs.gwt.jwt=com.peruncs.gwt:gwt-jwt
com.peruncs.gwt.stripe=com.peruncs.gwt:gwt-stripe
com.peruncs.gwt.utils=com.peruncs.gwt:gwt-utils
com.peruncs.odbjca=com.peruncs:orientdb-jca
com.peruncs.odbjca.api=com.peruncs.odbjca:odbjca-api
com.powsybl.action.dsl=com.powsybl:powsybl-action-dsl
com.powsybl.action.dsl.spi=com.powsybl:powsybl-action-dsl-spi
com.powsybl.action.simulator=com.powsybl:powsybl-action-simulator
com.powsybl.action.util=com.powsybl:powsybl-action-util
com.powsybl.afs.core=com.powsybl:powsybl-afs-core
com.powsybl.afs.ext.base=com.powsybl:powsybl-afs-ext-base
com.powsybl.afs.local=com.powsybl:powsybl-afs-local
com.powsybl.afs.mapdb=com.powsybl:powsybl-afs-mapdb
com.powsybl.afs.mapdb.storage=com.powsybl:powsybl-afs-mapdb-storage
com.powsybl.afs.network.client=com.powsybl:powsybl-afs-network-client
com.powsybl.afs.network.server=com.powsybl:powsybl-afs-network-server
com.powsybl.afs.storage.api=com.powsybl:powsybl-afs-storage-api
com.powsybl.afs.ws.client=com.powsybl:powsybl-afs-ws-client
com.powsybl.afs.ws.client.utils=com.powsybl:powsybl-afs-ws-client-utils
com.powsybl.afs.ws.server=com.powsybl:powsybl-afs-ws-server
com.powsybl.afs.ws.server.utils=com.powsybl:powsybl-afs-ws-server-utils
com.powsybl.afs.ws.storage=com.powsybl:powsybl-afs-ws-storage
com.powsybl.afs.ws.utils=com.powsybl:powsybl-afs-ws-utils
com.powsybl.ampl.converter=com.powsybl:powsybl-ampl-converter
com.powsybl.cgmes.alternatives=com.powsybl:powsybl-cgmes-model-alternatives
com.powsybl.cgmes.conformity=com.powsybl:powsybl-cgmes-conformity
com.powsybl.cgmes.conversion=com.powsybl:powsybl-cgmes-conversion
com.powsybl.cgmes.model=com.powsybl:powsybl-cgmes-model
com.powsybl.cim.anonymiser=com.powsybl:powsybl-cim-anonymiser
com.powsybl.cim1.converter=com.powsybl:powsybl-cim1-converter
com.powsybl.cim1.model=com.powsybl:powsybl-cim1-model
com.powsybl.commons=com.powsybl:powsybl-commons
com.powsybl.computation.api=com.powsybl:powsybl-computation
com.powsybl.computation.local=com.powsybl:powsybl-computation-local
com.powsybl.computation.mpi=com.powsybl:powsybl-computation-mpi
com.powsybl.contingency.api=com.powsybl:powsybl-contingency-api
com.powsybl.contingency.dsl=com.powsybl:powsybl-contingency-dsl
com.powsybl.dsl=com.powsybl:powsybl-dsl
com.powsybl.entsoe.util=com.powsybl:powsybl-entsoe-util
com.powsybl.gse.afs.ext.base=com.powsybl:powsybl-gse-afs-ext-base
com.powsybl.gse.app=com.powsybl:powsybl-gse-app
com.powsybl.gse.explorer=com.powsybl:powsybl-gse-network-explorer
com.powsybl.gse.map=com.powsybl:powsybl-gse-network-map
com.powsybl.gse.security=com.powsybl:powsybl-gse-security-analysis
com.powsybl.gse.spi=com.powsybl:powsybl-gse-spi
com.powsybl.gse.util=com.powsybl:powsybl-gse-util
com.powsybl.iidm.api=com.powsybl:powsybl-iidm-api
com.powsybl.iidm.converter.api=com.powsybl:powsybl-iidm-converter-api
com.powsybl.iidm.impl=com.powsybl:powsybl-iidm-impl
com.powsybl.iidm.reducer=com.powsybl:powsybl-iidm-reducer
com.powsybl.iidm.test=com.powsybl:powsybl-iidm-test
com.powsybl.iidm.util=com.powsybl:powsybl-iidm-util
com.powsybl.iidm.xml=com.powsybl:powsybl-iidm-xml-converter
com.powsybl.itools=com.powsybl:powsybl-itools-packager-maven-plugin
com.powsybl.loadflow.api=com.powsybl:powsybl-loadflow-api
com.powsybl.loadflow.results.completion=com.powsybl:powsybl-loadflow-results-completion
com.powsybl.loadflow.validation=com.powsybl:powsybl-loadflow-validation
com.powsybl.math=com.powsybl:powsybl-math
com.powsybl.scripting=com.powsybl:powsybl-scripting
com.powsybl.security=com.powsybl:powsybl-security-analysis-api
com.powsybl.security.afs=com.powsybl:powsybl-security-analysis-afs
com.powsybl.security.afs.local=com.powsybl:powsybl-security-analysis-afs-local
com.powsybl.security.api=com.powsybl:powsybl-sensitivity-api
com.powsybl.simulation.api=com.powsybl:powsybl-simulation-api
com.powsybl.timeseries.api=com.powsybl:powsybl-time-series-api
com.powsybl.tools=com.powsybl:powsybl-tools
com.powsybl.triplestore.api=com.powsybl:powsybl-triple-store-api
com.powsybl.triplestore.impl.blazegraph=com.powsybl:powsybl-triple-store-impl-blazegraph
com.powsybl.triplestore.impl.jena=com.powsybl:powsybl-triple-store-impl-jena
com.powsybl.triplestore.impl.rdf4j=com.powsybl:powsybl-triple-store-impl-rdf4j
com.powsybl.triplestore.test=com.powsybl:powsybl-triple-store-test
com.powsybl.ucte.converter=com.powsybl:powsybl-ucte-converter
com.powsybl.ucte.network=com.powsybl:powsybl-ucte-network
com.rabbitmq.client=com.rabbitmq:amqp-client
com.rabbitmq.http.client=com.rabbitmq:http-client
com.rabbitmq.jms=com.rabbitmq.jms:rabbitmq-jms
com.rabbitmq.perf=com.rabbitmq:perf-test
com.remondis.remap=com.remondis:remap
com.reprezen.rapidml=com.reprezen.rapidml:com.reprezen.rapidml
com.reprezen.rapidml.model=com.reprezen.rapidml:com.reprezen.rapidml.model
com.rometools.rome=com.rometools:rome
com.rometools.rome.modules=com.rometools:rome-modules
com.rometools.rome.opml=com.rometools:rome-opml
com.rometools.rome.utils=com.rometools:rome-utils
com.rudolfschmidt.alkun=com.rudolfschmidt:alkun
com.rudolfschmidt.http=com.rudolfschmidt.http:http
com.senacor.elasticsearch.evolution.core=com.senacor.elasticsearch.evolution:elasticsearch-evolution-core
com.senacor.elasticsearch.evolution.spring.boot.starter=com.senacor.elasticsearch.evolution:spring-boot-starter-elasticsearch-evolution
com.sothawo.mapjfx=com.sothawo:mapjfx
com.spotify.futures=com.spotify:futures-extra
com.spotify.sparkey=com.spotify.sparkey:sparkey
com.squareup.javapoet=com.squareup:javapoet
com.squareup.kotlinpoet=com.squareup:kotlinpoet
com.squareup.moshi=com.squareup.moshi:moshi
com.squareup.moshi.adapters=com.squareup.moshi:moshi-adapters
com.squareup.moshi.kotlin=com.squareup.moshi:moshi-kotlin
com.sun.istack.runtime=com.sun.istack:istack-commons-runtime
com.sun.istack.tools=com.sun.istack:istack-commons-tools
com.sun.xml.bind=com.sun.xml.bind:jaxb-impl
com.sun.xml.fastinfoset=com.sun.xml.fastinfoset:FastInfoset
com.sun.xml.messaging.saaj=com.sun.xml.messaging.saaj:saaj-impl
com.sun.xml.ws=com.sun.xml.ws:rt
com.sun.xml.ws.fi=com.sun.xml.ws:rt-fi
com.sun.xml.ws.httpspi.servlet=com.sun.xml.ws:httpspi-servlet
com.sun.xml.ws.jaxws=com.sun.xml.ws:jaxws-rt
com.sun.xml.ws.policy=com.sun.xml.ws:policy
com.sun.xml.ws.servlet=com.sun.xml.ws:servlet
com.thecoderscorner.tcmenu.javaapi=com.thecoderscorner.tcmenu:tcMenuJavaAPI
com.thecoderscorner.tcmenu.plugin.api=com.thecoderscorner.tcmenu:tcMenuCodePluginApi
com.thorstenmarx.modules.api=com.thorstenmarx.modules:modules-api
com.thorstenmarx.modules.manager=com.thorstenmarx.modules:modules-manager
com.thoughtworks.qdox=com.thoughtworks.qdox:qdox
com.threeleaf.common.test=com.threeleaf:random4test
com.tngtech.archunit=com.tngtech.archunit:archunit
com.tngtech.archunit.junit4=com.tngtech.archunit:archunit-junit4
com.tngtech.archunit.junit5.api=com.tngtech.archunit:archunit-junit5-api
com.tngtech.archunit.junit5.engine=com.tngtech.archunit:archunit-junit5-engine
com.tngtech.archunit.junit5.engineapi=com.tngtech.archunit:archunit-junit5-engine-api
com.tngtech.junit.dataprovider.core=com.tngtech.junit.dataprovider:junit-dataprovider-core
com.tngtech.junit.dataprovider.junit4=com.tngtech.junit.dataprovider:junit4-dataprovider
com.tngtech.junit.dataprovider.jupiter=com.tngtech.junit.dataprovider:junit-jupiter-dataprovider
com.tngtech.junit.dataprovider.jupiter.params=com.tngtech.junit.dataprovider:junit-jupiter-params-dataprovider
com.torchmind.authenticator=com.torchmind:authenticator
com.torchmind.observable=com.torchmind:observables
com.torchmind.utility.cidr=com.torchmind.utility:cidr
com.torchmind.utility.version=com.torchmind.utility:version
com.tradeshift.sdk.accounts=com.tradeshift.sdk:tradeshift-sdk-accounts
com.tradeshift.sdk.apps=com.tradeshift.sdk:tradeshift-sdk-apps
com.tradeshift.sdk.assignments=com.tradeshift.sdk:tradeshift-sdk-assignments
com.tradeshift.sdk.campaign=com.tradeshift.sdk:tradeshift-sdk-campaign
com.tradeshift.sdk.codestyle=com.tradeshift.sdk:tradeshift-sdk-codestyle
com.tradeshift.sdk.coding=com.tradeshift.sdk:tradeshift-sdk-coding
com.tradeshift.sdk.documentfiles=com.tradeshift.sdk:tradeshift-sdk-documentfiles
com.tradeshift.sdk.documents=com.tradeshift.sdk:tradeshift-sdk-documents
com.tradeshift.sdk.network=com.tradeshift.sdk:tradeshift-sdk-linelinker
com.tradeshift.sdk.notifications=com.tradeshift.sdk:tradeshift-sdk-core
com.tradeshift.sdk.test=com.tradeshift.sdk:tradeshift-sdk-test
com.tradeshift.sdk.workflow=com.tradeshift.sdk:tradeshift-sdk-workflow
com.typesafe.netty.core=com.typesafe.netty:netty-reactive-streams
com.typesafe.netty.http=com.typesafe.netty:netty-reactive-streams-http
com.uniscon.immutables=com.uniscon:default-immutables
com.uvasoftware.scanii=com.uvasoftware:scanii-java
com.vicrab=com.vicrab:vicrab
com.vicrab.android=com.vicrab:vicrab-android
com.vicrab.log4j=com.vicrab:vicrab-log4j
com.vicrab.log4j2=com.vicrab:vicrab-log4j2
com.vicrab.logback=com.vicrab:vicrab-logback
com.vicrab.spring=com.vicrab:vicrab-spring
com.vladmihalcea.dbutil=com.vladmihalcea:db-util
com.vladmihalcea.hibernate.type=com.vladmihalcea:hibernate-types-4
com.zarbosoft.appdirsj=com.zarbosoft:appdirsj
com.zarbosoft.interface1=com.zarbosoft:interface
com.zarbosoft.luxem=com.zarbosoft:luxem
com.zarbosoft.pidgoon=com.zarbosoft:pidgoon
com.zarbosoft.pidgooncommand=com.zarbosoft:pidgoon-command
com.zarbosoft.rendaw.common=com.zarbosoft.rendaw:common
com.zaxxer.hikari=com.zaxxer:HikariCP
cz.jiripinkas.jsitemapgenerator=cz.jiripinkas:jsitemapgenerator
de.carne.jfx=de.carne:java-jfx
de.codecentric.batch.boot.file.to.db=de.codecentric:batch-boot-file-to-db
de.codecentric.batch.boot.simple=de.codecentric:batch-boot-simple
de.codecentric.batch.boot.simple.jsr352=de.codecentric:batch-boot-simple-jsr352
de.codecentric.batch.web.spring.boot.autoconfigure=de.codecentric:batch-web-spring-boot-autoconfigure
de.codecentric.batch.web.spring.boot.starter=de.codecentric:batch-web-spring-boot-starter
de.codecentric.spring.boot.admin.client=de.codecentric:spring-boot-admin-client
de.codecentric.spring.boot.admin.sample.consul=de.codecentric:spring-boot-admin-sample-consul
de.codecentric.spring.boot.admin.sample.custom.ui=de.codecentric:spring-boot-admin-sample-custom-ui
de.codecentric.spring.boot.admin.sample.eureka=de.codecentric:spring-boot-admin-sample-eureka
de.codecentric.spring.boot.admin.sample.hazelcast=de.codecentric:spring-boot-admin-sample-hazelcast
de.codecentric.spring.boot.admin.sample.reactive=de.codecentric:spring-boot-admin-sample-reactive
de.codecentric.spring.boot.admin.sample.servlet=de.codecentric:spring-boot-admin-sample-servlet
de.codecentric.spring.boot.admin.sample.zookeeper=de.codecentric:spring-boot-admin-sample-zookeeper
de.codecentric.spring.boot.admin.server=de.codecentric:spring-boot-admin-server
de.codecentric.spring.boot.admin.server.cloud=de.codecentric:spring-boot-admin-server-cloud
de.codecentric.spring.boot.admin.server.ui=de.codecentric:spring-boot-admin-server-ui
de.codecentric.spring.boot.admin.starter.client=de.codecentric:spring-boot-admin-starter-client
de.codecentric.spring.boot.admin.starter.server=de.codecentric:spring-boot-admin-starter-server
de.dentrassi.varlink.idl=de.dentrassi.varlink.idl:de.dentrassi.varlink.idl
de.huxhorn.lilith.api=de.huxhorn.lilith:de.huxhorn.lilith.constants
de.huxhorn.lilith.conditions=de.huxhorn.lilith:de.huxhorn.lilith.conditions
de.huxhorn.lilith.data.access=de.huxhorn.lilith:de.huxhorn.lilith.data.access
de.huxhorn.lilith.data.access.logback=de.huxhorn.lilith:de.huxhorn.lilith.logback.converter-access
de.huxhorn.lilith.data.converter=de.huxhorn.lilith:de.huxhorn.lilith.data.converter
de.huxhorn.lilith.data.corpus=de.huxhorn.lilith:de.huxhorn.lilith.data.corpus
de.huxhorn.lilith.data.eventsource=de.huxhorn.lilith:de.huxhorn.lilith.data.eventsource
de.huxhorn.lilith.data.logging=de.huxhorn.lilith:de.huxhorn.lilith.data.logging
de.huxhorn.lilith.data.logging.json=de.huxhorn.lilith:de.huxhorn.lilith.data.logging-json-serializer
de.huxhorn.lilith.logback.appender.core=de.huxhorn.lilith:de.huxhorn.lilith.logback.appender.multiplex-core
de.huxhorn.lilith.logback.classic=de.huxhorn.lilith:de.huxhorn.lilith.logback.classic
de.huxhorn.lilith.logback.tools=de.huxhorn.lilith:de.huxhorn.lilith.logback.tools