-
Notifications
You must be signed in to change notification settings - Fork 8
/
NOTICE.txt
4598 lines (3692 loc) · 261 KB
/
NOTICE.txt
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
schemaregistry
Copyright 2021 Cloudera Inc. All Rights Reserved.
OVERVIEW
Items appearing in the following notices are provided for the notification and guidance of the recipient in accordance with the listed license. The listing may include various dependencies applicable only to development, testing, and evaluation, which may not be included in the distribution and may have been deprecated in favor of alternatives. Accordingly, this listing should not be construed as an admission that the listed component appears in the distribution nor in the manner indicated. Similarly, fulfilling a license’s compliance requirements for a particular form of distribution is not an admission that the software is in fact distributed in that form. Distributions and packaging vary and not all third party components are relied upon in the same manner or degree. In addition, some compliance documentation, such as embedded notices files in source code, may be found within the distribution itself rather than below. “Third Party Software†and “Separately Licensed Code†as defined in the applicable Cloudera or Hortonworks agreement, respectively, have the same meaning for the purposes of this notice.
MOST PERMISSIVE LICENSE APPLIES TO THIRD PARTY SOFTWARE
Where the Third Party Software contains dual or multiple licensing options, the most permissive license compatible with your Cloudera software license applies.
CONTAINERIZED OPERATING SYSTEM
The Cloudera software runs on certain operating systems, such as the Linux operating system, which may be delivered to you with a containerized installation of the operating system for your convenience. Cloudera software constitutes a separate and independent work from the operating system, and the provided container is an aggregation of the operating system and the Cloudera software.
NO WARRANTY; NO LIABILITY; NO INDEMNIFICATION/HOLD HARMLESS
Notwithstanding any agreement recipient may have with Cloudera: (A) CLOUDERA PROVIDES THRID PARTY SOFTWARE TO RECIPIENT WITHOUT WARRANTIES OF ANY KIND; (B) CLOUDERA DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED WARRANTIES WITH RESPECT TO THIRD PARTY SOFTWARE, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE; (C) CLOUDERA IS NOT LIABLE TO RECIPIENT, AND WILL NOT DEFEND, INDEMNIFY, NOR HOLD RECIPIENT HARMLESS FOR ANY CLAIMS ARISING FROM OR RELATED TO THIRD PARTY SOFTWARE; AND (D) WITH RESPECT TO THE THIRD PARTY SOFTWARE, CLOUDERA IS NOT LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, DAMAGES RELATED TO LOST REVENUE, LOST PROFITS, LOSS OF INCOME, LOSS OF BUSINESS ADVANTAGE OR UNAVAILABILITY, LOSS OR CORRUPTION OF DATA.
SOURCE CODE OFFER
To the extent required by the licenses associated with the Third Party Software, Cloudera, Inc. will provide a copy of the Third Party Software’s source code upon request and at a reasonable fee. All requests for source code should be made in a letter clearly identifying the components for which the source code is requested, and mailed to “Cloudera, Inc., ATTN: Legal Dept.,5470 Great America Pkwy, Santa Clara, CA 95054"
Further, to the extent Cloudera delivers a containerized installation of an operating system, such operating system contains open source software constituting Third Party Software, including software licensed under the GNU General Public License (GPL). Such Third Party Software may or may not be identified separately in the notices below. To the extent required by the GPL or other licenses associated with the Third Party Software under which you receive only binaries, Cloudera will provide a copy of the Third Party Software’s source code upon request and at a reasonable fee. All requests for source code should be made in a letter clearly identifying the components for which the source code is requested, typically sent within three (3) years from the date you received the covered binary, and mailed to “Cloudera, Inc., ATTN: Legal Dept., 5470 Great America Pkwy, Santa Clara, CA 95054â€. Your written request should include: (i) the name and version number of the covered binary, (ii) the version number of the Cloudera product containing the covered binary, (iii) your name, (iv) your company or organization name (if applicable), (v) the license under which the source code must be provided, and (vi) your return mailing and email address (if available).
Components:
AOP Alliance (Java/J2EE AOP standard) 1.0 : Public Domain
ASM 3.3.1 : BSD 3-clause "New" or "Revised" License
ASM 5.0.4 : BSD 3-clause "New" or "Revised" License
ASM based accessors helper used by json-smart 1.2 : Apache License 2.0
AWS SDK for Java - Bundle 1.11.901 : Apache License 2.0
Animal Sniffer Annotations 1.18 : MIT License
Annotations for Metrics 4.1.14 : Apache License 2.0
Aopalliance Version 1.0 Repackaged As A Module 2.6.1 : (GNU General Public License v2.0 w/Classpath exception OR Eclipse Public License 2.0)
Apache Atlas Plugin Classloader 2.1.0.7.1.5.0-257 : Apache License 2.0
Apache Avro 1.9.1 : Apache License 2.0
Apache Commons BeanUtils 1.9.4 : Apache License 2.0
Apache Commons CLI 1.2 : Apache License 2.0
Apache Commons CLI 1.3.1 : Apache License 2.0
Apache Commons Codec 1.11 : Apache License 2.0
Apache Commons Codec 1.14 : Apache License 2.0
Apache Commons Collections 3.2.2 : Apache License 2.0
Apache Commons Compress 1.19 : Apache License 2.0
Apache Commons Configuration 1.10 : Apache License 2.0
Apache Commons Configuration 2.1.1 : Apache License 2.0
Apache Commons Digester 1.8.1 : Apache License 1.1
Apache Commons Lang 2.6 : Apache License 2.0
Apache Commons Lang 3.11 : Apache License 2.0
Apache Commons Lang 3.8.1 : Apache License 2.0
Apache Commons Logging 1.2 : Apache License 2.0
Apache Commons Math 3.1.1 : Apache License 2.0
Apache Commons Net 3.6 : Apache License 2.0
Apache Commons Text 1.9 : Apache License 2.0
Apache Commons Validator 1.6 : Apache License 2.0
Apache Directory API ASN.1 API 1.0.0-M19 : Apache License 2.0
Apache Directory LDAP API I18n 1.0.2 : Apache License 2.0
Apache Directory LDAP API Utilities 1.0.2 : Apache License 2.0
Apache Directory Studio 2.0.0-M15 : Apache License 2.0
Apache Felix Configuration Admin Service 1.2.8 : Apache License 2.0
Apache Felix Http Api 2.3.0 : Apache License 2.0
Apache Geronimo Annotation Spec 1.3 1.2 : Apache License 2.0
Apache Hadoop 3.1.1.7.1.5.0-100 : Apache License 2.0
Apache Hadoop 3.1.1.7.1.5.0-141 : Apache License 2.0
Apache Hadoop 3.1.1.7.1.5.0-143 : Apache License 2.0
Apache Hadoop 3.1.1.7.1.5.0-249 : Apache License 2.0
Apache Hadoop Amazon Web Services support 3.1.1.7.2.7.0-87 : Apache License 2.0
Apache Hadoop Annotations 3.1.1.7.1.5.0-187 : Apache License 2.0
Apache Hadoop Auth 3.1.1.7.1.5.0-123 : Apache License 2.0
Apache Hadoop Azure Data Lake support 3.1.1.7.1.5.0-163 : Apache License 2.0
Apache Hadoop Azure support 3.1.1.7.1.5.0-159 : Apache License 2.0
Apache Hadoop Client 3.1.1.7.1.5.0-162 : Apache License 2.0
Apache Hadoop Cloud Storage 3.1.1.7.1.5.0-195 : Apache License 2.0
Apache Hadoop HDFS Client 3.1.1.7.1.5.0-141 : Apache License 2.0
Apache HttpClient 4.5.13 : Apache License 2.0
Apache HttpClient 4.5.6 : Apache License 2.0
Apache HttpComponents Core 4.4.10 : Apache License 2.0
Apache HttpComponents Core 4.4.13 : Apache License 2.0
Apache HttpMime 4.5.13 : Apache License 2.0
Apache Solr Solrj 8.4.1.7.1.5.0-162 : Apache License 2.0
Apache Solr Solrj 8.4.1.7.1.6.0-297 : Apache License 2.0
Apache Yetus - Audience Annotations 0.5.0 : Apache License 2.0
Apache ZooKeeper - Jute 3.5.5.7.2.3.0-106 : Apache License 2.0
Apache log4j 1.2.17-cloudera1 : Apache License 2.0
ApacheDS Protocol Kerberos Codec 2.0.0-M15 : Apache License 2.0
Atlas Dropwizard Module 0.10.0.7.2.7.0-184 : Apache License 2.0
Atlas Dropwizard Module 0.10.0.7.2.7.5-1 : Apache License 2.0
Atlas Integration Common Classes 0.9.1.7.2.7.0-22 : Apache License 2.0
Atlas Shim 0.10.0.7.2.7.0-57 : Apache License 2.0
Atlas-SchemaRegistry Translator 0.10.0.7.2.7.1-1 : Apache License 2.0
Bean Validation API 2.0.2 : Apache License 2.0
Caffeine cache 2.6.2 : Apache License 2.0
Caffeine cache 2.8.6 : Apache License 2.0
Checker Qual 2.8.1 : MIT License
Checker Qual 3.7.0 : MIT License
Common library for Plugins 2.1.0.7.1.5.0-242 : Apache License 2.0
Common library for Plugins 2.1.0.7.1.6.0-297 : Apache License 2.0
Common library for Plugins 2.1.0.7.2.7.0-184 : Apache License 2.0
Commons IO 2.6 : Apache License 2.0
Curator Client 4.3.0.7.2.1.0-302 : Apache License 2.0
Curator Framework 4.3.0.7.2.7.0-184 : Apache License 2.0
Curator Recipes 4.3.0.7.1.6.0-297 : Apache License 2.0
Curator Recipes 4.3.0.7.2.3.0-171 : Apache License 2.0
Data Mapper for Jackson 1.9.13-cloudera.1 : Apache License 2.0
Dropwizard Asset Bundle 2.0.15 : Apache License 2.0
Dropwizard Configuration Support 2.0.15 : Apache License 2.0
Dropwizard Freemarker Views 2.0.0 : Apache License 2.0
Dropwizard Jackson Support 2.0.15 : Apache License 2.0
Dropwizard Jersey Support 2.0.15 : Apache License 2.0
Dropwizard Jetty Support 2.0.15 : Apache License 2.0
Dropwizard Lifecycle Support 2.0.15 : Apache License 2.0
Dropwizard Logging Support 2.0.15 : Apache License 2.0
Dropwizard Metrics Support 2.0.15 : Apache License 2.0
Dropwizard Request Logging Support 2.0.15 : Apache License 2.0
Dropwizard Servlet Support 2.0.15 : Apache License 2.0
Dropwizard Swagger support 2.0.0-1 : Apache License 2.0
Dropwizard Utility Classes 2.0.15 : Apache License 2.0
Dropwizard Validation Support 2.0.15 : Apache License 2.0
Dropwizard Views 2.0.0 : Apache License 2.0
EZPlayer 1.1.0 : MIT License
Elastic JNA Distribution 5.5.0 : Apache License 2.0
Expression Language 3.0 3.0.3 : (GNU General Public License v2.0 w/Classpath exception OR Eclipse Public License 2.0)
Expression Language 3.0 API 3.0.3 : (GNU General Public License v2.0 w/Classpath exception AND Eclipse Public License 2.0)
Expression Language API 3.0.0 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
FindBugs jsr305 3.0.2 : Apache License 2.0
FreeMarker 2.3.29 : Apache License 2.0
Google Guice 4.2.3 : Apache License 2.0
Guava InternalFutureFailureAccess and InternalFutures 1.0.1 : Apache License 2.0
Guava ListenableFuture only 9999.0-empty-to-avoid-conflict-with-guava : Apache License 2.0
Guava: Google Core Libraries for Java v28.1 : Apache License 2.0
Guava: Google Core Libraries for Java v30.0 : Apache License 2.0
HBase - Server 5.1.0.7.1.6.0-297 : Apache License 2.0
HK2 API module 2.6.1 : (Sun GPL With Classpath Exception v2.0 AND Eclipse Public License 2.0)
HK2 Implementation Utilities 2.6.1 : (Sun GPL With Classpath Exception v2.0 AND Eclipse Public License 2.0)
Hibernate Validator 6.1.6.Final : Apache License 2.0
HikariCP HikariCP-3.4.1 : Apache License 2.0
J2ObjC Annotations 1.3 : Apache License 2.0
JAX-RS provider for JSON content type 1.9.13 : Apache License 2.0
JAX-RS provider for JSON content type 1.9.2 : (GNU Lesser General Public License v2.1 or later AND Apache License 2.0)
JAXB XML Binding Code Generator Package 2.2.3-1 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
JBoss Logging 3 3.3.2.Final : Apache License 2.0
JCIP Annotations under Apache License 1.0-1 : Apache License 2.0
JCL 1.2 Implemented Over SLF4J 1.7.23 : Apache License 2.0
JCL 1.2 Implemented Over SLF4J 1.7.30 : Apache License 2.0
JSch 0.1.54 : BSD 3-clause "New" or "Revised" License
JUL to SLF4J bridge 1.7.30 : MIT License
JVM Integration for Metrics 4.1.14 : Apache License 2.0
Jackson Integration for Metrics 4.1.14 : Apache License 2.0
Jackson module: Paranamer 2.10.5 : Apache License 2.0
Jackson-Datatype-JSR310 2.10.5 : Apache License 2.0
Jackson-JAXRS-base 2.10.5 : Apache License 2.0
Jackson-JAXRS-base 2.11.3 : Apache License 2.0
Jackson-datatype-jdk8 2.10.5 : Apache License 2.0
Jackson-module-Afterburner 2.10.5 : Apache License 2.0
Jackson-module-parameter-names 2.10.5 : Apache License 2.0
Jakarta Annotations API 1.3.5 : (GNU General Public License v2.0 w/Classpath exception OR Eclipse Public License 2.0)
Java Architecture for XML Binding 2.2.2-promoted-b98 : (GNU General Public License v2.0 w/Classpath exception OR Common Development and Distribution License 1.1)
Java Architecture for XML Binding 2.3.1 : (GNU General Public License v2.0 w/Classpath exception OR Common Development and Distribution License 1.1)
Java Native Access (JNA) 5.0.0 : (GNU Lesser General Public License v2.1 or later AND Apache License 2.0)
Java Servlet API 2.1 : Common Development and Distribution License 1.0
Java Servlet API 3.1.0 : Common Development and Distribution License 1.1
Java Servlet API 4.0.4 : (GNU General Public License v2.0 w/Classpath exception OR Eclipse Public License 2.0)
Java redis client 3.5.0.Final : Apache License 2.0
JavaBeans Activation Framework 1.1 : Common Development and Distribution License 1.0
JavaBeans Activation Framework 1.2.0 : Common Development and Distribution License 1.0
JavaBeans Activation Framework 1.2.1 : BSD 3-clause "New" or "Revised" License
JavaBeans Activation Framework API jar 1.2.0 : Common Development and Distribution License 1.1
JavaBeans Activation Framework API jar 1.2.1 : BSD 3-clause "New" or "Revised" License
Javassist rel_3_27_0_ga : (Mozilla Public License 1.1 OR GNU Lesser General Public License v2.1 or later OR Apache License 2.0)
Javax Inject from the JSR-330 Expert Group 1 : Apache License 2.0
Jersey 1.18.6 : Common Development and Distribution License 1.1
Jersey 1.19 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
Jersey 1.19.3 : Common Development and Distribution License 1.1
Jersey 2.32 : (GNU General Public License v2.0 w/Classpath exception AND Apache License 2.0 AND Public Domain AND Eclipse Public License 2.0)
Jersey Inject HK2 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
Jettison - Json Stax implementation 1.1 : Apache License 2.0
Jetty :: Asynchronous HTTP Client 9.4.31.v20200723 : (Apache License 2.0 AND Eclipse Public License 1.0)
Jetty :: Servlet Handling 9.4.33.v20201020 : (Apache License 2.0 AND Eclipse Public License 1.0)
Jetty :: Utility Servlets and Filters 9.4.33.v20201020 : (Apache License 2.0 AND Eclipse Public License 1.0)
Jetty Toolchain 1.0.4 : (Apache License 2.0 AND Eclipse Public License 1.0)
Jetty: Java based HTTP/1.x, HTTP/2, Servlet, WebSocket Server jetty-9.4.31.v20200723 : (Apache License 2.0 AND Eclipse Public License 1.0)
Jetty: Java based HTTP/1.x, HTTP/2, Servlet, WebSocket Server jetty-9.4.33.v20201020 : (Apache License 2.0 AND Eclipse Public License 1.0)
Jetty: Java based HTTP/1.x, HTTP/2, Servlet, WebSocket Server jetty-9.4.34.v20201102 : (Apache License 2.0 AND Eclipse Public License 1.0)
Joda Time 2.8.1 : Apache License 2.0
Joda Time v2.10.6 : Apache License 2.0
Joda Time v2.10.8 : Apache License 2.0
Kerb Simple Kdc 1.1.1 : Apache License 2.0
Kerby ASN1 Project 1.1.1 : Apache License 2.0
Kerby Config 1.1.1 : Apache License 2.0
Kerby PKIX Project 1.1.1 : Apache License 2.0
Kerby Util 1.1.1 : Apache License 2.0
Kerby XDR Project 1.1.1 : Apache License 2.0
Kerby-kerb Admin 1.1.1 : Apache License 2.0
Kerby-kerb Client 1.1.1 : Apache License 2.0
Kerby-kerb Common 1.1.1 : Apache License 2.0
Kerby-kerb Crypto 1.1.1 : Apache License 2.0
Kerby-kerb Identity 1.1.1 : Apache License 2.0
Kerby-kerb Server 1.1.1 : Apache License 2.0
Kerby-kerb Util 1.1.1 : Apache License 2.0
Kerby-kerb core 1.1.1 : Apache License 2.0
Log4j Implemented Over SLF4J 1.7.30 : Apache License 2.0
Logback 1.2.3 : Eclipse Public License 1.0
Logback Access Module 1.2.3 : Eclipse Public License 1.0
Logback Classic Module 1.2.3 : Eclipse Public License 1.0
MIME streaming extension 1.9.13 : Eclipse Distribution License - v 1.0
MIME streaming extension 1.9.3 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
Metrics Core 4.1.14 : Apache License 2.0
Metrics Health Checks 4.1.14 : Apache License 2.0
Metrics Integration for Caffeine 4.1.14 : Apache License 2.0
Metrics Integration for Jersey 2.x 4.1.14 : Apache License 2.0
Metrics Integration for Jetty 9.1 and higher 4.1.14 : Apache License 2.0
Metrics Integration for Logback 4.1.14 : Apache License 2.0
Metrics Integration with JMX 4.1.14 : Apache License 2.0
Metrics Utility Servlets 4.1.14 : Apache License 2.0
Microsoft Azure SDK for Key Vault 1.0.0 : MIT License
Microsoft Windows Azure Storage Client SDK 7.0.0 : Apache License 2.0
Netty Project netty-4.1.51.Final : Apache License 2.0
Netty/Codec/Redis 4.1.48.Final : Apache License 2.0
Netty/Codec/SMTP 4.1.48.Final : Apache License 2.0
Netty/Transport/Native/KQueue 4.1.48.Final : Apache License 2.0
Netty/Transport/Native/Unix/Common 4.1.51.Final : Apache License 2.0
Nimbus-JOSE-JWT 7.9 : Apache License 2.0
OSGi LogService implemented over SLF4J 1.7.13 : MIT License
OSGi R4 compendium 1.4.0 : Apache License 2.0
OSGi resource locator bundle - used by various API providers that rely on META-INF/services mechanism to locate providers. 1.0.3 : (Sun GPL With Classpath Exception v2.0 AND Eclipse Public License 2.0)
OkHttp 2.7.5 : Apache License 2.0
OkIO 1.6.0 : Apache License 2.0
ParaNamer Core 2.8 : BSD 3-clause "New" or "Revised" License
Plexus 2.1.0 : Apache License 2.0
Policeman's Forbidden API Checker 2.7 : Apache License 2.0
PostgreSQL JDBC Driver (pgjdbc) REL42.2.13 : BSD 2-clause "Simplified" License
Protocol Buffer Java API 2.5.0 : BSD 3-clause "New" or "Revised" License
Proxy Vole 1.0.5 : Apache License 2.0
Ranger Remote Authorization Hook - ABFS driver 2.1.0.7.1.5.0-150 : Apache License 2.0
RxJava 1.1.6 : Apache License 2.0
SLF4J API Module 1.7.30 : MIT License
SLF4J Simple Binding 1.7.29 : MIT License
Scala v2.12.12 : Apache License 2.0
ServiceLocator Default Implementation 2.6.1 : (Sun GPL With Classpath Exception v2.0 AND Eclipse Public License 2.0)
SnakeYAML 1.26 : Apache License 2.0
Spring Commons Logging Bridge 5.0.19.RELEASE : Apache License 2.0
Spring Framework v4.3.29.RELEASE : Apache License 2.0
Spring Framework v5.0.19.RELEASE : Apache License 2.0
Spring Security 3.2.7 : Apache License 2.0
Spring Security Kerberos Core 1.0.1.RELEASE : Apache License 2.0
StAX 1.0-2 : (GNU General Public License v3.0 only OR Common Development and Distribution License 1.0)
Stax2 API 3.1.4 : BSD 3-clause "New" or "Revised" License
SureFire API 3.0.0-M4 : Apache License 2.0
Throttling Appender 1.1.0 : Apache License 2.0
Token provider 1.1.1 : Apache License 2.0
Woodstox 5.0.3 : Apache License 2.0
argparse4j 0.8.1 : MIT License
athenz-zts-java-client 1.8.37 : Apache License 2.0
atlas-client-common 2.0.0.7.2.3.0-125 : Apache License 2.0
atlas-client-common 2.1.0.7.1.5.0-184 : Apache License 2.0
atlas-client-v2 2.1.0.7.1.5.0-195 : Apache License 2.0
avro-examples 0.9.1 : Apache License 2.0
azure-data-lake-store-java 2.3.6 : MIT License
beanvalidation-api 1.1.0.Final : Apache License 2.0
cglib 2.2.2 : Apache License 2.0
com.helger:profiler 1.1.1 : Apache License 2.0
dropwizard 2.0.15 : Apache License 2.0
dropwizard-auth 2.0.15 : Apache License 2.0
error-prone annotations 2.3.2 : Apache License 2.0
error-prone annotations 2.4.0 : Apache License 2.0
external-objenesis 1.0.4 : Apache License 2.0
flyway-core 5.1.4 : Apache License 2.0
flyway-gradle-plugin 5.1.4 : Apache License 2.0
gateway-cloud-bindings 1.3.0.7.1.6.0-297 : Apache License 2.0
gateway-shell 1.3.0.7.1.6.0-297 : Apache License 2.0
gcs-connector.jar 2.1.2.7.1.5.0-181 : Apache License 2.0
gethostname4j 0.0.2 : MIT License
google-gson 2.2.4 : Apache License 2.0
google-gson 2.8.6 : Apache License 2.0
gradle-plugins 6.1.1 : Apache License 2.0
hadoop-mapreduce-client-common 3.1.1.7.1.5.0-117 : Apache License 2.0
hadoop-mapreduce-client-core 3.1.1.7.1.5.0-206 : Apache License 2.0
hadoop-mapreduce-client-core 3.1.1.7.1.5.0-209 : Apache License 2.0
hadoop-mapreduce-client-jobclient 3.1.1.7.1.5.0-140 : Apache License 2.0
hadoop-mapreduce-client-jobclient 3.1.1.7.1.5.0-231 : Apache License 2.0
hadoop-yarn-api 3.1.1.7.1.5.0-228 : Apache License 2.0
hadoop-yarn-api 3.1.1.7.1.5.0-247 : Apache License 2.0
hadoop-yarn-api 3.1.1.7.2.7.0-82 : Apache License 2.0
hadoop-yarn-client 3.1.1.7.1.5.0-146 : Apache License 2.0
hadoop-yarn-common 3.1.1.7.1.5.0-228 : Apache License 2.0
hadoop-yarn-common 3.1.1.7.1.5.0-235 : Apache License 2.0
hadoop-yarn-common 3.1.1.7.2.6.0-46 : Apache License 2.0
hortonworks/registry 0.9.1-rc1 : Apache License 2.0
htrace-core 4.1.0-incubating : Apache License 2.0
io.swagger:swagger-annotations 1.6.0 : Apache License 2.0
jQuery UI (Combined Library) 1.9.1 : MIT License
jackson-annotations jackson-annotations-2.10.5 : Apache License 2.0
jackson-annotations jackson-annotations-2.11.3 : Apache License 2.0
jackson-core 1.9.13-cloudera.2 : Apache License 2.0
jackson-core 2.10.5 : Apache License 2.0
jackson-core 2.11.3 : Apache License 2.0
jackson-databind 2.10.5 : Apache License 2.0
jackson-databind 2.10.5.1 : Apache License 2.0
jackson-databind 2.11.3 : Apache License 2.0
jackson-dataformat-yaml 2.10.5 : Apache License 2.0
jackson-datatype-guava 2.10.5 : Apache License 2.0
jackson-datatype-joda jackson-datatype-joda-2.10.5 : Apache License 2.0
jackson-jaxrs-json-provider 2.10.5 : Apache License 2.0
jackson-jaxrs-json-provider 2.11.3 : Apache License 2.0
jackson-module-jaxb-annotations 1.9.2 : (GNU Lesser General Public License v2.1 or later AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License)
jackson-module-jaxb-annotations 2.10.5 : Apache License 2.0
jackson-module-jaxb-annotations 2.11.3 : Apache License 2.0
jackson-module-scala 2.10.5 : Apache License 2.0
jakarta.ws.rs-api 2.1.6 : (Sun GPL With Classpath Exception v2.0 OR Eclipse Public License 2.0)
jakarta.xml.bind-api 2.3.2 : Eclipse Distribution License - v 1.0
java-classmate classmate-1.5.1 : Apache License 2.0
javax.inject:1 as OSGi bundle 2.6.1 : (Sun GPL With Classpath Exception v2.0 AND Eclipse Public License 2.0)
javax.ws.rs-api 2.1.1 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
jersey-atom 1.18.6 : Common Development and Distribution License 1.1
jersey-bundle 1.19.3 : Common Development and Distribution License 1.1
jersey-container-servlet 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-container-servlet-core 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-core-server 2.32 : (GNU General Public License v2.0 w/Classpath exception AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Eclipse Public License 2.0)
jersey-ext-bean-validation 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-ext-entity-filtering 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-ext-metainf-services 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-fastinfoset 1.13-b01 : (Common Development and Distribution License 1.1 AND Sun GPL With Classpath Exception v2.0)
jersey-grizzly 1.18.6 : Common Development and Distribution License 1.1
jersey-json 1.18.6 : Common Development and Distribution License 1.1
jersey-json 1.19 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
jersey-media-jaxb 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-media-json-jackson 2.32 : (GNU General Public License v2.0 w/Classpath exception AND Apache License 2.0 AND Eclipse Public License 2.0)
jersey-media-multipart 2.32 : (MIT License AND BSD 2-clause "Simplified" License AND Eclipse Distribution License - v 1.0 AND Sun GPL With Classpath Exception v2.0 AND Apache License 2.0 AND BSD 3-clause "New" or "Revised" License AND Public Domain AND Eclipse Public License 2.0 AND W3C Software Notice and License (2002-12-31))
jersey-multipart 1.19 : (Common Development and Distribution License 1.1 AND Sun GPL With Classpath Exception v2.0)
jersey-server 1.19 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
jersey-server 1.19.3 : Common Development and Distribution License 1.1
jersey-servlet 1.19 : Common Development and Distribution License 1.1
jersey-servlet 1.19.3 : Common Development and Distribution License 1.1
jersey-shaded 0.10.0.7.2.7.0-71 : Apache License 2.0
jerseyguice 1.19 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
json-smart 2.3 : Apache License 2.0
jsr311-api 1.1.1 : Common Development and Distribution License 1.0
jsr330-api 0.9 : Apache License 2.0
jtransactions 3.0.0 : Apache License 2.0
libplexus-utils 3.1.0 : Apache License 2.0
mstrzele/helm-edit v0.4.0 : MIT License
org.eclipse.osgi.services 3.5.2 : Apache License 2.0
org.knowhowlab.osgi.testing jmx-1.0.0 : Apache License 2.0
org.knowhowlab.osgi.testing jmx-1.0.2 : Apache License 2.0
org.osgi.compendium r4v42-20090728 : Apache License 2.0
osgi.core 4.3.1 : Apache License 2.0
osgi.enterprise 4.2.0 : Apache License 2.0
plexus-sec-dispatcher 1.3.1 : Apache License 2.0
ranger-plugin-classloader 2.1.0.7.1.5.0-225 : Apache License 2.0
re2j 1.2 : BSD 3-clause "New" or "Revised" License
reflections 0.9.11 : Do What The F*ck You Want To Public License
registry-common 0.9.1 : Apache License 2.0
schema-registry-authorizer 0.10.0.7.1.6.0-297 : Apache License 2.0
schema-registry-authorizer 0.9.1 : Apache License 2.0
schema-registry-authorizer 0.9.1.7.2.2.4-2 : Apache License 2.0
schema-registry-common 0.10.0.7.1.6.0-297 : Apache License 2.0
schema-registry-common 0.9.1 : Apache License 2.0
schema-registry-common 0.9.1.7.2.3.0-164 : Apache License 2.0
schema-registry-core 0.8.1 : Apache License 2.0
schema-registry-webservice 0.9.1.7.2.1.2-4 : Apache License 2.0
serdes-examples 0.9.1 : Apache License 2.0
spectator-reg-atlas 0.105.0 : Apache License 2.0
spectator-reg-atlas 0.106.0 : Apache License 2.0
storage-core 0.9.0 : Apache License 2.0
storage-tool 0.10.0.7.1.6.0-297 : Apache License 2.0
storage-tool 0.10.0.7.2.7.0-184 : Apache License 2.0
swagger-core v1.6.0 : Apache License 2.0
swagger-jaxrs 1.6.0 : Apache License 2.0
swagger-jersey2-jaxrs (Jersey 2.x support) 1.6.0 : Apache License 2.0
swagger-models 1.6.0 : Apache License 2.0
tag-registry 0.8.1 : Apache License 2.0
txw2 20110809 : (Common Development and Distribution License 1.1 OR Sun GPL With Classpath Exception v2.0)
waffle-jna 1.9.1 : Eclipse Public License 1.0
wildfly-openssl 1.0.7.Final : Apache License 2.0
wildfly-openssl-java 1.0.8.Final : Apache License 2.0
wildfly-openssl-windows-i386 1.0.7.Final : Apache License 2.0
Licenses:
Apache License 1.1
(Apache Commons Digester 1.8.1)
Apache Software License
=======================
Version 1.1
-----------
Copyright (c) 2000 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. 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.
3. The end-user documentation included with the redistribution, if any, must
include the following acknowledgment:
"This product includes software developed by the Apache Software Foundation
(http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if and
wherever such third-party acknowledgments normally appear.
4. The names "Apache" and "Apache Software Foundation" must not be used to
endorse or promote products derived from this software without prior written
permission. For written permission, please contact apache@apache.org.
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the Apache
Software Foundation.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED 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 THE APACHE
SOFTWARE FOUNDATION OR ITS CONTRIBUTORS 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 SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
--------------------------------------------------------------------------------
This software consists of voluntary contributions made by many individuals on
behalf of the Apache Software Foundation. For more information on the Apache
Software Foundation, please see <http://www.apache.org/>.
Portions of this software are based upon public domain software originally
written at the National Center for Supercomputing Applications, University of
Illinois, Urbana-Champaign.
---
Apache License 2.0
(ASM based accessors helper used by json-smart 1.2, AWS SDK for Java - Bundle 1.11.901, Annotations for Metrics 4.1.14, Apache Atlas Plugin Classloader 2.1.0.7.1.5.0-257, Apache Avro 1.9.1, Apache Commons BeanUtils 1.9.4, Apache Commons CLI 1.2, Apache Commons CLI 1.3.1, Apache Commons Codec 1.11, Apache Commons Codec 1.14, Apache Commons Collections 3.2.2, Apache Commons Compress 1.19, Apache Commons Configuration 1.10, Apache Commons Configuration 2.1.1, Apache Commons Lang 2.6, Apache Commons Lang 3.11, Apache Commons Lang 3.8.1, Apache Commons Logging 1.2, Apache Commons Math 3.1.1, Apache Commons Net 3.6, Apache Commons Text 1.9, Apache Commons Validator 1.6, Apache Directory API ASN.1 API 1.0.0-M19, Apache Directory LDAP API I18n 1.0.2, Apache Directory LDAP API Utilities 1.0.2, Apache Directory Studio 2.0.0-M15, Apache Felix Configuration Admin Service 1.2.8, Apache Felix Http Api 2.3.0, Apache Geronimo Annotation Spec 1.3 1.2, Apache Hadoop 3.1.1.7.1.5.0-100, Apache Hadoop 3.1.1.7.1.5.0-141, Apache Hadoop 3.1.1.7.1.5.0-143, Apache Hadoop 3.1.1.7.1.5.0-249, Apache Hadoop Amazon Web Services support 3.1.1.7.2.7.0-87, Apache Hadoop Annotations 3.1.1.7.1.5.0-187, Apache Hadoop Auth 3.1.1.7.1.5.0-123, Apache Hadoop Azure Data Lake support 3.1.1.7.1.5.0-163, Apache Hadoop Azure support 3.1.1.7.1.5.0-159, Apache Hadoop Client 3.1.1.7.1.5.0-162, Apache Hadoop Cloud Storage 3.1.1.7.1.5.0-195, Apache Hadoop HDFS Client 3.1.1.7.1.5.0-141, Apache HttpClient 4.5.13, Apache HttpClient 4.5.6, Apache HttpComponents Core 4.4.10, Apache HttpComponents Core 4.4.13, Apache HttpMime 4.5.13, Apache Solr Solrj 8.4.1.7.1.5.0-162, Apache Solr Solrj 8.4.1.7.1.6.0-297, Apache Yetus - Audience Annotations 0.5.0, Apache ZooKeeper - Jute 3.5.5.7.2.3.0-106, Apache log4j 1.2.17-cloudera1, ApacheDS Protocol Kerberos Codec 2.0.0-M15, Atlas Dropwizard Module 0.10.0.7.2.7.0-184, Atlas Dropwizard Module 0.10.0.7.2.7.5-1, Atlas Integration Common Classes 0.9.1.7.2.7.0-22, Atlas Shim 0.10.0.7.2.7.0-57, Atlas-SchemaRegistry Translator 0.10.0.7.2.7.1-1, Bean Validation API 2.0.2, Caffeine cache 2.6.2, Caffeine cache 2.8.6, Common library for Plugins 2.1.0.7.1.5.0-242, Common library for Plugins 2.1.0.7.1.6.0-297, Common library for Plugins 2.1.0.7.2.7.0-184, Commons IO 2.6, Curator Client 4.3.0.7.2.1.0-302, Curator Framework 4.3.0.7.2.7.0-184, Curator Recipes 4.3.0.7.1.6.0-297, Curator Recipes 4.3.0.7.2.3.0-171, Data Mapper for Jackson 1.9.13-cloudera.1, Dropwizard Asset Bundle 2.0.15, Dropwizard Configuration Support 2.0.15, Dropwizard Freemarker Views 2.0.0, Dropwizard Jackson Support 2.0.15, Dropwizard Jersey Support 2.0.15, Dropwizard Jetty Support 2.0.15, Dropwizard Lifecycle Support 2.0.15, Dropwizard Logging Support 2.0.15, Dropwizard Metrics Support 2.0.15, Dropwizard Request Logging Support 2.0.15, Dropwizard Servlet Support 2.0.15, Dropwizard Swagger support 2.0.0-1, Dropwizard Utility Classes 2.0.15, Dropwizard Validation Support 2.0.15, Dropwizard Views 2.0.0, Elastic JNA Distribution 5.5.0, FindBugs jsr305 3.0.2, FreeMarker 2.3.29, Google Guice 4.2.3, Guava InternalFutureFailureAccess and InternalFutures 1.0.1, Guava ListenableFuture only 9999.0-empty-to-avoid-conflict-with-guava, Guava: Google Core Libraries for Java v28.1, Guava: Google Core Libraries for Java v30.0, HBase - Server 5.1.0.7.1.6.0-297, Hibernate Validator 6.1.6.Final, HikariCP HikariCP-3.4.1, J2ObjC Annotations 1.3, JAX-RS provider for JSON content type 1.9.13, JAX-RS provider for JSON content type 1.9.2, JBoss Logging 3 3.3.2.Final, JCIP Annotations under Apache License 1.0-1, JCL 1.2 Implemented Over SLF4J 1.7.23, JCL 1.2 Implemented Over SLF4J 1.7.30, JVM Integration for Metrics 4.1.14, Jackson Integration for Metrics 4.1.14, Jackson module: Paranamer 2.10.5, Jackson-Datatype-JSR310 2.10.5, Jackson-JAXRS-base 2.10.5, Jackson-JAXRS-base 2.11.3, Jackson-datatype-jdk8 2.10.5, Jackson-module-Afterburner 2.10.5, Jackson-module-parameter-names 2.10.5, Java Native Access (JNA) 5.0.0, Java redis client 3.5.0.Final, Javassist rel_3_27_0_ga, Javax Inject from the JSR-330 Expert Group 1, Jersey 2.32, Jersey Inject HK2 2.32, Jettison - Json Stax implementation 1.1, Jetty :: Asynchronous HTTP Client 9.4.31.v20200723, Jetty :: Servlet Handling 9.4.33.v20201020, Jetty :: Utility Servlets and Filters 9.4.33.v20201020, Jetty Toolchain 1.0.4, Jetty: Java based HTTP/1.x, HTTP/2, Servlet, WebSocket Server jetty-9.4.31.v20200723, Jetty: Java based HTTP/1.x, HTTP/2, Servlet, WebSocket Server jetty-9.4.33.v20201020, Jetty: Java based HTTP/1.x, HTTP/2, Servlet, WebSocket Server jetty-9.4.34.v20201102, Joda Time 2.8.1, Joda Time v2.10.6, Joda Time v2.10.8, Kerb Simple Kdc 1.1.1, Kerby ASN1 Project 1.1.1, Kerby Config 1.1.1, Kerby PKIX Project 1.1.1, Kerby Util 1.1.1, Kerby XDR Project 1.1.1, Kerby-kerb Admin 1.1.1, Kerby-kerb Client 1.1.1, Kerby-kerb Common 1.1.1, Kerby-kerb Crypto 1.1.1, Kerby-kerb Identity 1.1.1, Kerby-kerb Server 1.1.1, Kerby-kerb Util 1.1.1, Kerby-kerb core 1.1.1, Log4j Implemented Over SLF4J 1.7.30, Metrics Core 4.1.14, Metrics Health Checks 4.1.14, Metrics Integration for Caffeine 4.1.14, Metrics Integration for Jersey 2.x 4.1.14, Metrics Integration for Jetty 9.1 and higher 4.1.14, Metrics Integration for Logback 4.1.14, Metrics Integration with JMX 4.1.14, Metrics Utility Servlets 4.1.14, Microsoft Windows Azure Storage Client SDK 7.0.0, Netty Project netty-4.1.51.Final, Netty/Codec/Redis 4.1.48.Final, Netty/Codec/SMTP 4.1.48.Final, Netty/Transport/Native/KQueue 4.1.48.Final, Netty/Transport/Native/Unix/Common 4.1.51.Final, Nimbus-JOSE-JWT 7.9, OSGi R4 compendium 1.4.0, OkHttp 2.7.5, OkIO 1.6.0, Plexus 2.1.0, Policeman's Forbidden API Checker 2.7, Proxy Vole 1.0.5, Ranger Remote Authorization Hook - ABFS driver 2.1.0.7.1.5.0-150, RxJava 1.1.6, Scala v2.12.12, SnakeYAML 1.26, Spring Commons Logging Bridge 5.0.19.RELEASE, Spring Framework v4.3.29.RELEASE, Spring Framework v5.0.19.RELEASE, Spring Security 3.2.7, Spring Security Kerberos Core 1.0.1.RELEASE, SureFire API 3.0.0-M4, Throttling Appender 1.1.0, Token provider 1.1.1, Woodstox 5.0.3, athenz-zts-java-client 1.8.37, atlas-client-common 2.0.0.7.2.3.0-125, atlas-client-common 2.1.0.7.1.5.0-184, atlas-client-v2 2.1.0.7.1.5.0-195, avro-examples 0.9.1, beanvalidation-api 1.1.0.Final, cglib 2.2.2, com.helger:profiler 1.1.1, dropwizard 2.0.15, dropwizard-auth 2.0.15, error-prone annotations 2.3.2, error-prone annotations 2.4.0, external-objenesis 1.0.4, flyway-core 5.1.4, flyway-gradle-plugin 5.1.4, gateway-cloud-bindings 1.3.0.7.1.6.0-297, gateway-shell 1.3.0.7.1.6.0-297, gcs-connector.jar 2.1.2.7.1.5.0-181, google-gson 2.2.4, google-gson 2.8.6, gradle-plugins 6.1.1, hadoop-mapreduce-client-common 3.1.1.7.1.5.0-117, hadoop-mapreduce-client-core 3.1.1.7.1.5.0-206, hadoop-mapreduce-client-core 3.1.1.7.1.5.0-209, hadoop-mapreduce-client-jobclient 3.1.1.7.1.5.0-140, hadoop-mapreduce-client-jobclient 3.1.1.7.1.5.0-231, hadoop-yarn-api 3.1.1.7.1.5.0-228, hadoop-yarn-api 3.1.1.7.1.5.0-247, hadoop-yarn-api 3.1.1.7.2.7.0-82, hadoop-yarn-client 3.1.1.7.1.5.0-146, hadoop-yarn-common 3.1.1.7.1.5.0-228, hadoop-yarn-common 3.1.1.7.1.5.0-235, hadoop-yarn-common 3.1.1.7.2.6.0-46, hortonworks/registry 0.9.1-rc1, htrace-core 4.1.0-incubating, io.swagger:swagger-annotations 1.6.0, jackson-annotations jackson-annotations-2.10.5, jackson-annotations jackson-annotations-2.11.3, jackson-core 1.9.13-cloudera.2, jackson-core 2.10.5, jackson-core 2.11.3, jackson-databind 2.10.5, jackson-databind 2.10.5.1, jackson-databind 2.11.3, jackson-dataformat-yaml 2.10.5, jackson-datatype-guava 2.10.5, jackson-datatype-joda jackson-datatype-joda-2.10.5, jackson-jaxrs-json-provider 2.10.5, jackson-jaxrs-json-provider 2.11.3, jackson-module-jaxb-annotations 1.9.2, jackson-module-jaxb-annotations 2.10.5, jackson-module-jaxb-annotations 2.11.3, jackson-module-scala 2.10.5, java-classmate classmate-1.5.1, jersey-container-servlet 2.32, jersey-container-servlet-core 2.32, jersey-core-server 2.32, jersey-ext-bean-validation 2.32, jersey-ext-entity-filtering 2.32, jersey-ext-metainf-services 2.32, jersey-media-jaxb 2.32, jersey-media-json-jackson 2.32, jersey-media-multipart 2.32, jersey-shaded 0.10.0.7.2.7.0-71, json-smart 2.3, jsr330-api 0.9, jtransactions 3.0.0, libplexus-utils 3.1.0, org.eclipse.osgi.services 3.5.2, org.knowhowlab.osgi.testing jmx-1.0.0, org.knowhowlab.osgi.testing jmx-1.0.2, org.osgi.compendium r4v42-20090728, osgi.core 4.3.1, osgi.enterprise 4.2.0, plexus-sec-dispatcher 1.3.1, ranger-plugin-classloader 2.1.0.7.1.5.0-225, registry-common 0.9.1, schema-registry-authorizer 0.10.0.7.1.6.0-297, schema-registry-authorizer 0.9.1, schema-registry-authorizer 0.9.1.7.2.2.4-2, schema-registry-common 0.10.0.7.1.6.0-297, schema-registry-common 0.9.1, schema-registry-common 0.9.1.7.2.3.0-164, schema-registry-core 0.8.1, schema-registry-webservice 0.9.1.7.2.1.2-4, serdes-examples 0.9.1, spectator-reg-atlas 0.105.0, spectator-reg-atlas 0.106.0, storage-core 0.9.0, storage-tool 0.10.0.7.1.6.0-297, storage-tool 0.10.0.7.2.7.0-184, swagger-core v1.6.0, swagger-jaxrs 1.6.0, swagger-jersey2-jaxrs (Jersey 2.x support) 1.6.0, swagger-models 1.6.0, tag-registry 0.8.1, wildfly-openssl 1.0.7.Final, wildfly-openssl-java 1.0.8.Final, wildfly-openssl-windows-i386 1.0.7.Final)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"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.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"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.
"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).
"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.
"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."
"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.
2. 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.
3. 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.
4. 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:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. 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
d. 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.
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.
5. 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.
6. 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.
7. 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.
8. 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.
9. 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.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work
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.
Copyright [yyyy] [name of copyright owner] Licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
---
BSD 2-clause "Simplified" License
(Jersey Inject HK2 2.32, jersey-container-servlet 2.32, jersey-container-servlet-core 2.32, jersey-ext-bean-validation 2.32, jersey-ext-entity-filtering 2.32, jersey-ext-metainf-services 2.32, jersey-media-jaxb 2.32, jersey-media-multipart 2.32)
BSD Two Clause License
======================
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS 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 THE AUTHOR 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 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
---
BSD 2-clause "Simplified" License
(PostgreSQL JDBC Driver (pgjdbc) REL42.2.13)
Copyright (c) 1997, PostgreSQL Global Development Group
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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 SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE
---
BSD 3-clause "New" or "Revised" License
(ASM 3.3.1)
Copyright (c) 2000-2005 INRIA, France Telecom
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
3. Neither the name of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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 SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE
---
BSD 3-clause "New" or "Revised" License
(ASM 5.0.4)
Copyright (c) 2000-2011 INRIA, France Telecom
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
3. Neither the name of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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 SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE
---
BSD 3-clause "New" or "Revised" License
(jersey-core-server 2.32)
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- 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.
- Neither the name of the Eclipse Foundation, Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS 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 THE COPYRIGHT OWNER OR
CONTRIBUTORS 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
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
---
BSD 3-clause "New" or "Revised" License
(JavaBeans Activation Framework 1.2.1, JavaBeans Activation Framework API jar 1.2.1)
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
- 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.
- Neither the name of the Eclipse Foundation, Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS 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 THE COPYRIGHT OWNER OR
CONTRIBUTORS 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
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
---
BSD 3-clause "New" or "Revised" License
(JSch 0.1.54, Jersey Inject HK2 2.32, Protocol Buffer Java API 2.5.0, Stax2 API 3.1.4, jackson-module-jaxb-annotations 1.9.2, jersey-container-servlet 2.32, jersey-container-servlet-core 2.32, jersey-ext-bean-validation 2.32, jersey-ext-entity-filtering 2.32, jersey-ext-metainf-services 2.32, jersey-media-jaxb 2.32, jersey-media-multipart 2.32, re2j 1.2)
Copyright (c) <YEAR>, <OWNER>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* 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.
* Neither the name of the <ORGANIZATION> nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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 SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---
BSD 3-clause "New" or "Revised" License
(ParaNamer Core 2.8)
Files: debian/*
Copyright: 2014-2016, Markus Koschany <apo@debian.org>
2015, Emmanuel Bourg <ebourg@apache.org>
License: BSD-3-clause
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
3. Neither the name of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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 SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE
---
Common Development and Distribution License 1.0
(Java Servlet API 2.1, JavaBeans Activation Framework 1.1, JavaBeans Activation Framework 1.2.0, StAX 1.0-2, jsr311-api 1.1.1)
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
==============================================================
1. Definitions.
1.1. "Contributor" means each individual or entity that creates or
contributes to the creation of Modifications.
1.2. "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.
1.3. "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.
1.4. "Executable" means the Covered Software in any form other than Source
Code.
1.5. "Initial Developer" means the individual or entity that first makes
Original Software available under this License.
1.6. "Larger Work" means a work which combines Covered Software or portions
thereof with code not governed by the terms of this License.
1.7. "License" means this document.
1.8. "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.
1.9. "Modifications" means the Source Code and Executable form of any of
the following:
A. Any file that results from an addition to, deletion from or
modification of the contents of a file containing Original Software or
previous Modifications;
B. Any new file that contains any part of the Original Software or
previous Modification; or
C. Any new file that is contributed or otherwise made available under
the terms of this License.
1.10. "Original Software" means the Source Code and Executable form of
computer software code that is originally released under this License.
1.11. "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.
1.12. "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.
1.13. "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.
2. License Grants.
2.1. The Initial Developer Grant.
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:
(a) 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
(b) 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).
(c) 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.
(d) 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.
2.2. Contributor Grant.
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:
(a) 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