-
Notifications
You must be signed in to change notification settings - Fork 144
/
open_source_licenses.txt
6119 lines (3653 loc) · 277 KB
/
open_source_licenses.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
open_source_license.txt
Wavefront by VMware 13.7 GA
======================================================================
The following copyright statements and licenses apply to open source
software ("OSS") distributed with the Broadcom product (the "Licensed
Product"). The term "Broadcom" refers solely to the Broadcom Inc.
corporate affiliate that distributes the Licensed Product. The
Licensed Product does not necessarily use all the OSS referred to
below and may also only use portions of a given OSS component.
To the extent required under an applicable open source license,
Broadcom will make source code available for applicable OSS upon
request. Please send an inquiry to opensource@broadcom.com including
your name, address, the product name and version, operating system,
and the place of purchase.
To the extent the Licensed Product includes OSS, the OSS is typically
not owned by Broadcom. THE OSS IS PROVIDED AS IS WITHOUT WARRANTY OR
CONDITION OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT
LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE. To the full extent permitted under applicable
law, Broadcom and its corporate affiliates disclaim all warranties
and liability arising from or related to any use of the OSS.
To the extent the Licensed Product includes OSS licensed under the
GNU General Public License ("GPL") or the GNU Lesser General Public
License (“LGPL”), the use, copying, distribution and modification of
the GPL OSS or LGPL OSS is governed, respectively, by the GPL or LGPL.
A copy of the GPL or LGPL license may be found with the applicable OSS.
Additionally, a copy of the GPL License or LGPL License can be found
at https://www.gnu.org/licenses or obtained by writing to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA.
==================== TABLE OF CONTENTS ====================
The following is a listing of the open source components detailed in
this document. This list is provided for your convenience; please read
further if you wish to review the copyright notice(s) and the full text
of the license associated with each component.
PART 1. APPLICATION LAYER
SECTION 1: Apache License, V2.0
>>> org.apache.commons:commons-lang3-3.1
>>> commons-lang:commons-lang-2.6
>>> com.github.fge:msg-simple-1.1
>>> com.github.fge:btf-1.2
>>> commons-logging:commons-logging-1.2
>>> com.github.fge:json-patch-1.9
>>> com.github.fge:jackson-coreutils-1.6
>>> com.github.stephenc.jcip:jcip-annotations-1.0-1
>>> commons-collections:commons-collections-3.2.2
>>> net.jpountz.lz4:lz4-1.3.0
>>> software.amazon.ion:ion-java-1.0.2
>>> javax.validation:validation-api-1.1.0.final
>>> org.jetbrains:annotations-13.0
>>> io.thekraken:grok-0.1.5
>>> com.tdunning:t-digest-3.2
>>> io.dropwizard.metrics5:metrics-core-5.0.0-rc2
>>> com.google.guava:listenablefuture-9999.0-empty-to-avoid-conflict-with-guava
>>> com.google.guava:failureaccess-1.0.1
>>> com.google.android:annotations-4.1.1.4
>>> com.google.j2objc:j2objc-annotations-1.3
>>> io.opentracing:opentracing-noop-0.33.0
>>> org.apache.commons:commons-collections4-4.4
>>> io.opentracing:opentracing-api-0.33.0
>>> jakarta.validation:jakarta.validation-api-2.0.2
>>> org.jboss.logging:jboss-logging-3.4.1.final
>>> io.opentracing:opentracing-util-0.33.0
>>> net.java.dev.jna:jna-5.5.0
>>> org.apache.httpcomponents:httpcore-4.4.13
>>> net.java.dev.jna:jna-platform-5.5.0
>>> com.squareup.tape2:tape-2.0.0-beta1
>>> com.beust:jcommander-1.78
>>> com.github.java-json-tools:jackson-coreutils-2.0
>>> com.github.java-json-tools:msg-simple-1.2
>>> com.github.java-json-tools:json-patch-1.13
>>> commons-codec:commons-codec-1.15
>>> com.github.java-json-tools:btf-1.3
>>> org.apache.httpcomponents:httpclient-4.5.13
>>> org.elasticsearch:jna-5.5.0
>>> com.squareup.okio:okio-2.8.0
>>> com.ibm.async:asyncutil-0.1.0
>>> com.google.api.grpc:proto-google-common-protos-2.0.1
>>> org.objenesis:objenesis-3.2
>>> net.openhft:compiler-2.21ea1
>>> com.lmax:disruptor-3.4.4
>>> commons-io:commons-io-2.11.0
>>> org.apache.commons:commons-compress-1.21
>>> com.wavefront:wavefront-sdk-java-3.0.0
>>> org.apache.avro:avro-1.11.0
>>> com.github.ben-manes.caffeine:caffeine-2.9.3
>>> com.wavefront:wavefront-internal-reporter-java-1.7.10
>>> org.jboss.logging:jboss-logging-3.4.3.final
>>> org.yaml:snakeyaml-1.30
>>> com.squareup.okhttp3:okhttp-4.9.3
>>> com.google.code.gson:gson-2.9.0
>>> io.jaegertracing:jaeger-thrift-1.8.0
>>> io.jaegertracing:jaeger-core-1.8.0
>>> org.apache.logging.log4j:log4j-jul-2.17.2
>>> org.apache.logging.log4j:log4j-core-2.17.2
>>> org.apache.logging.log4j:log4j-api-2.17.2
>>> org.apache.logging.log4j:log4j-slf4j-impl-2.17.2
>>> org.jboss.resteasy:resteasy-client-3.15.3.Final
>>> org.jboss.resteasy:resteasy-jaxrs-3.15.3.Final
>>> org.jboss.resteasy:resteasy-jackson2-provider-3.15.3.Final
>>> joda-time:joda-time-2.10.14
>>> com.beust:jcommander-1.82
>>> io.netty:netty-transport-classes-epoll-4.1.77.final
>>> io.netty:netty-transport-native-unix-common-4.1.77.final
>>> com.fasterxml.jackson.core:jackson-core-2.13.3
>>> com.fasterxml.jackson.core:jackson-annotations-2.13.3
>>> com.fasterxml.jackson.core:jackson-databind-2.13.3
>>> com.fasterxml.jackson.dataformat:jackson-dataformat-yaml-2.13.3
>>> com.fasterxml.jackson.dataformat:jackson-dataformat-cbor-2.13.3
>>> com.fasterxml.jackson.jaxrs:jackson-jaxrs-base-2.13.3
>>> com.fasterxml.jackson.module:jackson-module-jaxb-annotations-2.13.3
>>> com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider-2.13.3
>>> org.jetbrains.kotlin:kotlin-stdlib-common-1.6.21
>>> commons-daemon:commons-daemon-1.3.1
>>> com.google.errorprone:error_prone_annotations-2.14.0
>>> com.fasterxml.jackson.module:jackson-module-afterburner-2.13.3
>>> net.openhft:chronicle-analytics-2.21ea0
>>> io.grpc:grpc-context-1.46.0
>>> io.opentelemetry.proto:opentelemetry-proto-0.17.0-alpha
>>> io.grpc:grpc-api-1.46.0
>>> net.openhft:chronicle-bytes-2.21.89
>>> net.openhft:chronicle-map-3.21.86
>>> io.zipkin.zipkin2:zipkin-2.23.16
>>> io.grpc:grpc-core-1.46.0
>>> net.openhft:chronicle-threads-2.21.85
>>> net.openhft:chronicle-wire-2.21.89
>>> io.grpc:grpc-stub-1.46.0
>>> net.openhft:chronicle-core-2.21.91
>>> io.perfmark:perfmark-api-0.25.0
>>> org.apache.thrift:libthrift-0.16.0
>>> com.amazonaws:aws-java-sdk-sqs-1.12.229
>>> net.openhft:chronicle-values-2.21.82
>>> com.amazonaws:aws-java-sdk-core-1.12.229
>>> org.jetbrains.kotlin:kotlin-stdlib-1.7.0-RC
>>> net.openhft:chronicle-algorithms-2.21.82
>>> io.opentelemetry:opentelemetry-exporter-jaeger-proto-1.14.0
>>> io.grpc:grpc-netty-1.46.0
>>> com.squareup:javapoet-1.13.0
>>> net.jafama:jafama-2.3.2
>>> net.openhft:affinity-3.21ea5
>>> io.grpc:grpc-protobuf-lite-1.46.0
>>> io.grpc:grpc-protobuf-1.46.0
>>> org.yaml:snakeyaml-1.33
>>> io.zipkin.zipkin2:zipkin-2.23.14
>>> com.fasterxml.jackson.dataformat:jackson-dataformat-cbor-2.14.0
>>> com.fasterxml.jackson.core:jackson-core-2.14.0
>>> com.fasterxml.jackson.core:jackson-annotations-2.14.0
>>> com.fasterxml.jackson.core:jackson-databind-2.14.0
>>> com.fasterxml.jackson.dataformat:jackson-dataformat-yaml-2.14.0
>>> com.wavefront:java-lib-2022-10.1
>>> no.ssb.jpms:jsr305-and-javax.annotation-api-1.0
>>> com.fasterxml.jackson.module:jackson-module-jaxb-annotations-2.14.0
>>> com.wavefront:proxy-12.0
>>> com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider-2.14.0
>>> com.fasterxml.jackson.jaxrs:jackson-jaxrs-base-2.14.0
>>> com.fasterxml.jackson.module:jackson-module-afterburner-2.14.0
>>> me.him188:kotlin-jvm-blocking-bridge-compiler-2.1.0-170.1
>>> com.wavefront:wavefront-internal-reporter-java-1.7.13
>>> com.wavefront:java-lib-2022-11.1
>>> com.google.code.gson:gson-2.10.1
>>> Jetbrains annotations-13.0
>>> com.wavefront:wavefront-internal-reporter-java-1.7.16
>>> io.jaegertracing:jaeger-core-1.8.1
>>> io.jaegertracing:jaeger-thrift-1.8.1
>>> com.wavefront:proxy-12.1
>>> org.springframework.boot:spring-boot-loader-tools-2.7.0
>>> io.perfmark:perfmark-api-0.26.0
>>> com.turbospaces.boot:bootstrap-protobuf-core-1.0.113
>>> org.springframework.boot:spring-boot-starter-log4j2-2.7.12
>>> com.google.j2objc:j2objc-annotations-2.8
>>> com.fasterxml.jackson.core:jackson-core-2.15.2
>>> com.fasterxml.jackson.core:jackson-annotations-2.15.2
>>> com.fasterxml.jackson.dataformat:jackson-dataformat-cbor-2.15.2
>>> com.fasterxml.jackson.datatype:jackson-datatype-jsr310-2.15.2
>>> com.fasterxml.jackson.core:jackson-databind-2.15.2
>>> com.fasterxml.jackson.dataformat:jackson-dataformat-yaml-2.15.2
>>> org.jetbrains.kotlin:kotlin-stdlib-jdk7-1.8.21
>>> org.jetbrains.kotlin:kotlin-stdlib-jdk8-1.8.21
>>> org.springframework.boot:spring-boot-loader-2.7.12
>>> org.springframework.boot:spring-boot-jarmode-layertools-2.7.12
>>> com.fasterxml.jackson.module:jackson-module-jaxb-annotations-2.15.2
>>> com.fasterxml.jackson.jaxrs:jackson-jaxrs-base-2.15.2
>>> com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider-2.15.2
>>> commons-daemon:commons-daemon-1.3.4
>>> ua.parser.wso2:ua-parser-1.5.4.wso2v1
>>> beanvalidation-api-1.1.0
>>> org.yaml:snakeyaml-2.2
>>> com.google.guava:guava-v30.1.1
>>> com.wavefront:proxy-12.2
>>> com.wavefront:java-lib-2023-08.2
>>> com.squareup.okio:okio-3.6.0
>>> com.squareup.okio:okio-jvm-3.6.0
>>> org.apache.avro:avro-1.11.3
>>> io.netty:netty-buffer-4.1.77
>>> io.netty:netty-codec-http2-4.1.77
>>> io.netty:netty-codec-http-4.1.77
>>> io.netty:netty-codec-socks-4.1.77
>>> io.netty:netty-codec-4.1.77
>>> io.netty:netty-common-4.1.77
>>> io.netty:netty-handler-proxy-4.1.77
>>> io.netty:netty-handler-4.1.77
>>> io.netty:netty-resolver-4.1.77
>>> io.netty:netty-transport-native-epoll-4.1.77
>>> io.netty:netty-transport-4.1.77
>>> com.wavefront:wavefront-sdk-java-3.4.3
>>> org.apache.commons:commons-lang3-3.14.0
>>> commons-io:commons-io-2.15.1
>>> com.wavefront:proxy-13.4
>>> com.squareup.okhttp3:okhttp-4.12.0
>>> commons-logging:commons-logging-1.3.0
>>> com.google.guava:failureaccess-1.0.2
>>> com.google.guava:guava-33.0.0-jre
>>> com.toasttab.protokt:protokt-core-1.0.0-beta.0
>>> commons-codec:commons-codec-1.16.1
>>> org.apache.commons:commons-compress-1.26.0
>>> org.apache.logging.log4j:log4j-api-2.23.0
>>> org.apache.logging.log4j:log4j-core-2.23.0
>>> com.amazonaws:aws-java-sdk-core-1.12.667
>>> com.amazonaws:jmespath-java-1.12.667
>>> com.amazonaws:aws-java-sdk-sqs-1.12.667
>>> org.apache.logging.log4j:log4j-slf4j-impl-2.23.0
>>> org.jboss.resteasy:resteasy-jackson2-provider-5.0.9.Final
>>> org.jboss.resteasy:resteasy-client-api-5.0.9.Final
>>> io.grpc:grpc-protobuf-1.62.2
>>> io.grpc:grpc-core-1.62.2
>>> io.grpc:grpc-protobuf-lite-1.62.2
>>> org.apache.logging.log4j:log4j-jul-2.23.0
>>> org.jboss.resteasy:resteasy-core-5.0.9.Final
>>> io.opentelemetry:opentelemetry-exporter-jaeger-proto-1.17.0
>>> io.grpc:grpc-netty-1.62.2
>>> com.google.errorprone:error_prone_annotations-2.25.0
>>> io.grpc:grpc-api-1.62.2
>>> io.grpc:grpc-context-1.62.2
>>> org.jboss.resteasy:resteasy-core-spi-5.0.9.Final
>>> io.grpc:grpc-stub-1.62.2
>>> io.grpc:grpc-util-1.62.2
>>> org.jboss.resteasy:resteasy-client-5.0.9.Final
>>> org.apache.tomcat:tomcat-annotations-api-9.0.87
>>> io.netty:netty-transport-native-unix-common-4.1.108.Final
>>> io.netty:netty-transport-classes-epoll-4.1.108.Final
>>> io.netty:netty-buffer-4.1.108
>>> io.netty:netty-codec-http2-4.1.108
>>> io.netty:netty-codec-http-4.1.108
>>> io.netty:netty-codec-socks-4.1.108
>>> io.netty:netty-codec-4.1.108
>>> io.netty:netty-common-4.1.108
>>> io.netty:netty-handler-proxy-4.1.108
>>> io.netty:netty-handler-4.1.108
>>> io.netty:netty-resolver-4.1.108
>>> io.netty:netty-transport-native-epoll-4.1.108
>>> io.netty:netty-transport-4.1.108
>>> dev.ikm.jpms:commons-lang3-3.14.0-r1
>>> GoogleGson-2.9.0
>>> com.wavefront:java-lib-2022-01.31-QA
>>> me.him188:kotlin-jvm-blocking-bridge-compiler-embeddable-2.1.0-170.1
SECTION 2: BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES
>>> com.yammer.metrics:metrics-core-2.2.0
>>> org.hamcrest:hamcrest-all-1.3
>>> net.razorvine:pyrolite-4.10
>>> net.razorvine:serpent-1.12
>>> backport-util-concurrent:backport-util-concurrent-3.1
>>> org.antlr:antlr4-runtime-4.7.2
>>> org.slf4j:slf4j-api-1.8.0-beta4
>>> com.sun.activation:jakarta.activation-1.2.1
>>> jakarta.activation:jakarta.activation-api-1.2.1
>>> org.reactivestreams:reactive-streams-1.0.3
>>> jakarta.activation:jakarta.activation-api-1.2.2
>>> com.sun.activation:jakarta.activation-1.2.2
>>> jakarta.xml.bind:jakarta.xml.bind-api-2.3.3
>>> com.rubiconproject.oss:jchronic-0.2.8
>>> org.codehaus.mojo:animal-sniffer-annotations-1.19
>>> org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec-2.0.1.Final
>>> org.slf4j:jul-to-slf4j-1.7.36
>>> com.uber.tchannel:tchannel-core-0.8.30
>>> com.google.re2j:re2j-1.6
>>> org.checkerframework:checker-qual-3.22.0
>>> com.google.protobuf:protobuf-java-3.21.0
>>> com.google.protobuf:protobuf-java-util-3.21.0
>>> org.reactivestreams:reactive-streams-1.0.4
>>> dk.brics:automaton-1.12-4
>>> Go programming language-20220411-snapshot
>>> com.bybutter.sisyphus:sisyphus-grpc-coroutine-1.4.0
>>> com.bybutter.sisyphus:sisyphus-grpc-coroutine-1.2.10
>>> com.google.protobuf:protobuf-java-3.21.12
>>> com.google.protobuf:protobuf-java-util-3.21.12
>>> org.codehaus.mojo:animal-sniffer-annotations-1.23
>>> com.google.protobuf:protobuf-java-3.25.3
>>> com.google.protobuf:protobuf-java-util-3.25.3
SECTION 3: Common Development and Distribution License, V1.1
>>> javax.annotation:javax.annotation-api-1.3.2
SECTION 4: Creative Commons Attribution 2.5
>>> com.google.code.findbugs:jsr305-3.0.2
SECTION 5: Eclipse Public License, V1.0
>>> org.jacoco:jacoco-0.7.6
SECTION 6: Eclipse Public License, V2.0
>>> javax.ws.rs:javax.ws.rs-api-2.1.1
>>> org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec-2.0.1.final
>>> org.jboss.spec.javax.annotation:jboss-annotations-api_1.3_spec-2.0.1.final
>>> jakarta.annotation:jakarta.annotation-api-1.3.5
>>> org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec-2.0.2.Final
SECTION 7: GNU Lesser General Public License v3 or later
>>> com.github.fge:json-patch-1.13
APPENDIX. Standard License Files
>>> Apache License, V2.0
>>> Creative Commons Attribution 2.5
>>> Common Development and Distribution License, V1.1
>>> Eclipse Public License, V2.0
>>> Eclipse Public License, V1.0
>>> GNU Lesser General Public License v3 or later
>>> GNU Lesser General Public License, V3.0
==================== PART 1. APPLICATION LAYER ====================
-------------------- SECTION 1: Apache License, V2.0 --------------------
>>> org.apache.commons:commons-lang3-3.1
Apache Commons Lang
Copyright 2001-2011 The Apache Software Foundation
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
This product includes software from the Spring Framework,
under the Apache License 2.0 (see: StringUtils.containsWhitespace())
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
>>> commons-lang:commons-lang-2.6
Apache Commons Lang
Copyright 2001-2011 The Apache Software Foundation
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
>>> com.github.fge:msg-simple-1.1
[PLEASE NOTE: BROADCOM ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE APACHE 2.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE APACHE 2.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
This software is dual-licensed under:
- the Lesser General Public License (LGPL) version 3.0 or, at your option, any
later version;
- the Apache Software License (ASL) version 2.0.
The text of both licenses is included (under the names LGPL-3.0.txt and
ASL-2.0.txt respectively).
Direct link to the sources:
- LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
- ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
>>> com.github.fge:btf-1.2
[PLEASE NOTE: BROADCOM ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE APACHE 2.0 LICENSE. PLEASE SEE THE APPENDIX FOR THE FULL TEXT OF THE APACHE 2.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
This software is dual-licensed under:
- the Lesser General Public License (LGPL) version 3.0 or, at your option, any
later version;
- the Apache Software License (ASL) version 2.0.
The text of both licenses is included (under the names LGPL-3.0.txt and
ASL-2.0.txt respectively).
Direct link to the sources:
- LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
- ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
>>> commons-logging:commons-logging-1.2
Apache Commons Logging
Copyright 2003-2014 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
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/>.
>>> com.github.fge:json-patch-1.9
[PLEASE NOTE: BROADCOM ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF APACHE 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE APACHE 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
This software is dual-licensed under:
- the Lesser General Public License (LGPL) version 3.0 or, at your option, any
later version;
- the Apache Software License (ASL) version 2.0.
The text of this file and of both licenses is available at the root of this
project or, if you have the jar distribution, in directory META-INF/, under
the names LGPL-3.0.txt and ASL-2.0.txt respectively.
Direct link to the sources:
- LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
- ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
>>> com.github.fge:jackson-coreutils-1.6
[PLEASE NOTE: BROADCOM ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE APACHE 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE APACHE 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
This software is dual-licensed under:
- the Lesser General Public License (LGPL) version 3.0 or, at your option, any
later version;
- the Apache Software License (ASL) version 2.0.
The text of this file and of both licenses is available at the root of this
project or, if you have the jar distribution, in directory META-INF/, under
the names LGPL-3.0.txt and ASL-2.0.txt respectively.
Direct link to the sources:
- LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
- ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
>>> com.github.stephenc.jcip:jcip-annotations-1.0-1
Copyright 2013 Stephen Connolly.
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.
>>> commons-collections:commons-collections-3.2.2
Apache Commons Collections
Copyright 2001-2015 The Apache Software Foundation
This product includes software developed by
The Apache Software Foundation (http://www.apache.org/).
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
>>> net.jpountz.lz4:lz4-1.3.0
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.
>>> software.amazon.ion:ion-java-1.0.2
Copyright 2007-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
A copy of the License is located at:
http://aws.amazon.com/apache2.0/
or in the "license" file accompanying this file. This file 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.
>>> javax.validation:validation-api-1.1.0.final
Copyright 2012-2013, Red Hat, Inc. and/or its affiliates, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
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.
>>> org.jetbrains:annotations-13.0
Copyright 2000-2013 JetBrains s.r.o.
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.
>>> io.thekraken:grok-0.1.5
Copyright 2014 Anthony Corbacho and contributors.
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.
>>> com.tdunning:t-digest-3.2
Licensed to Ted Dunning under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
>>> io.dropwizard.metrics5:metrics-core-5.0.0-rc2
License: Apache 2.0
>>> com.google.guava:listenablefuture-9999.0-empty-to-avoid-conflict-with-guava
License : Apache 2.0
>>> com.google.guava:failureaccess-1.0.1
Copyright (C) 2018 The Guava Authors
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.
>>> com.google.android:annotations-4.1.1.4
Copyright (C) 2012 The Android Open Source Project
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.
>>> com.google.j2objc:j2objc-annotations-1.3
Copyright 2012 Google Inc. All Rights Reserved.
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.
>>> io.opentracing:opentracing-noop-0.33.0
Copyright 2016-2019 The OpenTracing Authors
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.
>>> org.apache.commons:commons-collections4-4.4
Apache Commons Collections
Copyright 2001-2019 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
>>> io.opentracing:opentracing-api-0.33.0
Copyright 2016-2019 The OpenTracing Authors
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.
>>> jakarta.validation:jakarta.validation-api-2.0.2
License: Apache License, Version 2.0
See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
>>> org.jboss.logging:jboss-logging-3.4.1.final
JBoss, Home of Professional Open Source.
Copyright 2013 Red Hat, Inc.
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.
>>> io.opentracing:opentracing-util-0.33.0
Copyright 2016-2019 The OpenTracing Authors
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.
>>> net.java.dev.jna:jna-5.5.0
[PLEASE NOTE: BROADCOM ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE Apache2.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE Apache2.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.]
Copyright (c) 2007 Timothy Wall, All Rights Reserved
The contents of this file is dual-licensed under 2
alternative Open Source/Free licenses: LGPL 2.1 or later and
Apache License 2.0. (starting with JNA version 4.0.0).
You can freely decide which license you want to apply to
the project.
You may obtain a copy of the LGPL License at:
http://www.gnu.org/licenses/licenses.html
A copy is also included in the downloadable source code package
containing JNA, in file "LGPL2.1".
You may obtain a copy of the Apache License at:
http://www.apache.org/licenses/
A copy is also included in the downloadable source code package
containing JNA, in file "AL2.0".
>>> org.apache.httpcomponents:httpcore-4.4.13
Apache HttpCore
Copyright 2005-2019 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
====================================================================
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.