-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_sbom.json.reference.html
More file actions
5907 lines (5001 loc) · 388 KB
/
Copy pathexample_sbom.json.reference.html
File metadata and controls
5907 lines (5001 loc) · 388 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html><head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head><body><h1>Third Party Licenses and Information</h1><p>This page contains information regarding any third party code included with your software, including applicable third party software notices and/or additional terms and conditions.</p><h2>.\example_sbom.json</h2><table ><tr><th>Name</th><th>License</th></tr><tr><td>FastInfoset</td><td>Apache-2.0</td></tr><tr><td>FastInfoset</td><td>Apache-2.0 AND Eclipse Distribution License - v 1.0</td></tr><tr><td>JavaEWAH</td><td>Apache-2.0</td></tr><tr><td>activation</td><td>Common Development and Distribution License (CDDL) v1.0</td></tr><tr><td>activation</td><td>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</td></tr><tr><td>aesh</td><td>Apache-2.0</td></tr><tr><td>aesh</td><td>Apache-2.0</td></tr><tr><td>aether-api</td><td>EPL-1.0</td></tr><tr><td>aether-impl</td><td>EPL-1.0</td></tr><tr><td>aether-spi</td><td>EPL-1.0</td></tr><tr><td>aether-util</td><td>EPL-1.0</td></tr><tr><td>animal-sniffer-annotations</td><td>MIT</td></tr><tr><td>ant</td><td>Apache-2.0</td></tr><tr><td>ant-launcher</td><td>Apache-2.0</td></tr><tr><td>antlr</td><td>BSD License</td></tr><tr><td>aopalliance</td><td>Public Domain</td></tr><tr><td>apache-mime4j</td><td>Apache-2.0</td></tr><tr><td>apacheds-core</td><td>Apache-2.0</td></tr><tr><td>apacheds-core-annotations</td><td>Apache-2.0</td></tr><tr><td>apacheds-core-api</td><td>Apache-2.0</td></tr><tr><td>apacheds-core-avl</td><td>Apache-2.0</td></tr><tr><td>apacheds-core-constants</td><td>Apache-2.0</td></tr><tr><td>apacheds-core-shared</td><td>Apache-2.0</td></tr><tr><td>apacheds-i18n</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptor-kerberos</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-admin</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-authn</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-authz</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-changelog</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-collective</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-event</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-exception</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-journal</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-normalization</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-number</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-operational</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-referral</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-schema</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-subtree</td><td>Apache-2.0</td></tr><tr><td>apacheds-interceptors-trigger</td><td>Apache-2.0</td></tr><tr><td>apacheds-jdbm-partition</td><td>Apache-2.0</td></tr><tr><td>apacheds-jdbm1</td><td>Apache-2.0</td></tr><tr><td>apacheds-kerberos-codec</td><td>Apache-2.0</td></tr><tr><td>apacheds-ldif-partition</td><td>Apache-2.0</td></tr><tr><td>apacheds-mavibot-partition</td><td>Apache-2.0</td></tr><tr><td>apacheds-protocol-kerberos</td><td>Apache-2.0</td></tr><tr><td>apacheds-protocol-ldap</td><td>Apache-2.0</td></tr><tr><td>apacheds-protocol-shared</td><td>Apache-2.0</td></tr><tr><td>apacheds-server-annotations</td><td>Apache-2.0</td></tr><tr><td>apacheds-xdbm-partition</td><td>Apache-2.0</td></tr><tr><td>api-asn1-api</td><td>Apache-2.0</td></tr><tr><td>api-asn1-ber</td><td>Apache-2.0</td></tr><tr><td>api-i18n</td><td>Apache-2.0</td></tr><tr><td>api-ldap-client-api</td><td>Apache-2.0</td></tr><tr><td>api-ldap-codec-core</td><td>Apache-2.0</td></tr><tr><td>api-ldap-codec-standalone</td><td>Apache-2.0</td></tr><tr><td>api-ldap-extras-aci</td><td>Apache-2.0</td></tr><tr><td>api-ldap-extras-codec</td><td>Apache-2.0</td></tr><tr><td>api-ldap-extras-codec-api</td><td>Apache-2.0</td></tr><tr><td>api-ldap-extras-sp</td><td>Apache-2.0</td></tr><tr><td>api-ldap-extras-trigger</td><td>Apache-2.0</td></tr><tr><td>api-ldap-extras-util</td><td>Apache-2.0</td></tr><tr><td>api-ldap-model</td><td>Apache-2.0</td></tr><tr><td>api-ldap-net-mina</td><td>Apache-2.0</td></tr><tr><td>api-ldap-schema-data</td><td>Apache-2.0</td></tr><tr><td>api-util</td><td>Apache-2.0</td></tr><tr><td>arquillian-browser-screenshooter</td><td>GNU Lesser General Public License, Version 2.1</td></tr><tr><td>arquillian-config-api</td><td>Apache-2.0</td></tr><tr><td>arquillian-config-impl-base</td><td>Apache-2.0</td></tr><tr><td>arquillian-config-spi</td><td>Apache-2.0</td></tr><tr><td>arquillian-container-impl-base</td><td>Apache-2.0</td></tr><tr><td>arquillian-container-karaf-managed</td><td>Public Domain</td></tr><tr><td>arquillian-container-osgi</td><td>Public Domain</td></tr><tr><td>arquillian-container-spi</td><td>Apache-2.0</td></tr><tr><td>arquillian-container-test-api</td><td>Apache-2.0</td></tr><tr><td>arquillian-container-test-impl-base</td><td>Apache-2.0</td></tr><tr><td>arquillian-container-test-spi</td><td>Apache-2.0</td></tr><tr><td>arquillian-core-api</td><td>Apache-2.0</td></tr><tr><td>arquillian-core-impl-base</td><td>Apache-2.0</td></tr><tr><td>arquillian-core-spi</td><td>Apache-2.0</td></tr><tr><td>arquillian-drone-api</td><td>Public Domain</td></tr><tr><td>arquillian-drone-configuration</td><td>Public Domain</td></tr><tr><td>arquillian-drone-impl</td><td>Public Domain</td></tr><tr><td>arquillian-drone-spi</td><td>Public Domain</td></tr><tr><td>arquillian-drone-webdriver</td><td>Public Domain</td></tr><tr><td>arquillian-drone-webdriver-depchain</td><td>Missing</td></tr><tr><td>arquillian-junit-container</td><td>Apache-2.0</td></tr><tr><td>arquillian-junit-core</td><td>Apache-2.0</td></tr><tr><td>arquillian-phantom-driver</td><td>Apache-2.0</td></tr><tr><td>arquillian-protocol-jmx</td><td>Apache-2.0</td></tr><tr><td>arquillian-protocol-osgi</td><td>Public Domain</td></tr><tr><td>arquillian-protocol-servlet</td><td>Apache-2.0</td></tr><tr><td>arquillian-recorder-api</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-reporter-api</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-reporter-impl</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-reporter-spi</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-screenshooter-api</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-screenshooter-impl-base</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-screenshooter-spi</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-spi</td><td>Public Domain</td></tr><tr><td>arquillian-recorder-video-api</td><td>Public Domain</td></tr><tr><td>arquillian-spacelift</td><td>Public Domain</td></tr><tr><td>arquillian-spacelift-api</td><td>Public Domain</td></tr><tr><td>arquillian-test-api</td><td>Apache-2.0</td></tr><tr><td>arquillian-test-impl-base</td><td>Apache-2.0</td></tr><tr><td>arquillian-test-spi</td><td>Apache-2.0</td></tr><tr><td>arquillian-testenricher-initialcontext</td><td>Apache-2.0</td></tr><tr><td>arquillian-testenricher-osgi</td><td>Public Domain</td></tr><tr><td>asm</td><td>BSD</td></tr><tr><td>asm</td><td>BSD</td></tr><tr><td>aspectjweaver</td><td>EPL-1.0</td></tr><tr><td>awaitility</td><td>Apache-2.0</td></tr><tr><td>bcpkix-jdk15on</td><td>Bouncy Castle Licence</td></tr><tr><td>bcprov-jdk15on</td><td>Bouncy Castle Licence</td></tr><tr><td>btf</td><td>Lesser General Public License, version 3 or greater AND Apache-2.0</td></tr><tr><td>byte-buddy</td><td>Apache-2.0</td></tr><tr><td>byte-buddy</td><td>Apache-2.0</td></tr><tr><td>caffeine</td><td>Apache-2.0</td></tr><tr><td>camel-blueprint</td><td>Apache-2.0</td></tr><tr><td>camel-core</td><td>Apache-2.0</td></tr><tr><td>camel-core-osgi</td><td>Apache-2.0</td></tr><tr><td>camel-core-xml</td><td>Apache-2.0</td></tr><tr><td>camel-http-common</td><td>Apache-2.0</td></tr><tr><td>camel-jetty-common</td><td>Apache-2.0</td></tr><tr><td>camel-jetty9</td><td>Apache-2.0</td></tr><tr><td>camel-undertow</td><td>Apache-2.0</td></tr><tr><td>cdi-api</td><td>Apache-2.0</td></tr><tr><td>cdi-api</td><td>Apache-2.0</td></tr><tr><td>cglib</td><td>ASF 2.0</td></tr><tr><td>cglib-nodep</td><td>Missing</td></tr><tr><td>cglib-nodep</td><td>ASF 2.0</td></tr><tr><td>checker-compat-qual</td><td>GNU General Public License, version 2 (GPL2), with the classpath exception AND MIT</td></tr><tr><td>classmate</td><td>Apache-2.0</td></tr><tr><td>classmate</td><td>Apache-2.0</td></tr><tr><td>commons-beanutils</td><td>Apache-2.0</td></tr><tr><td>commons-cli</td><td>Apache-2.0</td></tr><tr><td>commons-codec</td><td>Apache-2.0</td></tr><tr><td>commons-codec</td><td>Apache-2.0</td></tr><tr><td>commons-codec</td><td>Apache-2.0</td></tr><tr><td>commons-codec</td><td>Apache-2.0</td></tr><tr><td>commons-codec</td><td>Apache-2.0</td></tr><tr><td>commons-collections</td><td>Apache-2.0</td></tr><tr><td>commons-collections</td><td>Apache-2.0</td></tr><tr><td>commons-collections4</td><td>Apache-2.0</td></tr><tr><td>commons-compress</td><td>Apache-2.0</td></tr><tr><td>commons-compress</td><td>Apache-2.0</td></tr><tr><td>commons-compress</td><td>Apache-2.0</td></tr><tr><td>commons-configuration</td><td>Apache-2.0</td></tr><tr><td>commons-digester</td><td>Apache-2.0</td></tr><tr><td>commons-exec</td><td>Apache-2.0</td></tr><tr><td>commons-exec</td><td>Apache-2.0</td></tr><tr><td>commons-io</td><td>Apache-2.0</td></tr><tr><td>commons-io</td><td>Apache-2.0</td></tr><tr><td>commons-lang</td><td>Apache-2.0</td></tr><tr><td>commons-lang3</td><td>Apache-2.0</td></tr><tr><td>commons-logging</td><td>Apache-2.0</td></tr><tr><td>commons-logging</td><td>Apache-2.0</td></tr><tr><td>commons-pool</td><td>Apache-2.0</td></tr><tr><td>commons-validator</td><td>Apache-2.0</td></tr><tr><td>core</td><td>Apache-2.0</td></tr><tr><td>creaper-commands</td><td>Apache-2.0</td></tr><tr><td>creaper-core</td><td>Apache-2.0</td></tr><tr><td>cssparser</td><td>Apache-2.0</td></tr><tr><td>cssparser</td><td>GNU Lesser General Public License</td></tr><tr><td>customer-portal-example</td><td>Missing</td></tr><tr><td>cxf-core</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-bindings-soap</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-bindings-xml</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-databinding-jaxb</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-frontend-jaxrs</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-frontend-jaxws</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-frontend-simple</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-security</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-transports-http</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-transports-http-jetty</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-transports-http-undertow</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-ws-addr</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-ws-policy</td><td>Apache-2.0</td></tr><tr><td>cxf-rt-wsdl</td><td>Apache-2.0</td></tr><tr><td>dom4j</td><td>BSD 3-clause New License</td></tr><tr><td>ecj</td><td>EPL-1.0</td></tr><tr><td>ehcache</td><td>Apache-2.0</td></tr><tr><td>error_prone_annotations</td><td>Apache-2.0</td></tr><tr><td>filters</td><td>Apache-2.0</td></tr><tr><td>freemarker</td><td>Apache-2.0</td></tr><tr><td>fuse-example-cxf-jaxws</td><td>Apache-2.0</td></tr><tr><td>fuse-example-cxf-jaxws-fuse7-undertow</td><td>Apache-2.0</td></tr><tr><td>geronimo-jaxws_2.2_spec</td><td>Apache-2.0</td></tr><tr><td>geronimo-jta_1.1_spec</td><td>Apache-2.0</td></tr><tr><td>geronimo-ws-metadata_2.0_spec</td><td>Apache-2.0</td></tr><tr><td>geronimo-ws-metadata_2.0_spec</td><td>Apache-2.0</td></tr><tr><td>gmbal-api-only</td><td>CDDL+GPL</td></tr><tr><td>graphene-webdriver</td><td>Missing</td></tr><tr><td>graphene-webdriver-api</td><td>GNU Lesser General Public License, Version 2.1</td></tr><tr><td>graphene-webdriver-impl</td><td>GNU Lesser General Public License, Version 2.1</td></tr><tr><td>graphene-webdriver-spi</td><td>GNU Lesser General Public License, Version 2.1</td></tr><tr><td>greenmail</td><td>Apache-2.0</td></tr><tr><td>groovy</td><td>Apache-2.0</td></tr><tr><td>groovy</td><td>Apache-2.0</td></tr><tr><td>groovy-xml</td><td>Apache-2.0</td></tr><tr><td>gson</td><td>Apache-2.0</td></tr><tr><td>gson</td><td>Apache-2.0</td></tr><tr><td>guava</td><td>Apache-2.0</td></tr><tr><td>guice</td><td>Missing</td></tr><tr><td>h2</td><td>MPL 2.0 or EPL 1.0</td></tr><tr><td>ha-api</td><td>Missing</td></tr><tr><td>hamcrest-all</td><td>BSD-3-Clause</td></tr><tr><td>hibernate-commons-annotations</td><td>LGPL-2.1-or-later</td></tr><tr><td>hibernate-core</td><td>LGPL-2.1+</td></tr><tr><td>hibernate-validator</td><td>Apache-2.0</td></tr><tr><td>hibernate-validator</td><td>Apache-2.0</td></tr><tr><td>htmlunit</td><td>Apache-2.0</td></tr><tr><td>htmlunit</td><td>Apache-2.0</td></tr><tr><td>htmlunit-core-js</td><td>MPL-2.0</td></tr><tr><td>htmlunit-core-js</td><td>MPL-2.0</td></tr><tr><td>htmlunit-driver</td><td>Apache-2.0</td></tr><tr><td>httpclient</td><td>Apache-2.0</td></tr><tr><td>httpcore</td><td>Apache-2.0</td></tr><tr><td>httpmime</td><td>Apache-2.0</td></tr><tr><td>infinispan-cachestore-remote</td><td>Apache-2.0</td></tr><tr><td>infinispan-client-hotrod</td><td>Apache-2.0</td></tr><tr><td>infinispan-commons</td><td>Apache-2.0</td></tr><tr><td>infinispan-core</td><td>Apache-2.0</td></tr><tr><td>infinispan-multimap</td><td>Apache-2.0</td></tr><tr><td>integration-arquillian-servers-app-server-spi</td><td>Apache-2.0</td></tr><tr><td>integration-arquillian-servers-app-server-undertow</td><td>Apache-2.0</td></tr><tr><td>integration-arquillian-servers-auth-server-undertow</td><td>Apache-2.0</td></tr><tr><td>integration-arquillian-test-apps-servlets</td><td>Apache-2.0</td></tr><tr><td>integration-arquillian-tests-base</td><td>Missing</td></tr><tr><td>integration-arquillian-testsuite-providers</td><td>Apache-2.0</td></tr><tr><td>integration-arquillian-util</td><td>Apache-2.0</td></tr><tr><td>istack-commons-runtime</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>j2objc-annotations</td><td>Apache-2.0</td></tr><tr><td>jackson-annotations</td><td>Apache-2.0</td></tr><tr><td>jackson-core</td><td>Apache-2.0</td></tr><tr><td>jackson-coreutils</td><td>Lesser General Public License, version 3 or greater AND Apache-2.0</td></tr><tr><td>jackson-databind</td><td>Apache-2.0</td></tr><tr><td>jackson-dataformat-cbor</td><td>Apache-2.0</td></tr><tr><td>jackson-datatype-jdk8</td><td>Apache-2.0</td></tr><tr><td>jackson-datatype-jsr310</td><td>Apache-2.0</td></tr><tr><td>jackson-jaxrs-base</td><td>Apache-2.0</td></tr><tr><td>jackson-jaxrs-json-provider</td><td>Apache-2.0</td></tr><tr><td>jackson-module-jaxb-annotations</td><td>Apache-2.0</td></tr><tr><td>jackson-module-parameter-names</td><td>Apache-2.0</td></tr><tr><td>jacorb-omgapi</td><td>GNU Lesser General Public License</td></tr><tr><td>jai-imageio-core</td><td>BSD 3-clause License w/nuclear disclaimer</td></tr><tr><td>jakarta.activation</td><td>EDL 1.0</td></tr><tr><td>jakarta.activation-api</td><td>EDL 1.0</td></tr><tr><td>jakarta.enterprise.concurrent</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jakarta.json</td><td>EPL-2.0 AND GNU General Public License, version 2 with the GNU Classpath Exception</td></tr><tr><td>jakarta.json-api</td><td>EPL-2.0 AND GNU General Public License, version 2 with the GNU Classpath Exception</td></tr><tr><td>jakarta.mail</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception AND EDL 1.0</td></tr><tr><td>jakarta.persistence-api</td><td>EPL-2.0 AND Eclipse Distribution License v. 1.0</td></tr><tr><td>jakarta.validation-api</td><td>Apache-2.0</td></tr><tr><td>jakarta.ws.rs-api</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jakarta.xml.bind-api</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>jandex</td><td>Apache-2.0</td></tr><tr><td>jandex</td><td>Apache-2.0</td></tr><tr><td>jansi</td><td>Apache-2.0</td></tr><tr><td>jansi</td><td>Apache-2.0</td></tr><tr><td>jansi</td><td>Apache-2.0</td></tr><tr><td>jastow</td><td>Public Domain</td></tr><tr><td>jasypt</td><td>Apache-2.0</td></tr><tr><td>java-client</td><td>Apache-2.0</td></tr><tr><td>javase</td><td>Apache-2.0</td></tr><tr><td>javassist</td><td>MPL-1.1 AND LGPL-2.1-only AND Apache-2.0</td></tr><tr><td>javassist</td><td>MPL-1.1 AND LGPL-2.1-only AND Apache-2.0</td></tr><tr><td>javax.activation</td><td>Missing</td></tr><tr><td>javax.activation-api</td><td>Missing</td></tr><tr><td>javax.annotation-api</td><td>Missing</td></tr><tr><td>javax.el</td><td>Missing</td></tr><tr><td>javax.inject</td><td>Apache-2.0</td></tr><tr><td>javax.jws-api</td><td>Missing</td></tr><tr><td>javax.mail</td><td>Missing</td></tr><tr><td>javax.persistence-api</td><td>EPL-1.0 AND Eclipse Distribution License v. 1.0</td></tr><tr><td>javax.servlet</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>javax.servlet-api</td><td>Missing</td></tr><tr><td>javax.xml.soap-api</td><td>Missing</td></tr><tr><td>jaxb-api</td><td>Missing</td></tr><tr><td>jaxb-api</td><td>CDDL-1.1 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jaxb-core</td><td>CDDL-1.1</td></tr><tr><td>jaxb-impl</td><td>CDDL-1.1</td></tr><tr><td>jaxb-runtime</td><td>CDDL-1.1</td></tr><tr><td>jaxb-runtime</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>jaxb-runtime</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>jaxws-api</td><td>Missing</td></tr><tr><td>jbosgi-metadata</td><td>lgpl_v2_1</td></tr><tr><td>jbosgi-spi</td><td>lgpl_v2_1</td></tr><tr><td>jbosgi-vfs</td><td>lgpl_v2_1</td></tr><tr><td>jbosgi-vfs30</td><td>lgpl_v2_1</td></tr><tr><td>jboss-annotations-api_1.3_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-classfilewriter</td><td>Apache-2.0</td></tr><tr><td>jboss-common-beans</td><td>lgpl</td></tr><tr><td>jboss-concurrency-api_1.0_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-connector-api_1.7_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-dmr</td><td>LGPL-2.1 AND Apache-2.0</td></tr><tr><td>jboss-ejb-api_3.2_spec</td><td>Common Development and Distribution License AND GNU General Public License, Version 2 with the Classpath Exception</td></tr><tr><td>jboss-el-api_3.0_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception AND Apache-2.0 AND LGPL-2.1-only</td></tr><tr><td>jboss-interceptors-api_1.1_spec</td><td>lgpl</td></tr><tr><td>jboss-interceptors-api_1.2_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-invocation</td><td>Apache-2.0</td></tr><tr><td>jboss-jacc-api_1.5_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-jaspi-api_1.1_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-jaxb-api_2.3_spec</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>jboss-jaxrs-api_2.1_spec</td><td>Common Development and Distribution License AND GNU General Public License, Version 2 with the Classpath Exception</td></tr><tr><td>jboss-jaxrs-api_2.1_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-jsp-api_2.3_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-logging</td><td>Apache-2.0</td></tr><tr><td>jboss-logging-annotations</td><td>Apache-2.0</td></tr><tr><td>jboss-logging-processor</td><td>lgpl</td></tr><tr><td>jboss-logmanager</td><td>Apache-2.0</td></tr><tr><td>jboss-marshalling</td><td>Apache-2.0</td></tr><tr><td>jboss-marshalling-osgi</td><td>Apache-2.0</td></tr><tr><td>jboss-marshalling-river</td><td>Apache-2.0</td></tr><tr><td>jboss-marshalling-river</td><td>Apache-2.0</td></tr><tr><td>jboss-metadata-common</td><td>Public Domain</td></tr><tr><td>jboss-metadata-ear</td><td>Public Domain</td></tr><tr><td>jboss-metadata-ejb</td><td>Public Domain</td></tr><tr><td>jboss-metadata-web</td><td>Public Domain</td></tr><tr><td>jboss-modules</td><td>Apache-2.0 AND Indiana University Extreme! Lab Software License 1.1.1</td></tr><tr><td>jboss-msc</td><td>LGPL-2.1</td></tr><tr><td>jboss-negotiation-common</td><td>LGPL-2.1-or-later</td></tr><tr><td>jboss-negotiation-extras</td><td>LGPL-2.1-or-later</td></tr><tr><td>jboss-negotiation-spnego</td><td>LGPL-2.1-or-later</td></tr><tr><td>jboss-remoting</td><td>Apache-2.0</td></tr><tr><td>jboss-rmi-api_1.0_spec</td><td>lgpl</td></tr><tr><td>jboss-servlet-api_3.0_spec</td><td>Common Development and Distribution License AND GNU General Public License, Version 2 with the Classpath Exception</td></tr><tr><td>jboss-servlet-api_3.1_spec</td><td>Common Development and Distribution License AND GNU General Public License, Version 2 with the Classpath Exception</td></tr><tr><td>jboss-servlet-api_4.0_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-stdio</td><td>LGPL-2.1</td></tr><tr><td>jboss-threads</td><td>Apache-2.0</td></tr><tr><td>jboss-threads</td><td>Apache-2.0</td></tr><tr><td>jboss-threads</td><td>Apache-2.0</td></tr><tr><td>jboss-transaction-api_1.2_spec</td><td>Common Development and Distribution License AND GNU General Public License, Version 2 with the Classpath Exception</td></tr><tr><td>jboss-transaction-api_1.3_spec</td><td>EPL-2.0 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>jboss-transaction-spi</td><td>Public Domain</td></tr><tr><td>jboss-vfs</td><td>lgpl</td></tr><tr><td>jboss-vfs</td><td>asl</td></tr><tr><td>jboss-websocket-api_1.1_spec</td><td>EPL-2.0 AND GNU General Public License, version 2 with the GNU Classpath Exception</td></tr><tr><td>jcip-annotations</td><td>Apache-2.0</td></tr><tr><td>jcl-over-slf4j</td><td>MIT</td></tr><tr><td>jcl-over-slf4j</td><td>MIT</td></tr><tr><td>jcommon</td><td>GNU Lesser General Public Licence</td></tr><tr><td>jdeparser</td><td>Public Domain</td></tr><tr><td>jetty-client</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-client</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-continuation</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-continuation</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-continuation</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-http</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-io</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-jmx</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-security</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-security</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-security</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-security</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-security</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-security</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-server</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-server</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-server</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-server</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-server</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-server</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-servlet</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-servlet</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-servlets</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-util</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-webapp</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-websocket</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jetty-xml</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>jfreechart</td><td>GNU Lesser General Public Licence</td></tr><tr><td>jgroups</td><td>Apache-2.0</td></tr><tr><td>jna</td><td>LGPL, version 2.1 AND ASL, version 2</td></tr><tr><td>jsch</td><td>BSD-3-Clause</td></tr><tr><td>json</td><td>JSON</td></tr><tr><td>json-patch</td><td>Lesser General Public License, version 3 or greater AND Apache-2.0</td></tr><tr><td>jsoup</td><td>MIT</td></tr><tr><td>jsr250-api</td><td>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</td></tr><tr><td>jsr305</td><td>Apache-2.0</td></tr><tr><td>jul-to-slf4j</td><td>MIT</td></tr><tr><td>jul-to-slf4j</td><td>MIT</td></tr><tr><td>junit</td><td>EPL-1.0</td></tr><tr><td>jzlib</td><td>BSD-3-Clause</td></tr><tr><td>kerby-asn1</td><td>Apache-2.0</td></tr><tr><td>keycloak-adapter-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-adapter-spi</td><td>Apache-2.0</td></tr><tr><td>keycloak-admin-cli</td><td>Apache-2.0</td></tr><tr><td>keycloak-admin-client</td><td>Apache-2.0</td></tr><tr><td>keycloak-authz-client</td><td>Apache-2.0</td></tr><tr><td>keycloak-authz-policy-common</td><td>Apache-2.0</td></tr><tr><td>keycloak-client-cli-dist</td><td>Missing</td></tr><tr><td>keycloak-client-registration-api</td><td>Apache-2.0</td></tr><tr><td>keycloak-client-registration-cli</td><td>Apache-2.0</td></tr><tr><td>keycloak-common</td><td>Apache-2.0</td></tr><tr><td>keycloak-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-dependencies-server-all</td><td>Missing</td></tr><tr><td>keycloak-dependencies-server-min</td><td>Missing</td></tr><tr><td>keycloak-installed-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-jaxrs-oauth-client</td><td>Apache-2.0</td></tr><tr><td>keycloak-jboss-adapter-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-jetty-adapter-spi</td><td>Apache-2.0</td></tr><tr><td>keycloak-jetty-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-jetty93-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-jetty94-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-js-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-kerberos-federation</td><td>Apache-2.0</td></tr><tr><td>keycloak-ldap-federation</td><td>Apache-2.0</td></tr><tr><td>keycloak-model-infinispan</td><td>Apache-2.0</td></tr><tr><td>keycloak-model-jpa</td><td>Apache-2.0</td></tr><tr><td>keycloak-osgi-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-adapter-api-public</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-adapter-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-core-public</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-jetty-adapter-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-servlet-filter-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-tomcat-adapter-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-undertow-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-wildfly-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-saml-wildfly-elytron-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-server-spi</td><td>Apache-2.0</td></tr><tr><td>keycloak-server-spi-private</td><td>Apache-2.0</td></tr><tr><td>keycloak-services</td><td>Apache-2.0</td></tr><tr><td>keycloak-servlet-adapter-spi</td><td>Apache-2.0</td></tr><tr><td>keycloak-servlet-filter-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-spring-boot-2-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-spring-boot-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-spring-boot-adapter-core</td><td>Apache-2.0</td></tr><tr><td>keycloak-spring-security-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-sssd-federation</td><td>Apache-2.0</td></tr><tr><td>keycloak-testsuite-utils</td><td>Apache-2.0</td></tr><tr><td>keycloak-themes</td><td>Apache-2.0</td></tr><tr><td>keycloak-tomcat-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-tomcat-adapter-spi</td><td>Apache-2.0</td></tr><tr><td>keycloak-tomcat-core-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-undertow-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-undertow-adapter-spi</td><td>Apache-2.0</td></tr><tr><td>keycloak-util-embedded-ldap</td><td>Apache-2.0</td></tr><tr><td>keycloak-wildfly-adapter</td><td>Apache-2.0</td></tr><tr><td>keycloak-wildfly-adduser</td><td>Apache-2.0</td></tr><tr><td>keycloak-wildfly-elytron-oidc-adapter</td><td>Apache-2.0</td></tr><tr><td>liquibase-core</td><td>Apache-2.0</td></tr><tr><td>log4j</td><td>Apache-2.0</td></tr><tr><td>log4j-api</td><td>Apache-2.0</td></tr><tr><td>log4j-over-slf4j</td><td>Apache Software Licenses</td></tr><tr><td>log4j-over-slf4j</td><td>Apache Software Licenses</td></tr><tr><td>log4j-to-slf4j</td><td>Apache-2.0</td></tr><tr><td>logback-classic</td><td>EPL-1.0 AND GNU Lesser General Public License</td></tr><tr><td>logback-classic</td><td>EPL-1.0 AND GNU Lesser General Public License</td></tr><tr><td>logback-core</td><td>EPL-1.0 AND GNU Lesser General Public License</td></tr><tr><td>logback-core</td><td>EPL-1.0 AND GNU Lesser General Public License</td></tr><tr><td>mail</td><td>Common Development and Distribution License (CDDL) v1.0</td></tr><tr><td>mail</td><td>CDDL AND GPL-2.0-with-classpath-exception</td></tr><tr><td>management-api</td><td>CDDL+GPL</td></tr><tr><td>mariadb-java-client</td><td>LGPL-2.1</td></tr><tr><td>maven-aether-provider</td><td>Apache-2.0</td></tr><tr><td>maven-artifact</td><td>Apache-2.0</td></tr><tr><td>maven-artifact</td><td>Apache-2.0</td></tr><tr><td>maven-builder-support</td><td>Apache-2.0</td></tr><tr><td>maven-builder-support</td><td>Apache-2.0</td></tr><tr><td>maven-core</td><td>Apache-2.0</td></tr><tr><td>maven-invoker</td><td>Apache-2.0</td></tr><tr><td>maven-model</td><td>Apache-2.0</td></tr><tr><td>maven-model</td><td>Apache-2.0</td></tr><tr><td>maven-model-builder</td><td>Apache-2.0</td></tr><tr><td>maven-model-builder</td><td>Apache-2.0</td></tr><tr><td>maven-plugin-annotations</td><td>Apache-2.0</td></tr><tr><td>maven-plugin-api</td><td>Apache-2.0</td></tr><tr><td>maven-repository-metadata</td><td>Apache-2.0</td></tr><tr><td>maven-repository-metadata</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-api</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-connector-basic</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-impl</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-provider</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-spi</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-transport-wagon</td><td>Apache-2.0</td></tr><tr><td>maven-resolver-util</td><td>Apache-2.0</td></tr><tr><td>maven-settings</td><td>Apache-2.0</td></tr><tr><td>maven-settings</td><td>Apache-2.0</td></tr><tr><td>maven-settings-builder</td><td>Apache-2.0</td></tr><tr><td>maven-settings-builder</td><td>Apache-2.0</td></tr><tr><td>mavibot</td><td>Apache-2.0</td></tr><tr><td>mimepull</td><td>CDDL-1.1 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>mimepull</td><td>CDDL-1.1 AND GPL-2.0-with-classpath-exception</td></tr><tr><td>mina-core</td><td>Apache-2.0</td></tr><tr><td>msg-simple</td><td>Lesser General Public License, version 3 or greater AND Apache-2.0</td></tr><tr><td>mvel2</td><td>Apache-2.0</td></tr><tr><td>mysql-connector-java</td><td>The GNU General Public License, v2 with FOSS exception</td></tr><tr><td>narayana-jts-idlj</td><td>LGPL-2.1-only</td></tr><tr><td>narayana-jts-integration</td><td>LGPL-2.1-only</td></tr><tr><td>neethi</td><td>Apache-2.0</td></tr><tr><td>neko-htmlunit</td><td>Apache-2.0</td></tr><tr><td>nekohtml</td><td>Apache-2.0</td></tr><tr><td>netty</td><td>Apache-2.0</td></tr><tr><td>netty-buffer</td><td>Apache-2.0</td></tr><tr><td>netty-codec</td><td>Apache-2.0</td></tr><tr><td>netty-common</td><td>Apache-2.0</td></tr><tr><td>netty-handler</td><td>Apache-2.0</td></tr><tr><td>netty-resolver</td><td>Apache-2.0</td></tr><tr><td>netty-transport</td><td>Apache-2.0</td></tr><tr><td>netty-transport-native-epoll</td><td>Apache-2.0</td></tr><tr><td>netty-transport-native-unix-common</td><td>Apache-2.0</td></tr><tr><td>objenesis</td><td>Apache-2.0</td></tr><tr><td>ognl</td><td>Apache-2.0</td></tr><tr><td>okhttp</td><td>Apache-2.0</td></tr><tr><td>okhttp</td><td>Apache-2.0</td></tr><tr><td>okio</td><td>Apache-2.0</td></tr><tr><td>okio</td><td>Apache-2.0</td></tr><tr><td>opencv</td><td>BSD License</td></tr><tr><td>openjdk-orb</td><td>gpl</td></tr><tr><td>openshift-restclient-java</td><td>EPL-1.0</td></tr><tr><td>org.apache.servicemix.bundles.antlr</td><td>Apache-2.0</td></tr><tr><td>org.eclipse.jgit</td><td>BSD-3-Clause</td></tr><tr><td>org.eclipse.persistence.antlr</td><td>EPL-1.0 AND Eclipse Distribution License v. 1.0</td></tr><tr><td>org.eclipse.persistence.asm</td><td>EPL-1.0 AND Eclipse Distribution License v. 1.0</td></tr><tr><td>org.eclipse.persistence.core</td><td>EPL-1.0 AND Eclipse Distribution License v. 1.0</td></tr><tr><td>org.eclipse.persistence.moxy</td><td>EPL-1.0 AND Eclipse Distribution License v. 1.0</td></tr><tr><td>org.eclipse.sisu.inject</td><td>EPL-1.0</td></tr><tr><td>org.eclipse.sisu.inject</td><td>EPL-1.0</td></tr><tr><td>org.eclipse.sisu.plexus</td><td>EPL-1.0</td></tr><tr><td>org.eclipse.sisu.plexus</td><td>EPL-1.0</td></tr><tr><td>org.osgi.core</td><td>Missing</td></tr><tr><td>org.osgi.enterprise</td><td>Missing</td></tr><tr><td>owasp-java-html-sanitizer</td><td>Apache-2.0</td></tr><tr><td>pax-web-api</td><td>ALv2</td></tr><tr><td>pax-web-runtime</td><td>ALv2</td></tr><tr><td>pax-web-spi</td><td>ALv2</td></tr><tr><td>phantomjsdriver</td><td>BSD-2-Clause</td></tr><tr><td>photoz-restful-api</td><td>Apache-2.0</td></tr><tr><td>picketbox</td><td>lgpl</td></tr><tr><td>picketbox-commons</td><td>lgpl</td></tr><tr><td>picketbox-infinispan</td><td>lgpl</td></tr><tr><td>platform</td><td>LGPL, version 2.1</td></tr><tr><td>plexus-cipher</td><td>Apache-2.0</td></tr><tr><td>plexus-cipher</td><td>Apache-2.0</td></tr><tr><td>plexus-classworlds</td><td>Apache-2.0</td></tr><tr><td>plexus-compiler-api</td><td>Apache-2.0</td></tr><tr><td>plexus-compiler-javac</td><td>Apache-2.0</td></tr><tr><td>plexus-component-annotations</td><td>Apache-2.0</td></tr><tr><td>plexus-component-annotations</td><td>Apache-2.0</td></tr><tr><td>plexus-interpolation</td><td>Apache-2.0</td></tr><tr><td>plexus-interpolation</td><td>Apache-2.0</td></tr><tr><td>plexus-sec-dispatcher</td><td>Apache-2.0</td></tr><tr><td>plexus-sec-dispatcher</td><td>Apache-2.0</td></tr><tr><td>plexus-utils</td><td>Apache-2.0</td></tr><tr><td>plexus-utils</td><td>Apache-2.0</td></tr><tr><td>policy</td><td>CDDL-1.1</td></tr><tr><td>postgresql</td><td>BSD-2-Clause</td></tr><tr><td>product-portal-example</td><td>Missing</td></tr><tr><td>protobuf-java</td><td>BSD-3-Clause</td></tr><tr><td>reactive-streams</td><td>CC0</td></tr><tr><td>reactive-streams</td><td>CC0</td></tr><tr><td>readline</td><td>Apache-2.0</td></tr><tr><td>resteasy-client</td><td>Apache-2.0</td></tr><tr><td>resteasy-client</td><td>Apache-2.0</td></tr><tr><td>resteasy-jackson2-provider</td><td>Apache-2.0</td></tr><tr><td>resteasy-jackson2-provider</td><td>Apache-2.0</td></tr><tr><td>resteasy-jaxb-provider</td><td>Apache-2.0</td></tr><tr><td>resteasy-jaxb-provider</td><td>Apache-2.0</td></tr><tr><td>resteasy-jaxrs</td><td>Apache-2.0</td></tr><tr><td>resteasy-multipart-provider</td><td>Apache-2.0</td></tr><tr><td>resteasy-multipart-provider</td><td>Apache-2.0</td></tr><tr><td>resteasy-undertow</td><td>Apache-2.0</td></tr><tr><td>rt</td><td>Missing</td></tr><tr><td>rxjava</td><td>Apache-2.0</td></tr><tr><td>saaj-impl</td><td>Missing</td></tr><tr><td>saaj-impl</td><td>Missing</td></tr><tr><td>sac</td><td>The W3C Software License</td></tr><tr><td>selenium-android-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-api</td><td>Apache-2.0</td></tr><tr><td>selenium-api</td><td>Apache-2.0</td></tr><tr><td>selenium-chrome-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-edge-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-firefox-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-firefox-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-htmlunit-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-ie-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-ie-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-iphone-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-java</td><td>Apache-2.0</td></tr><tr><td>selenium-java</td><td>Apache-2.0</td></tr><tr><td>selenium-opera-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-remote-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-remote-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-safari-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-safari-driver</td><td>Apache-2.0</td></tr><tr><td>selenium-support</td><td>Apache-2.0</td></tr><tr><td>selenium-support</td><td>Apache-2.0</td></tr><tr><td>serializer</td><td>Apache-2.0</td></tr><tr><td>serializer</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-api</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-container-undertow</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-descriptors-api-base</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-descriptors-spi</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-impl-base</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-api</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-api-maven</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-api-maven-archive</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-api-maven-embedded</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-depchain</td><td>Missing</td></tr><tr><td>shrinkwrap-resolver-impl-maven</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-impl-maven-archive</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-impl-maven-embedded</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-spi</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-spi-maven</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-resolver-spi-maven-archive</td><td>Apache-2.0</td></tr><tr><td>shrinkwrap-spi</td><td>Apache-2.0</td></tr><tr><td>slf4j-api</td><td>MIT</td></tr><tr><td>slf4j-log4j12</td><td>MIT</td></tr><tr><td>snakeyaml</td><td>Apache-2.0</td></tr><tr><td>snakeyaml</td><td>Apache-2.0</td></tr><tr><td>snakeyaml</td><td>Apache-2.0</td></tr><tr><td>snakeyaml</td><td>Apache-2.0</td></tr><tr><td>spring-aop</td><td>Apache-2.0</td></tr><tr><td>spring-aop</td><td>Apache-2.0</td></tr><tr><td>spring-aop</td><td>Apache-2.0</td></tr><tr><td>spring-aop</td><td>Apache-2.0</td></tr><tr><td>spring-aop</td><td>Apache-2.0</td></tr><tr><td>spring-aop</td><td>Apache-2.0</td></tr><tr><td>spring-beans</td><td>Apache-2.0</td></tr><tr><td>spring-beans</td><td>Apache-2.0</td></tr><tr><td>spring-beans</td><td>Apache-2.0</td></tr><tr><td>spring-beans</td><td>Apache-2.0</td></tr><tr><td>spring-beans</td><td>Apache-2.0</td></tr><tr><td>spring-beans</td><td>Apache-2.0</td></tr><tr><td>spring-boot</td><td>Apache-2.0</td></tr><tr><td>spring-boot</td><td>Apache-2.0</td></tr><tr><td>spring-boot</td><td>Apache-2.0</td></tr><tr><td>spring-boot</td><td>Apache-2.0</td></tr><tr><td>spring-boot</td><td>Apache-2.0</td></tr><tr><td>spring-boot-autoconfigure</td><td>Apache-2.0</td></tr><tr><td>spring-boot-autoconfigure</td><td>Apache-2.0</td></tr><tr><td>spring-boot-autoconfigure</td><td>Apache-2.0</td></tr><tr><td>spring-boot-autoconfigure</td><td>Apache-2.0</td></tr><tr><td>spring-boot-autoconfigure</td><td>Apache-2.0</td></tr><tr><td>spring-boot-autoconfigure-processor</td><td>Apache-2.0</td></tr><tr><td>spring-boot-configuration-processor</td><td>Apache-2.0</td></tr><tr><td>spring-boot-configuration-processor</td><td>Apache-2.0</td></tr><tr><td>spring-boot-container-bundle</td><td>Apache-2.0</td></tr><tr><td>spring-boot-legacy-container-bundle</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-json</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-logging</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-logging</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-logging</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-logging</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-logging</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-thymeleaf</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-tomcat</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-tomcat</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-tomcat</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-web</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-web</td><td>Apache-2.0</td></tr><tr><td>spring-boot-starter-web</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-context</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-core</td><td>Apache-2.0</td></tr><tr><td>spring-expression</td><td>Apache-2.0</td></tr><tr><td>spring-expression</td><td>Apache-2.0</td></tr><tr><td>spring-expression</td><td>Apache-2.0</td></tr><tr><td>spring-expression</td><td>Apache-2.0</td></tr><tr><td>spring-expression</td><td>Apache-2.0</td></tr><tr><td>spring-expression</td><td>Apache-2.0</td></tr><tr><td>spring-jcl</td><td>Apache-2.0</td></tr><tr><td>spring-jcl</td><td>Apache-2.0</td></tr><tr><td>spring-jcl</td><td>Apache-2.0</td></tr><tr><td>spring-security-config</td><td>Apache-2.0</td></tr><tr><td>spring-security-core</td><td>Apache-2.0</td></tr><tr><td>spring-security-web</td><td>Apache-2.0</td></tr><tr><td>spring-web</td><td>Apache-2.0</td></tr><tr><td>spring-web</td><td>Apache-2.0</td></tr><tr><td>spring-web</td><td>Apache-2.0</td></tr><tr><td>spring-web</td><td>Apache-2.0</td></tr><tr><td>spring-webmvc</td><td>Apache-2.0</td></tr><tr><td>spring-webmvc</td><td>Apache-2.0</td></tr><tr><td>spring-webmvc</td><td>Apache-2.0</td></tr><tr><td>sshd-common</td><td>Apache-2.0</td></tr><tr><td>sshd-core</td><td>Apache-2.0</td></tr><tr><td>stax-api</td><td>GNU General Public Library AND COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</td></tr><tr><td>stax-ex</td><td>Missing</td></tr><tr><td>stax-ex</td><td>Missing</td></tr><tr><td>stax2-api</td><td>The BSD License</td></tr><tr><td>stax2-api</td><td>The BSD License</td></tr><tr><td>stax2-api</td><td>The BSD License</td></tr><tr><td>staxmapper</td><td>Public Domain</td></tr><tr><td>streambuffer</td><td>Missing</td></tr><tr><td>subethasmtp</td><td>Apache-2.0</td></tr><tr><td>thymeleaf</td><td>Apache-2.0</td></tr><tr><td>thymeleaf-layout-dialect</td><td>Apache-2.0</td></tr><tr><td>thymeleaf-spring4</td><td>Apache-2.0</td></tr><tr><td>tomcat-annotations-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-annotations-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-annotations-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-annotations-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-catalina</td><td>Apache-2.0</td></tr><tr><td>tomcat-catalina</td><td>Apache-2.0</td></tr><tr><td>tomcat-coyote</td><td>Apache-2.0</td></tr><tr><td>tomcat-el-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-embed-core</td><td>Apache-2.0</td></tr><tr><td>tomcat-embed-core</td><td>Apache-2.0</td></tr><tr><td>tomcat-embed-el</td><td>Apache-2.0</td></tr><tr><td>tomcat-embed-el</td><td>Apache-2.0</td></tr><tr><td>tomcat-embed-websocket</td><td>Apache-2.0</td></tr><tr><td>tomcat-embed-websocket</td><td>Apache-2.0</td></tr><tr><td>tomcat-jaspic-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-jni</td><td>Apache-2.0</td></tr><tr><td>tomcat-jsp-api</td><td>Apache-2.0</td></tr><tr><td>tomcat-juli</td><td>Apache-2.0</td></tr><tr><td>tomcat-juli</td><td>Apache-2.0</td></tr><tr><td>tomcat-servlet-api</td><td>Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0</td></tr><tr><td>tomcat-servlet-api</td><td>Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0</td></tr><tr><td>tomcat-util</td><td>Apache-2.0</td></tr><tr><td>tomcat-util</td><td>Apache-2.0</td></tr><tr><td>tomcat-util-scan</td><td>Apache-2.0</td></tr><tr><td>twitter4j-core</td><td>Apache-2.0</td></tr><tr><td>txw2</td><td>CDDL-1.1</td></tr><tr><td>txw2</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>txw2</td><td>Eclipse Distribution License - v 1.0</td></tr><tr><td>uap-java</td><td>Apache-2.0</td></tr><tr><td>unbescape</td><td>Apache-2.0</td></tr><tr><td>undertow-common-test</td><td>Apache-2.0</td></tr><tr><td>undertow-core</td><td>Apache-2.0</td></tr><tr><td>undertow-embedded</td><td>Apache-2.0</td></tr><tr><td>undertow-server</td><td>Apache-2.0</td></tr><tr><td>undertow-server-servlet</td><td>Apache-2.0</td></tr><tr><td>undertow-servlet</td><td>Apache-2.0</td></tr><tr><td>undertow-websockets-jsr</td><td>Apache-2.0</td></tr><tr><td>validation-api</td><td>Apache-2.0</td></tr><tr><td>validation-api</td><td>Apache-2.0</td></tr><tr><td>vdx-core</td><td>Apache-2.0</td></tr><tr><td>vdx-wildfly</td><td>Apache-2.0</td></tr><tr><td>wagon-file</td><td>Apache-2.0</td></tr><tr><td>wagon-http-lightweight</td><td>Apache-2.0</td></tr><tr><td>wagon-http-shared</td><td>Apache-2.0</td></tr><tr><td>wagon-provider-api</td><td>Apache-2.0</td></tr><tr><td>webauthn4j-core</td><td>Apache-2.0</td></tr><tr><td>webauthn4j-util</td><td>Apache-2.0</td></tr><tr><td>webbit</td><td>BSD License</td></tr><tr><td>websocket-api</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>websocket-client</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>websocket-common</td><td>Apache-2.0 AND EPL-1.0</td></tr><tr><td>wildfly-client-config</td><td>Public Domain</td></tr><tr><td>wildfly-client-config</td><td>Apache-2.0</td></tr><tr><td>wildfly-client-config</td><td>Apache-2.0</td></tr><tr><td>wildfly-clustering-common</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-clustering-infinispan-spi</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-clustering-marshalling-api</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-clustering-marshalling-spi</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-clustering-service</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-clustering-web-container</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-common</td><td>Apache-2.0</td></tr><tr><td>wildfly-controller</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-controller-client</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-core-management-client</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-core-security</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-core-security-api</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-deployment-repository</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-domain-http-interface</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-domain-management</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-ee</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-elytron</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-asn1</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-audit</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-auth</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-auth-server</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-auth-server-deprecated</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-auth-server-http</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-auth-server-sasl</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-auth-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-base</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-client</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-credential</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-credential-source-deprecated</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-credential-source-impl</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-credential-store</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-digest</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-basic</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-bearer</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-cert</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-deprecated</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-digest</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-form</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-spnego</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-sso</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-http-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-jacc</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-jaspi</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-json-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-keystore</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-mechanism</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-mechanism-digest</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-mechanism-gssapi</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-mechanism-http</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-mechanism-oauth2</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-mechanism-scram</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-password-impl</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-permission</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-provider-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-realm</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-realm-jdbc</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-realm-ldap</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-realm-token</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-anonymous</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-auth-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-deprecated</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-digest</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-entity</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-external</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-gs2</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-gssapi</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-localuser</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-oauth2</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-otp</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-plain</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-sasl-scram</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-security-manager</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-security-manager-action</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-ssl</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-x500</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-x500-cert</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-x500-cert-acme</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-x500-cert-util</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-x500-deprecated</td><td>Apache-2.0</td></tr><tr><td>wildfly-elytron-x500-principal</td><td>Apache-2.0</td></tr><tr><td>wildfly-event-logger</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-http-client-common</td><td>Apache-2.0</td></tr><tr><td>wildfly-http-naming-client</td><td>Apache-2.0</td></tr><tr><td>wildfly-http-transaction-client</td><td>Apache-2.0</td></tr><tr><td>wildfly-iiop-openjdk</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-io</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-naming</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-naming-client</td><td>Apache-2.0</td></tr><tr><td>wildfly-network</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-platform-mbean</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-process-controller</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-protocol</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-remoting</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-request-controller</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-security</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-server</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-transaction-client</td><td>Apache-2.0</td></tr><tr><td>wildfly-transactions</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-undertow</td><td>LGPL-2.1-or-later</td></tr><tr><td>wildfly-version</td><td>LGPL-2.1-or-later AND Apache-2.0</td></tr><tr><td>wildfly-web-common</td><td>LGPL-2.1-or-later</td></tr><tr><td>woodstox-core</td><td>Apache-2.0</td></tr><tr><td>wsdl4j</td><td>CPL</td></tr><tr><td>xalan</td><td>Apache-2.0</td></tr><tr><td>xalan</td><td>Apache-2.0</td></tr><tr><td>xercesImpl</td><td>Apache-2.0</td></tr><tr><td>xercesImpl</td><td>Apache-2.0</td></tr><tr><td>xml-apis</td><td>Apache-2.0 AND SAX-PD AND The W3C License</td></tr><tr><td>xml-resolver</td><td>Apache-2.0</td></tr><tr><td>xmlschema-core</td><td>Apache-2.0</td></tr><tr><td>xmlsec</td><td>Apache-2.0</td></tr><tr><td>xnio-api</td><td>Apache-2.0</td></tr><tr><td>xnio-api</td><td>Apache-2.0</td></tr><tr><td>xnio-nio</td><td>Apache-2.0</td></tr><tr><td>xnio-nio</td><td>Apache-2.0</td></tr></table><hr /><div><h2>ALv2</h2><ul><li>pax-web-api</li><li>pax-web-runtime</li><li>pax-web-spi</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>ASF 2.0</h2><ul><li>cglib</li><li>cglib-nodep</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>ASL, version 2</h2><ul><li>jna</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>Apache License, Version 2.0 and Common Development And Distribution License CDDL Version 1.0</h2><ul><li>tomcat-servlet-api</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>Apache Software Licenses</h2><ul><li>log4j-over-slf4j</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>Apache-2.0</h2><ul><li>FastInfoset</li><li>JavaEWAH</li><li>aesh</li><li>ant</li><li>ant-launcher</li><li>apache-mime4j</li><li>apacheds-core</li><li>apacheds-core-annotations</li><li>apacheds-core-api</li><li>apacheds-core-avl</li><li>apacheds-core-constants</li><li>apacheds-core-shared</li><li>apacheds-i18n</li><li>apacheds-interceptor-kerberos</li><li>apacheds-interceptors-admin</li><li>apacheds-interceptors-authn</li><li>apacheds-interceptors-authz</li><li>apacheds-interceptors-changelog</li><li>apacheds-interceptors-collective</li><li>apacheds-interceptors-event</li><li>apacheds-interceptors-exception</li><li>apacheds-interceptors-journal</li><li>apacheds-interceptors-normalization</li><li>apacheds-interceptors-number</li><li>apacheds-interceptors-operational</li><li>apacheds-interceptors-referral</li><li>apacheds-interceptors-schema</li><li>apacheds-interceptors-subtree</li><li>apacheds-interceptors-trigger</li><li>apacheds-jdbm-partition</li><li>apacheds-jdbm1</li><li>apacheds-kerberos-codec</li><li>apacheds-ldif-partition</li><li>apacheds-mavibot-partition</li><li>apacheds-protocol-kerberos</li><li>apacheds-protocol-ldap</li><li>apacheds-protocol-shared</li><li>apacheds-server-annotations</li><li>apacheds-xdbm-partition</li><li>api-asn1-api</li><li>api-asn1-ber</li><li>api-i18n</li><li>api-ldap-client-api</li><li>api-ldap-codec-core</li><li>api-ldap-codec-standalone</li><li>api-ldap-extras-aci</li><li>api-ldap-extras-codec</li><li>api-ldap-extras-codec-api</li><li>api-ldap-extras-sp</li><li>api-ldap-extras-trigger</li><li>api-ldap-extras-util</li><li>api-ldap-model</li><li>api-ldap-net-mina</li><li>api-ldap-schema-data</li><li>api-util</li><li>arquillian-config-api</li><li>arquillian-config-impl-base</li><li>arquillian-config-spi</li><li>arquillian-container-impl-base</li><li>arquillian-container-spi</li><li>arquillian-container-test-api</li><li>arquillian-container-test-impl-base</li><li>arquillian-container-test-spi</li><li>arquillian-core-api</li><li>arquillian-core-impl-base</li><li>arquillian-core-spi</li><li>arquillian-junit-container</li><li>arquillian-junit-core</li><li>arquillian-phantom-driver</li><li>arquillian-protocol-jmx</li><li>arquillian-protocol-servlet</li><li>arquillian-test-api</li><li>arquillian-test-impl-base</li><li>arquillian-test-spi</li><li>arquillian-testenricher-initialcontext</li><li>awaitility</li><li>btf</li><li>byte-buddy</li><li>caffeine</li><li>camel-blueprint</li><li>camel-core</li><li>camel-core-osgi</li><li>camel-core-xml</li><li>camel-http-common</li><li>camel-jetty-common</li><li>camel-jetty9</li><li>camel-undertow</li><li>cdi-api</li><li>classmate</li><li>commons-beanutils</li><li>commons-cli</li><li>commons-codec</li><li>commons-collections</li><li>commons-collections4</li><li>commons-compress</li><li>commons-configuration</li><li>commons-digester</li><li>commons-exec</li><li>commons-io</li><li>commons-lang</li><li>commons-lang3</li><li>commons-logging</li><li>commons-pool</li><li>commons-validator</li><li>core</li><li>creaper-commands</li><li>creaper-core</li><li>cssparser</li><li>cxf-core</li><li>cxf-rt-bindings-soap</li><li>cxf-rt-bindings-xml</li><li>cxf-rt-databinding-jaxb</li><li>cxf-rt-frontend-jaxrs</li><li>cxf-rt-frontend-jaxws</li><li>cxf-rt-frontend-simple</li><li>cxf-rt-security</li><li>cxf-rt-transports-http</li><li>cxf-rt-transports-http-jetty</li><li>cxf-rt-transports-http-undertow</li><li>cxf-rt-ws-addr</li><li>cxf-rt-ws-policy</li><li>cxf-rt-wsdl</li><li>ehcache</li><li>error_prone_annotations</li><li>filters</li><li>freemarker</li><li>fuse-example-cxf-jaxws</li><li>fuse-example-cxf-jaxws-fuse7-undertow</li><li>geronimo-jaxws_2.2_spec</li><li>geronimo-jta_1.1_spec</li><li>geronimo-ws-metadata_2.0_spec</li><li>greenmail</li><li>groovy</li><li>groovy-xml</li><li>gson</li><li>guava</li><li>hibernate-validator</li><li>htmlunit</li><li>htmlunit-driver</li><li>httpclient</li><li>httpcore</li><li>httpmime</li><li>infinispan-cachestore-remote</li><li>infinispan-client-hotrod</li><li>infinispan-commons</li><li>infinispan-core</li><li>infinispan-multimap</li><li>integration-arquillian-servers-app-server-spi</li><li>integration-arquillian-servers-app-server-undertow</li><li>integration-arquillian-servers-auth-server-undertow</li><li>integration-arquillian-test-apps-servlets</li><li>integration-arquillian-testsuite-providers</li><li>integration-arquillian-util</li><li>j2objc-annotations</li><li>jackson-annotations</li><li>jackson-core</li><li>jackson-coreutils</li><li>jackson-databind</li><li>jackson-dataformat-cbor</li><li>jackson-datatype-jdk8</li><li>jackson-datatype-jsr310</li><li>jackson-jaxrs-base</li><li>jackson-jaxrs-json-provider</li><li>jackson-module-jaxb-annotations</li><li>jackson-module-parameter-names</li><li>jakarta.validation-api</li><li>jandex</li><li>jansi</li><li>jasypt</li><li>java-client</li><li>javase</li><li>javassist</li><li>javax.inject</li><li>javax.servlet</li><li>jboss-classfilewriter</li><li>jboss-dmr</li><li>jboss-el-api_3.0_spec</li><li>jboss-invocation</li><li>jboss-logging</li><li>jboss-logging-annotations</li><li>jboss-logmanager</li><li>jboss-marshalling</li><li>jboss-marshalling-osgi</li><li>jboss-marshalling-river</li><li>jboss-modules</li><li>jboss-remoting</li><li>jboss-threads</li><li>jcip-annotations</li><li>jetty-client</li><li>jetty-continuation</li><li>jetty-http</li><li>jetty-io</li><li>jetty-jmx</li><li>jetty-security</li><li>jetty-server</li><li>jetty-servlet</li><li>jetty-servlets</li><li>jetty-util</li><li>jetty-webapp</li><li>jetty-websocket</li><li>jetty-xml</li><li>jgroups</li><li>json-patch</li><li>jsr305</li><li>kerby-asn1</li><li>keycloak-adapter-core</li><li>keycloak-adapter-spi</li><li>keycloak-admin-cli</li><li>keycloak-admin-client</li><li>keycloak-authz-client</li><li>keycloak-authz-policy-common</li><li>keycloak-client-registration-api</li><li>keycloak-client-registration-cli</li><li>keycloak-common</li><li>keycloak-core</li><li>keycloak-installed-adapter</li><li>keycloak-jaxrs-oauth-client</li><li>keycloak-jboss-adapter-core</li><li>keycloak-jetty-adapter-spi</li><li>keycloak-jetty-core</li><li>keycloak-jetty93-adapter</li><li>keycloak-jetty94-adapter</li><li>keycloak-js-adapter</li><li>keycloak-kerberos-federation</li><li>keycloak-ldap-federation</li><li>keycloak-model-infinispan</li><li>keycloak-model-jpa</li><li>keycloak-osgi-adapter</li><li>keycloak-saml-adapter-api-public</li><li>keycloak-saml-adapter-core</li><li>keycloak-saml-core</li><li>keycloak-saml-core-public</li><li>keycloak-saml-jetty-adapter-core</li><li>keycloak-saml-servlet-filter-adapter</li><li>keycloak-saml-tomcat-adapter-core</li><li>keycloak-saml-undertow-adapter</li><li>keycloak-saml-wildfly-adapter</li><li>keycloak-saml-wildfly-elytron-adapter</li><li>keycloak-server-spi</li><li>keycloak-server-spi-private</li><li>keycloak-services</li><li>keycloak-servlet-adapter-spi</li><li>keycloak-servlet-filter-adapter</li><li>keycloak-spring-boot-2-adapter</li><li>keycloak-spring-boot-adapter</li><li>keycloak-spring-boot-adapter-core</li><li>keycloak-spring-security-adapter</li><li>keycloak-sssd-federation</li><li>keycloak-testsuite-utils</li><li>keycloak-themes</li><li>keycloak-tomcat-adapter</li><li>keycloak-tomcat-adapter-spi</li><li>keycloak-tomcat-core-adapter</li><li>keycloak-undertow-adapter</li><li>keycloak-undertow-adapter-spi</li><li>keycloak-util-embedded-ldap</li><li>keycloak-wildfly-adapter</li><li>keycloak-wildfly-adduser</li><li>keycloak-wildfly-elytron-oidc-adapter</li><li>liquibase-core</li><li>log4j</li><li>log4j-api</li><li>log4j-to-slf4j</li><li>maven-aether-provider</li><li>maven-artifact</li><li>maven-builder-support</li><li>maven-core</li><li>maven-invoker</li><li>maven-model</li><li>maven-model-builder</li><li>maven-plugin-annotations</li><li>maven-plugin-api</li><li>maven-repository-metadata</li><li>maven-resolver-api</li><li>maven-resolver-connector-basic</li><li>maven-resolver-impl</li><li>maven-resolver-provider</li><li>maven-resolver-spi</li><li>maven-resolver-transport-wagon</li><li>maven-resolver-util</li><li>maven-settings</li><li>maven-settings-builder</li><li>mavibot</li><li>mina-core</li><li>msg-simple</li><li>mvel2</li><li>neethi</li><li>neko-htmlunit</li><li>nekohtml</li><li>netty</li><li>netty-buffer</li><li>netty-codec</li><li>netty-common</li><li>netty-handler</li><li>netty-resolver</li><li>netty-transport</li><li>netty-transport-native-epoll</li><li>netty-transport-native-unix-common</li><li>objenesis</li><li>ognl</li><li>okhttp</li><li>okio</li><li>org.apache.servicemix.bundles.antlr</li><li>owasp-java-html-sanitizer</li><li>photoz-restful-api</li><li>plexus-cipher</li><li>plexus-classworlds</li><li>plexus-compiler-api</li><li>plexus-compiler-javac</li><li>plexus-component-annotations</li><li>plexus-interpolation</li><li>plexus-sec-dispatcher</li><li>plexus-utils</li><li>readline</li><li>resteasy-client</li><li>resteasy-jackson2-provider</li><li>resteasy-jaxb-provider</li><li>resteasy-jaxrs</li><li>resteasy-multipart-provider</li><li>resteasy-undertow</li><li>rxjava</li><li>selenium-android-driver</li><li>selenium-api</li><li>selenium-chrome-driver</li><li>selenium-edge-driver</li><li>selenium-firefox-driver</li><li>selenium-htmlunit-driver</li><li>selenium-ie-driver</li><li>selenium-iphone-driver</li><li>selenium-java</li><li>selenium-opera-driver</li><li>selenium-remote-driver</li><li>selenium-safari-driver</li><li>selenium-support</li><li>serializer</li><li>shrinkwrap-api</li><li>shrinkwrap-container-undertow</li><li>shrinkwrap-descriptors-api-base</li><li>shrinkwrap-descriptors-spi</li><li>shrinkwrap-impl-base</li><li>shrinkwrap-resolver-api</li><li>shrinkwrap-resolver-api-maven</li><li>shrinkwrap-resolver-api-maven-archive</li><li>shrinkwrap-resolver-api-maven-embedded</li><li>shrinkwrap-resolver-impl-maven</li><li>shrinkwrap-resolver-impl-maven-archive</li><li>shrinkwrap-resolver-impl-maven-embedded</li><li>shrinkwrap-resolver-spi</li><li>shrinkwrap-resolver-spi-maven</li><li>shrinkwrap-resolver-spi-maven-archive</li><li>shrinkwrap-spi</li><li>snakeyaml</li><li>spring-aop</li><li>spring-beans</li><li>spring-boot</li><li>spring-boot-autoconfigure</li><li>spring-boot-autoconfigure-processor</li><li>spring-boot-configuration-processor</li><li>spring-boot-container-bundle</li><li>spring-boot-legacy-container-bundle</li><li>spring-boot-starter</li><li>spring-boot-starter-json</li><li>spring-boot-starter-logging</li><li>spring-boot-starter-thymeleaf</li><li>spring-boot-starter-tomcat</li><li>spring-boot-starter-web</li><li>spring-context</li><li>spring-core</li><li>spring-expression</li><li>spring-jcl</li><li>spring-security-config</li><li>spring-security-core</li><li>spring-security-web</li><li>spring-web</li><li>spring-webmvc</li><li>sshd-common</li><li>sshd-core</li><li>subethasmtp</li><li>thymeleaf</li><li>thymeleaf-layout-dialect</li><li>thymeleaf-spring4</li><li>tomcat-annotations-api</li><li>tomcat-api</li><li>tomcat-catalina</li><li>tomcat-coyote</li><li>tomcat-el-api</li><li>tomcat-embed-core</li><li>tomcat-embed-el</li><li>tomcat-embed-websocket</li><li>tomcat-jaspic-api</li><li>tomcat-jni</li><li>tomcat-jsp-api</li><li>tomcat-juli</li><li>tomcat-util</li><li>tomcat-util-scan</li><li>twitter4j-core</li><li>uap-java</li><li>unbescape</li><li>undertow-common-test</li><li>undertow-core</li><li>undertow-embedded</li><li>undertow-server</li><li>undertow-server-servlet</li><li>undertow-servlet</li><li>undertow-websockets-jsr</li><li>validation-api</li><li>vdx-core</li><li>vdx-wildfly</li><li>wagon-file</li><li>wagon-http-lightweight</li><li>wagon-http-shared</li><li>wagon-provider-api</li><li>webauthn4j-core</li><li>webauthn4j-util</li><li>websocket-api</li><li>websocket-client</li><li>websocket-common</li><li>wildfly-client-config</li><li>wildfly-common</li><li>wildfly-controller</li><li>wildfly-controller-client</li><li>wildfly-core-management-client</li><li>wildfly-core-security</li><li>wildfly-core-security-api</li><li>wildfly-deployment-repository</li><li>wildfly-domain-http-interface</li><li>wildfly-domain-management</li><li>wildfly-elytron</li><li>wildfly-elytron-asn1</li><li>wildfly-elytron-audit</li><li>wildfly-elytron-auth</li><li>wildfly-elytron-auth-server</li><li>wildfly-elytron-auth-server-deprecated</li><li>wildfly-elytron-auth-server-http</li><li>wildfly-elytron-auth-server-sasl</li><li>wildfly-elytron-auth-util</li><li>wildfly-elytron-base</li><li>wildfly-elytron-client</li><li>wildfly-elytron-credential</li><li>wildfly-elytron-credential-source-deprecated</li><li>wildfly-elytron-credential-source-impl</li><li>wildfly-elytron-credential-store</li><li>wildfly-elytron-digest</li><li>wildfly-elytron-http</li><li>wildfly-elytron-http-basic</li><li>wildfly-elytron-http-bearer</li><li>wildfly-elytron-http-cert</li><li>wildfly-elytron-http-deprecated</li><li>wildfly-elytron-http-digest</li><li>wildfly-elytron-http-form</li><li>wildfly-elytron-http-spnego</li><li>wildfly-elytron-http-sso</li><li>wildfly-elytron-http-util</li><li>wildfly-elytron-jacc</li><li>wildfly-elytron-jaspi</li><li>wildfly-elytron-json-util</li><li>wildfly-elytron-keystore</li><li>wildfly-elytron-mechanism</li><li>wildfly-elytron-mechanism-digest</li><li>wildfly-elytron-mechanism-gssapi</li><li>wildfly-elytron-mechanism-http</li><li>wildfly-elytron-mechanism-oauth2</li><li>wildfly-elytron-mechanism-scram</li><li>wildfly-elytron-password-impl</li><li>wildfly-elytron-permission</li><li>wildfly-elytron-provider-util</li><li>wildfly-elytron-realm</li><li>wildfly-elytron-realm-jdbc</li><li>wildfly-elytron-realm-ldap</li><li>wildfly-elytron-realm-token</li><li>wildfly-elytron-sasl</li><li>wildfly-elytron-sasl-anonymous</li><li>wildfly-elytron-sasl-auth-util</li><li>wildfly-elytron-sasl-deprecated</li><li>wildfly-elytron-sasl-digest</li><li>wildfly-elytron-sasl-entity</li><li>wildfly-elytron-sasl-external</li><li>wildfly-elytron-sasl-gs2</li><li>wildfly-elytron-sasl-gssapi</li><li>wildfly-elytron-sasl-localuser</li><li>wildfly-elytron-sasl-oauth2</li><li>wildfly-elytron-sasl-otp</li><li>wildfly-elytron-sasl-plain</li><li>wildfly-elytron-sasl-scram</li><li>wildfly-elytron-security-manager</li><li>wildfly-elytron-security-manager-action</li><li>wildfly-elytron-ssl</li><li>wildfly-elytron-util</li><li>wildfly-elytron-x500</li><li>wildfly-elytron-x500-cert</li><li>wildfly-elytron-x500-cert-acme</li><li>wildfly-elytron-x500-cert-util</li><li>wildfly-elytron-x500-deprecated</li><li>wildfly-elytron-x500-principal</li><li>wildfly-event-logger</li><li>wildfly-http-client-common</li><li>wildfly-http-naming-client</li><li>wildfly-http-transaction-client</li><li>wildfly-io</li><li>wildfly-naming-client</li><li>wildfly-network</li><li>wildfly-platform-mbean</li><li>wildfly-process-controller</li><li>wildfly-protocol</li><li>wildfly-remoting</li><li>wildfly-request-controller</li><li>wildfly-server</li><li>wildfly-transaction-client</li><li>wildfly-version</li><li>woodstox-core</li><li>xalan</li><li>xercesImpl</li><li>xml-apis</li><li>xml-resolver</li><li>xmlschema-core</li><li>xmlsec</li><li>xnio-api</li><li>xnio-nio</li></ul>
<div class="optional-license-text">
<p>Apache License
<br />
Version 2.0, January 2004
<br />
http://www.apache.org/licenses/
</p>
</div>
<div class="optional-license-text">
<p>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</p>
</div>
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.</span></var>
Definitions.
<ul style="list-style:none">
<li>
<p>"License" shall mean the terms and conditions for use, reproduction, and distribution
as defined by Sections 1 through 9 of this document.</p>
</li>
<li>
<p>"Licensor" shall mean the copyright owner or entity authorized by the copyright owner
that is granting the License.</p>
</li>
<li>
<p>"Legal Entity" shall mean the union of the acting entity and all other entities that
control, are controlled by, or are under common control with that entity. For the purposes of
this definition, "control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or otherwise, or (ii) ownership of
fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such
entity.</p>
</li>
<li>
<p>"You" (or "Your") shall mean an individual or Legal Entity exercising
permissions granted by this License.</p>
</li>
<li>
<p>"Source" form shall mean the preferred form for making modifications, including but not
limited to software source code, documentation source, and configuration files.</p>
</li>
<li>
<p>"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code, generated
documentation, and conversions to other media types.</p>
</li>
<li>
<p>"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included in or
attached to the work (an example is provided in the Appendix below).</p>
</li>
<li>
<p>"Derivative Works" shall mean any work, whether in Source or Object form, that is based
on (or derived from) the Work and for which the editorial revisions, annotations,
elaborations, or other modifications represent, as a whole, an original work of authorship.
For the purposes of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative
Works thereof.</p>
</li>
<li>
<p>"Contribution" shall mean any work of authorship, including the original version of the
Work and any modifications or additions to that Work or Derivative Works thereof, that is
intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an
individual or Legal Entity authorized to submit on behalf of the copyright owner. For the
purposes of this definition, "submitted" means any form of electronic, verbal, or
written communication sent to the Licensor or its representatives, including but not limited
to communication on electronic mailing lists, source code control systems, and issue tracking
systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and
improving the Work, but excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."</p>
</li>
<li>
<p>"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom
a Contribution has been received by Licensor and subsequently incorporated within the
Work.</p>
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.</span></var>
Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display,
publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or
Object form.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.</span></var>
Grant of Patent License. Subject to the terms and conditions of this License, each Contributor
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,
irrevocable (except as stated in this section) patent license to make, have made, use, offer
to sell, sell, import, and otherwise transfer the Work, where such license applies only to
those patent claims licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to which such
Contribution(s) was submitted. If You institute patent litigation against any entity
(including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a
Contribution incorporated within the Work constitutes direct or contributory patent
infringement, then any patent licenses granted to You under this License for that Work shall
terminate as of the date such litigation is filed.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 4.</span></var>
Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof
in any medium, with or without modifications, and in Source or Object form, provided that You
meet the following conditions:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (a)</span></var>
You must give any other recipients of the Work or Derivative Works a copy of this License; and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (b)</span></var>
You must cause any modified files to carry prominent notices stating that You changed the files; and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (c)</span></var>
You must retain, in the Source form of any Derivative Works that You distribute, all
copyright, patent, trademark, and attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of the Derivative Works; and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (d)</span></var>
If the Work includes a "NOTICE" text file as part of its distribution, then any
Derivative Works that You distribute must include a readable copy of the attribution
notices contained within such NOTICE file, excluding those notices that do not pertain to
any part of the Derivative Works, in at least one of the following places: within a NOTICE
text file distributed as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or, within a display generated
by the Derivative Works, if and wherever such third-party notices normally appear. The
contents of the NOTICE file are for informational purposes only and do not modify the
License. You may add Your own attribution notices within Derivative Works that You
distribute, alongside or as an addendum to the NOTICE text from the Work, provided that
such additional attribution notices cannot be construed as modifying the License.
</li>
</ul>
<p>You may add Your own copyright statement to Your modifications and may provide additional or
different license terms and conditions for use, reproduction, or distribution of Your
modifications, or for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with the conditions stated
in this License.</p>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 5.</span></var>
Submission of Contributions. Unless You explicitly state otherwise, any Contribution
intentionally submitted for inclusion in the Work by You to the Licensor shall be under the
terms and conditions of this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate
license agreement you may have executed with Licensor regarding such Contributions.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 6.</span></var>
Trademarks. This License does not grant permission to use the trade names, trademarks, service
marks, or product names of the Licensor, except as required for reasonable and customary use
in describing the origin of the Work and reproducing the content of the NOTICE file.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 7.</span></var>
Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor
provides the Work (and each Contributor provides its Contributions) on an "AS IS"
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including,
without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY,
or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any risks associated with Your
exercise of permissions under this License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 8.</span></var>
Limitation of Liability. In no event and under no legal theory, whether in tort (including
negligence), contract, or otherwise, unless required by applicable law (such as deliberate and
grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for
damages, including any direct, indirect, special, incidental, or consequential damages of any
character arising as a result of this License or out of the use or inability to use the Work
(including but not limited to damages for loss of goodwill, work stoppage, computer failure or
malfunction, or any and all other commercial damages or losses), even if such Contributor has
been advised of the possibility of such damages.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 9.</span></var>
Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works
thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty,
indemnity, or other liability obligations and/or rights consistent with this License. However,
in accepting such obligations, You may act only on Your own behalf and on Your sole
responsibility, not on behalf of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability incurred by, or claims asserted
against, such Contributor by reason of your accepting any such warranty or additional
liability.
</li>
</ul>
<div class="optional-license-text">
<p>END OF TERMS AND CONDITIONS</p>
</div>
<div class="optional-license-text">
<p>APPENDIX: How to apply the Apache License to your work.</p>
<p>To apply the Apache License to your work, attach the following boilerplate notice, with the fields
enclosed by brackets "[]" replaced with your own identifying information. (Don't
include the brackets!) The text should be enclosed in the appropriate comment syntax for the file
format. We also recommend that a file or class name and description of purpose be included on the same
"printed page" as the copyright notice for easier identification within third-party
archives.</p>
<p>Copyright <var class="replaceable-license-text"><span title="can be replaced with the pattern .+"> [yyyy] [name of copyright owner]</span></var></p>
<p>Licensed under the Apache License, Version 2.0 (the "License");
<br />
you may not use this file except in compliance with the License.
<br />
You may obtain a copy of the License at
</p>
<p>http://www.apache.org/licenses/LICENSE-2.0</p>
<p>Unless required by applicable law or agreed to in writing, software
<br />
distributed under the License is distributed on an "AS IS" BASIS,
<br />
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<br />
See the License for the specific language governing permissions and
<br />
limitations under the License.
</p>
</div>
</div><hr /><div><h2>BSD</h2><ul><li>asm</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>BSD 3-clause License w/nuclear disclaimer</h2><ul><li>jai-imageio-core</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>BSD 3-clause New License</h2><ul><li>dom4j</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>BSD License</h2><ul><li>antlr</li><li>opencv</li><li>webbit</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>BSD-2-Clause</h2><ul><li>phantomjsdriver</li><li>postgresql</li></ul>
<div class="replaceable-license-text"><span title="can be replaced with the pattern .{0,5000}">
<p>Copyright (c) <year> <owner>.
</p>
</span></div>
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided
that the following conditions are met:</p>
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.</span></var>
Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.</span></var>
Redistributions in binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the
distribution.
</li>
</ul>
<p>THIS <var class="optional-license-text"> SOFTWARE</var> IS PROVIDED BY
<var class="replaceable-license-text"><span title="can be replaced with the pattern .+"> THE COPYRIGHT HOLDERS AND CONTRIBUTORS</span></var> "AS IS" AND ANY
<var class="replaceable-license-text"><span title="can be replaced with the pattern EXPRESS(ED)?"> EXPRESS</span></var> OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
<var class="replaceable-license-text"><span title="can be replaced with the pattern .+"> THE COPYRIGHT HOLDER OR CONTRIBUTORS</span></var> BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS <var class="optional-license-text"> SOFTWARE</var>, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</p>
</div><hr /><div><h2>BSD-3-Clause</h2><ul><li>hamcrest-all</li><li>jsch</li><li>jzlib</li><li>org.eclipse.jgit</li><li>protobuf-java</li></ul>
<div class="replaceable-license-text"><span title="can be replaced with the pattern .{0,5000}">
<p>Copyright (c) <year> <owner>. </p>
</span></div>
<p>Redistribution and use in source and binary forms<var class="replaceable-license-text"><span title="can be replaced with the pattern ()|( of the theme)"></span></var>,
with or without modification, <var class="replaceable-license-text"><span title="can be replaced with the pattern are|is"> are</span></var> permitted provided
that the following conditions are met:</p>
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.</span></var>
Redistributions of <var class="replaceable-license-text"><span title="can be replaced with the pattern source code|works"> source code</span></var> must retain the <var class="replaceable-license-text"><span title="can be replaced with the pattern above|original"> above</span></var> copyright notice, this list of conditions
and the following disclaimer.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.</span></var>
Redistributions in binary form must reproduce the <var class="replaceable-license-text"><span title="can be replaced with the pattern above|original"> above</span></var> copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the
distribution.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.</span></var>
<var class="replaceable-license-text"><span title="can be replaced with the pattern (The\s+name\s+of.+may\s+not)|(Neither\s+the\s+names?\s+of.+nor\s+the\s+names\s+of\s+its\s+contributors\s+may)|(Neither\s+the\s+names?\s+of.+nor\s+the\s+names\s+of\s+their\s+contributors\s+may)|(\s*Neither\s+the\s+name\s+of.+nor\s+the\s+names\s+of\s+its\s+authors\s+and\s+contributors\s+may)|(Neither\s+the\s+name\s+of.+nor\s+the\s+names\s+of\s+(specific\s+)?contributors,?\s+may)|(Neither\s+the\s+name.+nor\s+the\s+names\s+of\s+contributors\s+may)|(The\s+names\s+of\s+its\s+contributors\s+may\s+not)|(The\s+names\s+of\s+any\s+contributors\s+may\s+not)|(The\s+names\s+of\s+the\s+contributors\s+may\s+not)|(None\s+of\s+the\s+names\s+of.+and\s+any\s+contributors\s+may)|(Neither\s+my\s+name.+nor\s+the\s+names\s+of\s+contributors\s+to\s+this\s+code\s+may)|(Neither\s+name\s+of\s+copyright\s+holders\s+nor\s+the\s+names\s+of\s+its\s+contributors\s+may)">
Neither the name of the copyright holder nor the names of its contributors may</span></var>
be used to endorse or promote products derived from this
<var class="replaceable-license-text"><span title="can be replaced with the pattern software|work"> software</span></var> without <var class="optional-license-text"> specific</var> prior written permission. <var class="replaceable-license-text"><span title="can be replaced with the pattern (To obtain permission, contact .*)?"> </span></var>
</li>
</ul>
<p>THIS <var class="replaceable-license-text"><span title="can be replaced with the pattern (SOFTWARE)|(THEME)"> SOFTWARE</span></var> IS PROVIDED <var class="replaceable-license-text"><span title="can be replaced with the pattern .*"> BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS</span></var> "AS IS" AND ANY <var class="replaceable-license-text"><span title="can be replaced with the pattern EXPRESS(ED)?"> EXPRESS</span></var> OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <var class="replaceable-license-text"><span title="can be replaced with the pattern .+"> THE
COPYRIGHT HOLDER OR CONTRIBUTORS</span></var> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS <var class="replaceable-license-text"><span title="can be replaced with the pattern (SOFTWARE)|(THEME)"> SOFTWARE</span></var>, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
</div><hr /><div><h2>Bouncy Castle Licence</h2><ul><li>bcpkix-jdk15on</li><li>bcprov-jdk15on</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>CC0</h2><ul><li>reactive-streams</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>CDDL</h2><ul><li>mail</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>CDDL+GPL</h2><ul><li>gmbal-api-only</li><li>management-api</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>CDDL-1.1</h2><ul><li>jaxb-api</li><li>jaxb-core</li><li>jaxb-impl</li><li>jaxb-runtime</li><li>mimepull</li><li>policy</li><li>txw2</li></ul>
<div class="optional-license-text">
<p>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
<br />
Version 1.1
</p>
</div>
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.</span></var>
Definitions.
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.1.</span></var>
"Contributor" means each individual or entity that creates or contributes to the
creation of Modifications.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.2.</span></var>
"Contributor Version" means the combination of the Original Software, prior
Modifications used by a Contributor (if any), and the Modifications made by that particular
Contributor.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.3.</span></var>
"Covered Software" means (a) the Original Software, or (b) Modifications, or (c)
the combination of files containing Original Software with files containing Modifications, in
each case including portions thereof.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.4.</span></var>
"Executable" means the Covered Software in any form other than Source Code.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.5.</span></var>
"Initial Developer" means the individual or entity that first makes Original
Software available under this License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.6.</span></var>
"Larger Work" means a work which combines Covered Software or portions thereof with
code not governed by the terms of this License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.7.</span></var>
"License" means this document.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.8.</span></var>
"Licensable" means having the right to grant, to the maximum extent possible,
whether at the time of the initial grant or subsequently acquired, any and all of the rights
conveyed herein.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.9.</span></var>
"Modifications" means the Source Code and Executable form of any of the following:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> A.</span></var>
Any file that results from an addition to, deletion from or modification of the contents of a
file containing Original Software or previous Modifications;
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> B.</span></var>
Any new file that contains any part of the Original Software or previous Modification; or
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> C.</span></var>
Any new file that is contributed or otherwise made available under the terms of this License.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.10.</span></var>
"Original Software" means the Source Code and Executable form of computer software
code that is originally released under this License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.11.</span></var>
"Patent Claims" means any patent claim(s), now owned or hereafter acquired,
including without limitation, method, process, and apparatus claims, in any patent Licensable
by grantor.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.12.</span></var>
"Source Code" means (a) the common form of computer software code in which
modifications are made and (b) associated documentation included in or with such code.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.13.</span></var>
"You" (or "Your") means an individual or a legal entity exercising
rights under, and complying with all of the terms of, this License. For legal entities,
"You" includes any entity which controls, is controlled by, or is under common
control with You. For purposes of this definition, "control" means (a) the
power, direct or indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding
shares or beneficial ownership of such entity.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.</span></var>
License Grants.
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.1.</span></var>
The Initial Developer Grant.
<br />
Conditioned upon Your compliance with Section 3.1 below and subject to third party
intellectual property claims, the Initial Developer hereby grants You a world-wide,
royalty-free, non-exclusive license:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (a)</span></var>
under intellectual property rights (other than patent or trademark) Licensable by Initial
Developer, to use, reproduce, modify, display, perform, sublicense and distribute the
Original Software (or portions thereof), with or without Modifications, and/or as part of
a Larger Work; and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (b)</span></var>
under Patent Claims infringed by the making, using or selling of Original Software, to make,
have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the
Original Software (or portions thereof).
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (c)</span></var>
The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer
first distributes or otherwise makes the Original Software available to a third party
under the terms of this License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (d)</span></var>
Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You
delete from the Original Software, or (2) for infringements caused by: (i) the
modification of the Original Software, or (ii) the combination of the Original Software
with other software or devices.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.2.</span></var>
Contributor Grant.
<br />
Conditioned upon Your compliance with Section 3.1 below and subject to third party
intellectual property claims, each Contributor hereby grants You a world-wide,
royalty-free, non-exclusive license:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (a)</span></var>
under intellectual property rights (other than patent or trademark) Licensable by Contributor
to use, reproduce, modify, display, perform, sublicense and distribute the Modifications
created by such Contributor (or portions thereof), either on an unmodified basis, with
other Modifications, as Covered Software and/or as part of a Larger Work; and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (b)</span></var>
under Patent Claims infringed by the making, using, or selling of Modifications made by that
Contributor either alone and/or in combination with its Contributor Version (or portions
of such combination), to make, use, sell, offer for sale, have made, and/or otherwise
dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the
combination of Modifications made by that Contributor with its Contributor Version (or
portions of such combination).
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (c)</span></var>
The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor
first distributes or otherwise makes the Modifications available to a third party.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> (d)</span></var>
Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that
Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i)
third party modifications of Contributor Version, or (ii) the combination of Modifications
made by that Contributor with other software (except as part of the Contributor Version)
or other devices; or (3) under Patent Claims infringed by Covered Software in the absence
of Modifications made by that Contributor.
</li>
</ul>
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.</span></var>
Distribution Obligations.
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.1.</span></var>
Availability of Source Code.
<br />
Any Covered Software that You distribute or otherwise make available in Executable form
must also be made available in Source Code form and that Source Code form must be
distributed only under the terms of this License. You must include a copy of this
License with every copy of the Source Code form of the Covered Software You distribute
or otherwise make available. You must inform recipients of any such Covered Software
in Executable form as to how they can obtain such Covered Software in Source Code form
in a reasonable manner on or through a medium customarily used for software exchange.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.2.</span></var>
Modifications.
<br />
The Modifications that You create or to which You contribute are governed by the terms of
this License. You represent that You believe Your Modifications are Your original
creation(s) and/or You have sufficient rights to grant the rights conveyed by this
License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.3.</span></var>
Required Notices.
<br />
You must include a notice in each of Your Modifications that identifies You as the
Contributor of the Modification. You may not remove or alter any copyright, patent or
trademark notices contained within the Covered Software, or any notices of licensing
or any descriptive text giving attribution to any Contributor or the Initial
Developer.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.4.</span></var>
Application of Additional Terms.
<br />
You may not offer or impose any terms on any Covered Software in Source Code form that
alters or restricts the applicable version of this License or the recipients'
rights hereunder. You may choose to offer, and to charge a fee for, warranty, support,
indemnity or liability obligations to one or more recipients of Covered Software.
However, you may do so only on Your own behalf, and not on behalf of the Initial
Developer or any Contributor. You must make it absolutely clear that any such
warranty, support, indemnity or liability obligation is offered by You alone, and You
hereby agree to indemnify the Initial Developer and every Contributor for any
liability incurred by the Initial Developer or such Contributor as a result of
warranty, support, indemnity or liability terms You offer.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.5.</span></var>
Distribution of Executable Versions.
<br />
You may distribute the Executable form of the Covered Software under the terms of this
License or under the terms of a license of Your choice, which may contain terms
different from this License, provided that You are in compliance with the terms of
this License and that the license for the Executable form does not attempt to limit or
alter the recipient's rights in the Source Code form from the rights set forth in
this License. If You distribute the Covered Software in Executable form under a
different license, You must make it absolutely clear that any terms which differ from
this License are offered by You alone, not by the Initial Developer or Contributor.
You hereby agree to indemnify the Initial Developer and every Contributor for any
liability incurred by the Initial Developer or such Contributor as a result of any
such terms You offer.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.6.</span></var>
Larger Works.
<br />
You may create a Larger Work by combining Covered Software with other code not governed by
the terms of this License and distribute the Larger Work as a single product. In such
a case, You must make sure the requirements of this License are fulfilled for the
Covered Software.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 4.</span></var>
Versions of the License.
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 4.1.</span></var>
New Versions.
<br />
Oracle is the initial license steward and may publish revised and/or new versions of this
License from time to time. Each version will be given a distinguishing version number.
Except as provided in Section 4.3, no one other than the license steward has the right
to modify this License.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 4.2.</span></var>
Effect of New Versions.
<br />
You may always continue to use, distribute or otherwise make the Covered Software available
under the terms of the version of the License under which You originally received the
Covered Software. If the Initial Developer includes a notice in the Original Software
prohibiting it from being distributed or otherwise made available under any subsequent
version of the License, You must distribute and make the Covered Software available
under the terms of the version of the License under which You originally received the
Covered Software. Otherwise, You may also choose to use, distribute or otherwise make
the Covered Software available under the terms of any subsequent version of the
License published by the license steward.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 4.3.</span></var>
Modified Versions.
<br />
When You are an Initial Developer and You want to create a new license for Your Original
Software, You may create and use a modified version of this License if You: (a) rename
the license and remove any references to the name of the license steward (except to
note that the license differs from this License); and (b) otherwise make it clear that
the license contains terms which differ from this License.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 5.</span></var>
DISCLAIMER OF WARRANTY.
<p>COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION,
WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A
PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE
DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR)
ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE
IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
</p>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 6.</span></var>
TERMINATION.
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 6.1.</span></var>
This License and the rights granted hereunder will terminate automatically if You fail to comply
with terms herein and fail to cure such breach within 30 days of becoming aware of the breach.
Provisions which, by their nature, must remain in effect beyond the termination of this
License shall survive.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 6.2.</span></var>
If You assert a patent infringement claim (excluding declaratory judgment actions) against
Initial Developer or a Contributor (the Initial Developer or Contributor against whom You
assert such claim is referred to as "Participant") alleging that the Participant
Software (meaning the Contributor Version where the Participant is a Contributor or the
Original Software where the Participant is the Initial Developer) directly or indirectly
infringes any patent, then any and all rights granted directly or indirectly to You by such
Participant, the Initial Developer (if the Initial Developer is not the Participant) and all
Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from
Participant terminate prospectively and automatically at the expiration of such 60 day notice
period, unless if within such 60 day period You withdraw Your claim with respect to the
Participant Software against such Participant either unilaterally or pursuant to a written
agreement with Participant.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 6.3.</span></var>
If You assert a patent infringement claim against Participant alleging that the Participant
Software directly or indirectly infringes any patent where such claim is resolved (such as by
license or settlement) prior to the initiation of patent infringement litigation, then the
reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall
be taken into account in determining the amount or value of any payment or license.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 6.4.</span></var>
In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been
validly granted by You or any distributor hereunder prior to termination (excluding licenses
granted to You by any distributor) shall survive termination.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 7.</span></var>
LIMITATION OF LIABILITY.
<p>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT,
OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY
INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR
ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF
THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR
DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE
LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF
INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO
YOU.</p>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 8.</span></var>
U.S. GOVERNMENT END USERS.
<p>The Covered Software is a "commercial item," as that term is defined in 48 C.F.R.
2.101 (Oct. 1995), consisting of "commercial computer software" (as that term is
defined at 48 C.F.R. § 252.227-7014(a)(1)) and "commercial computer software
documentation" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with
48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government
End Users acquire Covered Software with only those rights set forth herein. This U.S.
Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause
or provision that addresses Government rights in computer software under this License.</p>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 9.</span></var>
MISCELLANEOUS.
<p>This License represents the complete agreement concerning subject matter hereof. If any provision
of this License is held to be unenforceable, such provision shall be reformed only to the
extent necessary to make it enforceable. This License shall be governed by the law of the
jurisdiction specified in a notice contained within the Original Software (except to the
extent applicable law, if any, provides otherwise), excluding such jurisdiction's
conflict-of-law provisions. Any litigation relating to this License shall be subject to the
jurisdiction of the courts located in the jurisdiction and venue specified in a notice
contained within the Original Software, with the losing party responsible for costs,
including, without limitation, court costs and reasonable attorneys' fees and expenses.
The application of the United Nations Convention on Contracts for the International Sale of
Goods is expressly excluded. Any law or regulation which provides that the language of a
contract shall be construed against the drafter shall not apply to this License. You agree
that You alone are responsible for compliance with the United States export administration
regulations (and the export control laws and regulation of any other countries) when You use,
distribute or otherwise make available any Covered Software.</p>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 10.</span></var>
RESPONSIBILITY FOR CLAIMS.
<p>As between Initial Developer and the Contributors, each party is responsible for claims and damages
arising, directly or indirectly, out of its utilization of rights under this License and You agree to
work with Initial Developer and Contributors to distribute such responsibility on an equitable basis.
Nothing herein is intended or shall be deemed to constitute any admission of liability.</p>
</li>
</ul>
<p>NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
<br />
The code released under the CDDL shall be governed by the laws of the State of California
(excluding conflict-of-law provisions). Any litigation relating to this License shall be
subject to the jurisdiction of the Federal Courts of the Northern District of California and
the state courts of the State of California, with venue lying in Santa Clara County,
California.
</p>
</div><hr /><div><h2>COMMON DEVELOPMENT</h2><ul><li>activation</li><li>jsr250-api</li><li>stax-api</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>CPL</h2><ul><li>wsdl4j</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>Common Development and Distribution License</h2><ul><li>jboss-ejb-api_3.2_spec</li><li>jboss-jaxrs-api_2.1_spec</li><li>jboss-servlet-api_3.0_spec</li><li>jboss-servlet-api_3.1_spec</li><li>jboss-transaction-api_1.2_spec</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>Common Development and Distribution License CDDL v1.0</h2><ul><li>activation</li><li>mail</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>DISTRIBUTION LICENSE CDDL Version 1.0</h2><ul><li>activation</li><li>jsr250-api</li><li>stax-api</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>EDL 1.0</h2><ul><li>jakarta.activation</li><li>jakarta.activation-api</li><li>jakarta.mail</li></ul><p>The licenses for the above packages could not be found.</p></div><hr /><div><h2>EPL-1.0</h2><ul><li>aether-api</li><li>aether-impl</li><li>aether-spi</li><li>aether-util</li><li>aspectjweaver</li><li>ecj</li><li>javax.persistence-api</li><li>javax.servlet</li><li>jetty-client</li><li>jetty-continuation</li><li>jetty-http</li><li>jetty-io</li><li>jetty-jmx</li><li>jetty-security</li><li>jetty-server</li><li>jetty-servlet</li><li>jetty-servlets</li><li>jetty-util</li><li>jetty-webapp</li><li>jetty-websocket</li><li>jetty-xml</li><li>junit</li><li>logback-classic</li><li>logback-core</li><li>openshift-restclient-java</li><li>org.eclipse.persistence.antlr</li><li>org.eclipse.persistence.asm</li><li>org.eclipse.persistence.core</li><li>org.eclipse.persistence.moxy</li><li>org.eclipse.sisu.inject</li><li>org.eclipse.sisu.plexus</li><li>websocket-api</li><li>websocket-client</li><li>websocket-common</li></ul>
<div class="optional-license-text">
<p>Eclipse Public License - v 1.0</p>
</div>
<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE
("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES
RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.</p>
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 1.</span></var>
DEFINITIONS
<br />
"Contribution" means:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> a)</span></var>
in the case of the initial Contributor, the initial code and documentation distributed under
this Agreement, and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> b)</span></var>
in the case of each subsequent Contributor:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> i)</span></var>
changes to the Program, and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> ii)</span></var>
additions to the Program;
<p>where such changes and/or additions to the Program originate from and are distributed by
that particular Contributor. A Contribution 'originates' from a Contributor
if it was added to the Program by such Contributor itself or anyone acting on such
Contributor's behalf. Contributions do not include additions to the Program
which: (i) are separate modules of software distributed in conjunction with the
Program under their own license agreement, and (ii) are not derivative works of the
Program. </p>
</li>
</ul>
</li>
</ul>
<p>"Contributor" means any person or entity that distributes the Program. </p>
<p>"Licensed Patents" mean patent claims licensable by a Contributor which are
necessarily infringed by the use or sale of its Contribution alone or when combined
with the Program.</p>
<p>"Program" means the Contributions distributed in accordance with this Agreement.</p>
<p>"Recipient" means anyone who receives the Program under this Agreement,
including all Contributors.</p>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 2.</span></var>
GRANT OF RIGHTS
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> a)</span></var>
Subject to the terms of this Agreement, each Contributor hereby grants Recipient a
non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative
works of, publicly display, publicly perform, distribute and sublicense the Contribution
of such Contributor, if any, and such derivative works, in source code and object code
form.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> b)</span></var>
Subject to the terms of this Agreement, each Contributor hereby grants Recipient a
non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use,
sell, offer to sell, import and otherwise transfer the Contribution of such Contributor,
if any, in source code and object code form. This patent license shall apply to the
combination of the Contribution and the Program if, at the time the Contribution is added
by the Contributor, such addition of the Contribution causes such combination to be
covered by the Licensed Patents. The patent license shall not apply to any other
combinations which include the Contribution. No hardware per se is licensed hereunder.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> c)</span></var>
Recipient understands that although each Contributor grants the licenses to its Contributions
set forth herein, no assurances are provided by any Contributor that the Program does not
infringe the patent or other intellectual property rights of any other entity. Each
Contributor disclaims any liability to Recipient for claims brought by any other entity
based on infringement of intellectual property rights or otherwise. As a condition to
exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole
responsibility to secure any other intellectual property rights needed, if any. For
example, if a third party patent license is required to allow Recipient to distribute the
Program, it is Recipient's responsibility to acquire that license before distributing
the Program.
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> d)</span></var>
Each Contributor represents that to its knowledge it has sufficient copyright rights in its
Contribution, if any, to grant the copyright license set forth in this Agreement.
</li>
</ul>
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> 3.</span></var>
REQUIREMENTS
<br />
A Contributor may choose to distribute the Program in object code form under its own
license agreement, provided that:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> a)</span></var>
it complies with the terms and conditions of this Agreement; and
</li>
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> b)</span></var>
its license agreement:
<ul style="list-style:none">
<li>
<var class="replaceable-license-text"><span title="can be replaced with the pattern .{0,20}"> i)</span></var>
effectively disclaims on behalf of all Contributors all warranties and conditions,
express and implied, including warranties or conditions of title and non-infringement,
and implied warranties or conditions of merchantability and fitness for a particular
purpose;
</li>