forked from Aloisius/nutch
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNOTICE-binary
More file actions
1585 lines (1388 loc) · 57.8 KB
/
NOTICE-binary
File metadata and controls
1585 lines (1388 loc) · 57.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Apache Nutch
Copyright 2005 and onwards The Apache Software Foundation
This product includes software developed at The Apache Software
Foundation (http://www.apache.org/).
Export Control Notice
---------------------
This distribution includes cryptographic software. The country in
which you currently reside may have restrictions on the import,
possession, use, and/or re-export to another country, of
encryption software. BEFORE using any encryption software, please
check your country's laws, regulations and policies concerning the
import, possession, or use, and re-export of encryption software, to
see if this is permitted. See <http://www.wassenaar.org/> for more
information.
The U.S. Government Department of Commerce, Bureau of Industry and
Security (BIS), has classified this software as Export Commodity
Control Number (ECCN) 5D002.C.1, which includes information security
software using or performing cryptographic functions with asymmetric
algorithms. The form and manner of this Apache Software Foundation
distribution makes it eligible for export under the License Exception
ENC Technology Software Unrestricted (TSU) exception (see the BIS
Export Administration Regulations, Section 740.13) for both object
code and source code.
The following provides more details on the included cryptographic software:
The parse-tika plugin uses Apache Tika and the Bouncy Castle
generic encryption libraries for extracting text content and metadata
from encrypted PDF files. See <https://www.bouncycastle.org/> for more
details on Bouncy Castle and <https://tika.apache.org/> for details
on Apache Tika.
// ------------------------------------------------------------------
// NOTICE file corresponding to the section 4d of The Apache License,
// Version 2.0, in this case for
// ------------------------------------------------------------------
Apache projects
---------------
# org.apache.avro:avro
Apache Avro (https://avro.apache.org)
# org.apache.commons:commons-collections4
Apache Commons Collections (https://commons.apache.org/proper/commons-collections/)
# org.apache.commons:commons-compress
Apache Commons Compress (https://commons.apache.org/proper/commons-compress/)
# org.apache.commons:commons-configuration2
Apache Commons Configuration (https://commons.apache.org/proper/commons-configuration/)
# org.apache.commons:commons-csv
Apache Commons CSV (https://commons.apache.org/proper/commons-csv/)
# org.apache.commons:commons-exec
Apache Commons Exec (http://commons.apache.org/proper/commons-exec/)
# org.apache.commons:commons-exec
Apache Commons Exec (https://commons.apache.org/proper/commons-exec/)
# org.apache.commons:commons-jexl3
Apache Commons JEXL (https://commons.apache.org/proper/commons-jexl/)
# org.apache.commons:commons-lang3
Apache Commons Lang (https://commons.apache.org/proper/commons-lang/)
# org.apache.commons:commons-lang3
Apache Commons Lang (http://commons.apache.org/proper/commons-lang/)
# org.apache.commons:commons-math3
Apache Commons Math (http://commons.apache.org/proper/commons-math/)
# org.apache.commons:commons-text
Apache Commons Text (https://commons.apache.org/proper/commons-text)
# org.apache.curator:curator-client
Apache Curator Client
# org.apache.curator:curator-framework
Apache Curator Framework
# org.apache.curator:curator-recipes
Apache Curator Recipes
# org.apache.cxf:cxf-core
Apache CXF Core (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-bindings-soap
Apache CXF Runtime SOAP Binding (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-bindings-xml
Apache CXF Runtime XML Binding (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-databinding-jaxb
Apache CXF Runtime JAXB DataBinding (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-frontend-jaxrs
Apache CXF Runtime JAX-RS Frontend (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-frontend-jaxws
Apache CXF Runtime JAX-WS Frontend (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-frontend-simple
Apache CXF Runtime Simple Frontend (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-security
Apache CXF Runtime Security functionality (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-transports-http
Apache CXF Runtime HTTP Transport (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-transports-http-jetty
Apache CXF Runtime HTTP Jetty Transport (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-ws-addr
Apache CXF Runtime WS Addressing (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-ws-policy
Apache CXF Runtime WS Policy (https://cxf.apache.org)
# org.apache.cxf:cxf-rt-wsdl
Apache CXF Runtime Core for WSDL (https://cxf.apache.org)
# org.apache.hadoop:hadoop-annotations
Apache Hadoop Annotations
# org.apache.hadoop:hadoop-auth
Apache Hadoop Auth
# org.apache.hadoop:hadoop-common
Apache Hadoop Common
# org.apache.hadoop:hadoop-hdfs
Apache Hadoop HDFS
# org.apache.hadoop:hadoop-hdfs-client
Apache Hadoop HDFS Client
# org.apache.hadoop:hadoop-mapreduce-client-common
Apache Hadoop MapReduce Common
# org.apache.hadoop:hadoop-mapreduce-client-core
Apache Hadoop MapReduce Core
# org.apache.hadoop:hadoop-mapreduce-client-jobclient
Apache Hadoop MapReduce JobClient
# org.apache.hadoop:hadoop-yarn-api
Apache Hadoop YARN API
# org.apache.hadoop:hadoop-yarn-client
Apache Hadoop YARN Client
# org.apache.hadoop:hadoop-yarn-common
Apache Hadoop YARN Common
# org.apache.hadoop.thirdparty:hadoop-shaded-guava
Apache Hadoop shaded Guava
# org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_25
Apache Hadoop shaded Protobuf
# org.apache.httpcomponents:httpasyncclient
Apache HttpAsyncClient (http://hc.apache.org/httpcomponents-asyncclient)
# org.apache.httpcomponents:httpclient
Apache HttpClient (http://hc.apache.org/httpcomponents-client)
# org.apache.httpcomponents:httpclient
Apache HttpClient (http://hc.apache.org/httpcomponents-client-ga)
# org.apache.httpcomponents:httpcore
Apache HttpCore (http://hc.apache.org/httpcomponents-core-ga)
# org.apache.httpcomponents:httpcore-nio
Apache HttpCore NIO (http://hc.apache.org/httpcomponents-core-ga)
# org.apache.httpcomponents:httpmime
Apache HttpClient Mime (http://hc.apache.org/httpcomponents-client-ga)
# org.apache.httpcomponents:httpmime
Apache HttpClient Mime (http://hc.apache.org/httpcomponents-client)
# org.apache.james:apache-mime4j-core
Apache James :: Mime4j :: Core
# org.apache.james:apache-mime4j-dom
Apache James :: Mime4j :: DOM
# org.apache.kafka:connect-api
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:connect-json
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-clients
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-group-coordinator
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-metadata
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-raft
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-server
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-server-common
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-storage
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-storage-api
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka-tools-api
Apache Kafka (https://kafka.apache.org)
# org.apache.kafka:kafka_2.12
Apache Kafka (https://kafka.apache.org)
# org.apache.kerby:kerb-core
Apache Kerby-kerb core
# org.apache.kerby:kerb-crypto
Apache Kerby-kerb Crypto
# org.apache.kerby:kerb-util
Apache Kerby-kerb Util
# org.apache.kerby:kerby-asn1
Apache Kerby ASN1 Project
# org.apache.kerby:kerby-config
Apache Kerby Config
# org.apache.kerby:kerby-pkix
Apache Kerby PKIX Project
# org.apache.kerby:kerby-util
Apache Kerby Util
# org.apache.logging.log4j:log4j-api
Apache Log4j API
# org.apache.logging.log4j:log4j-api
Apache Log4j API (https://logging.apache.org/log4j/2.x/)
# org.apache.logging.log4j:log4j-core
Apache Log4j Core (https://logging.apache.org/log4j/2.x/)
# org.apache.logging.log4j:log4j-slf4j2-impl
Apache SLF4J 2 Provider for Log4j API (https://logging.apache.org/log4j/2.x/)
# org.apache.lucene:lucene-analyzers-common
Apache Lucene Common Analyzers
# org.apache.lucene:lucene-backward-codecs
Apache Lucene Memory
# org.apache.lucene:lucene-core
Apache Lucene Core
# org.apache.lucene:lucene-grouping
Apache Lucene Grouping
# org.apache.lucene:lucene-highlighter
Apache Lucene Highlighter
# org.apache.lucene:lucene-join
Apache Lucene Join
# org.apache.lucene:lucene-memory
Apache Lucene Memory
# org.apache.lucene:lucene-misc
Apache Lucene Miscellaneous
# org.apache.lucene:lucene-queries
Apache Lucene Queries
# org.apache.lucene:lucene-queryparser
Apache Lucene QueryParsers
# org.apache.lucene:lucene-sandbox
Apache Lucene Sandbox
# org.apache.lucene:lucene-spatial-extras
Apache Lucene Spatial Extras
# org.apache.lucene:lucene-spatial3d
Apache Lucene Spatial 3D
# org.apache.lucene:lucene-suggest
Apache Lucene Suggest
# org.apache.neethi:neethi
Apache Neethi (https://ws.apache.org/neethi/)
# org.apache.pdfbox:fontbox
Apache FontBox (http://pdfbox.apache.org/)
# org.apache.pdfbox:jbig2-imageio
Apache PDFBox JBIG2 ImageIO plugin
# org.apache.pdfbox:jempbox
Apache JempBox
# org.apache.pdfbox:pdfbox
Apache PDFBox
# org.apache.pdfbox:pdfbox-io
Apache PDFBox io
# org.apache.pdfbox:pdfbox-tools
Apache PDFBox tools
# org.apache.pdfbox:xmpbox
Apache XmpBox
# org.apache.poi:poi
Apache POI - Common (https://poi.apache.org/)
# org.apache.poi:poi-ooxml
Apache POI - API based on OPC and OOXML schemas (https://poi.apache.org/)
# org.apache.poi:poi-ooxml-lite
Apache POI (https://poi.apache.org/)
# org.apache.poi:poi-scratchpad
Apache POI (https://poi.apache.org/)
# org.apache.solr:solr-solrj
Apache Solr Solrj
# org.apache.tika:tika-core
Apache Tika core (https://tika.apache.org/)
# org.apache.tika:tika-handler-boilerpipe
Apache
# org.apache.tika:tika-langdetect-optimaize
Apache Tika Optimaize langdetect
# org.apache.tika:tika-parser-apple-module
Apache Tika Apple parser module
# org.apache.tika:tika-parser-audiovideo-module
Apache Tika audiovideo parser module
# org.apache.tika:tika-parser-cad-module
Apache Tika cad parser module
# org.apache.tika:tika-parser-code-module
Apache Tika code parser module
# org.apache.tika:tika-parser-crypto-module
Apache Tika crypto parser module
# org.apache.tika:tika-parser-digest-commons
Apache Tika digest commons
# org.apache.tika:tika-parser-font-module
Apache Tika font parser module
# org.apache.tika:tika-parser-html-module
Apache Tika html parser module
# org.apache.tika:tika-parser-image-module
Apache Tika image parser module
# org.apache.tika:tika-parser-mail-commons
Apache Tika mail commons
# org.apache.tika:tika-parser-mail-module
Apache Tika mail parser module
# org.apache.tika:tika-parser-microsoft-module
Apache Tika Microsoft parser module
# org.apache.tika:tika-parser-miscoffice-module
Apache Tika miscellaneous office format parser module
# org.apache.tika:tika-parser-news-module
Apache Tika news parser module
# org.apache.tika:tika-parser-ocr-module
Apache Tika OCR parser module
# org.apache.tika:tika-parser-pdf-module
Apache Tika PDF parser module
# org.apache.tika:tika-parser-pkg-module
Apache Tika package parser module
# org.apache.tika:tika-parser-text-module
Apache Tika text parser module
# org.apache.tika:tika-parser-webarchive-module
Apache Tika WARC parser module
# org.apache.tika:tika-parser-xml-module
Apache Tika XML parser module
# org.apache.tika:tika-parser-xmp-commons
Apache Tika XMP commons
# org.apache.tika:tika-parser-zip-commons
Apache Tika ZIP commons
# org.apache.tika:tika-parsers-standard-package
Apache Tika standard parser package
# org.apache.ws.xmlschema:xmlschema-core
Apache XmlSchema Core
# org.apache.xmlbeans:xmlbeans
Apache XmlBeans (https://xmlbeans.apache.org/)
# org.apache.yetus:audience-annotations
Apache Yetus - Audience Annotations
# org.apache.zookeeper:zookeeper
Apache ZooKeeper - Server
# org.apache.zookeeper:zookeeper-jute
Apache ZooKeeper - Jute
Other software
--------------
# aopalliance:aopalliance
AOP alliance (http://aopalliance.sourceforge.net)
- license: Public Domain
(licenses-binary/LICENSE-public-domain.txt)
# com.adobe.xmp:xmpcore
Adobe XMPCore (https://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html)
- license: The BSD 3-Clause License (BSD3)
(licenses-binary/LICENSE-bsd-3-clause.txt)
# com.amazonaws:aws-java-sdk-cloudsearch
AWS Java SDK for Amazon CloudSearch (https://aws.amazon.com/sdkforjava)
- license: Apache License, Version 2.0
# com.amazonaws:aws-java-sdk-core
AWS SDK for Java - Core (https://aws.amazon.com/sdkforjava)
- license: Apache License, Version 2.0
# com.barchart.udt:barchart-udt-bundle
(https://github.com/barchart/barchart-udt/wiki)
- license: The BSD License
(licenses-binary/LICENSE-bsd-2-clause.txt)
# com.beust:jcommander
jcommander (https://jcommander.org)
- license: Apache License, Version 2.0
# com.carrotsearch:hppc
HPPC Collections
- license: The Apache Software License, Version 2.0
# com.drewnoakes:metadata-extractor
${project.groupId}:${project.artifactId} (https://drewnoakes.com/code/exif/)
- license: The Apache Software License, Version 2.0
# com.epam:parso
parso (https://github.com/epam/parso)
- license: Apache License v2
# com.fasterxml.jackson.core:jackson-annotations
Jackson-annotations (http://github.com/FasterXML/jackson)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.core:jackson-annotations
Jackson-annotations (https://github.com/FasterXML/jackson)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.core:jackson-core
Jackson-core (https://github.com/FasterXML/jackson-core)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.core:jackson-core
Jackson-core (https://github.com/FasterXML/jackson)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.core:jackson-databind
jackson-databind (http://github.com/FasterXML/jackson)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.core:jackson-databind
jackson-databind (https://github.com/FasterXML/jackson)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.dataformat:jackson-dataformat-cbor
Jackson dataformat: CBOR (http://github.com/FasterXML/jackson-dataformats-binary)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.dataformat:jackson-dataformat-cbor
Jackson dataformat: CBOR (https://github.com/FasterXML/jackson-dataformats-binary)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.dataformat:jackson-dataformat-csv
Jackson-dataformat-CSV (https://github.com/FasterXML/jackson-dataformats-text)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.dataformat:jackson-dataformat-smile
Jackson dataformat: Smile (http://github.com/FasterXML/jackson-dataformats-binary)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.dataformat:jackson-dataformat-smile
Jackson dataformat: Smile (https://github.com/FasterXML/jackson-dataformats-binary)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
Jackson-dataformat-YAML (https://github.com/FasterXML/jackson-dataformats-text)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.datatype:jackson-datatype-jdk8
Jackson datatype: jdk8
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.jaxrs:jackson-jaxrs-base
Jackson-JAXRS: base
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
Jackson-JAXRS: JSON
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.module:jackson-module-jaxb-annotations
Jackson module: Old JAXB Annotations (javax.xml.bind) (https://github.com/FasterXML/jackson-modules-base)
- license: The Apache Software License, Version 2.0
# com.fasterxml.jackson.module:jackson-module-scala_2.12
jackson-module-scala (https://github.com/FasterXML/jackson-module-scala)
- license: The Apache Software License, Version 2.0
# com.fasterxml.woodstox:woodstox-core
Woodstox (https://github.com/FasterXML/woodstox)
- license: The Apache License, Version 2.0
# com.github.albfernandez:juniversalchardet
juniversalchardet (https://github.com/albfernandez/juniversalchardet)
- license: Mozilla Public License Version 1.1
# com.github.ben-manes.caffeine:caffeine
Caffeine cache (https://github.com/ben-manes/caffeine)
- license: Apache License, Version 2.0
# com.github.crawler-commons:crawler-commons
Crawler-commons (https://github.com/crawler-commons/crawler-commons)
- license: Apache License, Version 2.0
# com.github.jai-imageio:jai-imageio-core
Java Advanced Imaging Image I/O Tools API core (standalone) (https://github.com/jai-imageio/jai-imageio-core)
- license: BSD 3-clause License w/nuclear disclaimer
# com.github.junrar:junrar
Java Unrar (https://github.com/junrar/junrar)
- license: UnRar License
(licenses-binary/LICENSE-unrar-license.txt)
# com.github.luben:zstd-jni
BSD 2-Clause License (https://github.com/luben/zstd-jni)
- license: BSD 2-Clause License
(licenses-binary/LICENSE-bsd-2-clause.txt)
# com.github.pjfanning:jersey-json
jersey-json (https://github.com/pjfanning/jersey-1.x)
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.github.spullara.mustache.java:compiler
compiler (http://github.com/spullara/mustache.java)
- license: Apache License 2.0
# com.github.stephenc.jcip:jcip-annotations
JCIP Annotations under Apache License (http://stephenc.github.com/jcip-annotations)
- license: Apache License, Version 2.0
# com.github.virtuald:curvesapi
curvesapi (https://github.com/virtuald/curvesapi)
- license: BSD License
(licenses-binary/LICENSE-bsd-3-clause.txt)
# com.google.auto:auto-common
Auto Common Libraries (https://github.com/google/auto/tree/master/common)
- license: Apache 2.0
# com.google.auto.service:auto-service
AutoService Processor (https://github.com/google/auto/tree/master/service)
- license: Apache 2.0
# com.google.auto.service:auto-service-annotations
AutoService (https://github.com/google/auto/tree/master/service)
- license: Apache 2.0
# com.google.auto.service:auto-service-annotations
AutoService (https://github.com/google/auto/tree/main/service)
- license: Apache 2.0
# com.google.code.findbugs:jsr305
FindBugs-jsr305 (http://findbugs.sourceforge.net/)
- license: The Apache Software License, Version 2.0
# com.google.code.gson:gson
Gson
- license: Apache 2.0
# com.google.code.gson:gson
Gson
- license: Apache-2.0
# com.google.errorprone:error_prone_annotations
error-prone annotations
- license: Apache 2.0
# com.google.guava:failureaccess
Guava InternalFutureFailureAccess and InternalFutures
- license: Apache License, Version 2.0
# com.google.guava:failureaccess
Guava InternalFutureFailureAccess and InternalFutures
- license: The Apache Software License, Version 2.0
# com.google.guava:guava
Guava: Google Core Libraries for Java (https://github.com/google/guava)
- license: Apache License, Version 2.0
# com.google.guava:guava
Guava: Google Core Libraries for Java
- license: The Apache Software License, Version 2.0
# com.google.guava:listenablefuture
Guava ListenableFuture only
- license: The Apache Software License, Version 2.0
# com.google.inject:guice
Google Guice - Core Library
- license: The Apache Software License, Version 2.0
# com.google.inject.extensions:guice-servlet
Google Guice - Extensions - Servlet
- license: The Apache Software License, Version 2.0
# com.google.j2objc:j2objc-annotations
J2ObjC Annotations (https://github.com/google/j2objc/)
- license: Apache License, Version 2.0
# com.google.j2objc:j2objc-annotations
J2ObjC Annotations (https://github.com/google/j2objc/)
- license: The Apache Software License, Version 2.0
# com.google.re2j:re2j
re2j (http://github.com/google/re2j)
- license: The Go license
(licenses-binary/LICENSE-the-go-license.txt)
# com.googlecode.juniversalchardet:juniversalchardet
juniversalchardet (http://juniversalchardet.googlecode.com/)
- license: Mozilla Public License 1.1 (MPL 1.1)
(licenses-binary/LICENSE-mozilla-public-license-1.1-mpl-1.1.txt)
# com.googlecode.plist:dd-plist
dd-plist (http://www.github.com/3breadt/dd-plist)
- license: MIT License
(licenses-binary/LICENSE-mit-license.txt)
# com.healthmarketscience.jackcess:jackcess
Jackcess (https://jackcess.sourceforge.io)
- license: Apache License, Version 2.0
# com.healthmarketscience.jackcess:jackcess-encrypt
Jackcess Encrypt (http://jackcessencrypt.sf.net)
- license: Apache License, Version 2.0
# com.ibm.icu:icu4j
ICU4J (https://icu.unicode.org/)
- license: Unicode-3.0
(licenses-binary/LICENSE-unicode-icu-license.txt)
# com.jcraft:jsch
JSch (http://www.jcraft.com/jsch/)
- license: Revised BSD
# com.martinkl.warc:warc-hadoop
WARC Input and Output Formats for Hadoop (https://github.com/ept/warc-hadoop)
- license: The MIT License
(licenses-binary/LICENSE-mit-license.txt)
# com.maxmind.db:maxmind-db
MaxMind DB Reader (http://dev.maxmind.com/)
- license: Apache License 2.0
# com.maxmind.geoip2:geoip2
MaxMind GeoIP2 API (https://dev.maxmind.com/geoip?lang=en)
- license: Apache License, Version 2.0
# com.nimbusds:nimbus-jose-jwt
Nimbus JOSE+JWT (https://bitbucket.org/connect2id/nimbus-jose-jwt)
- license: The Apache Software License, Version 2.0
# com.optimaize.languagedetector:language-detector
language-detector (https://github.com/optimaize/language-detector)
- license: Apache 2
# com.pff:java-libpst
java-libpst (https://github.com/rjohnsondev/java-libpst)
- license: The Apache Software License, Version 2.0
# com.rabbitmq:amqp-client
RabbitMQ Java Client (http://www.rabbitmq.com)
- license: ASL 2.0
# com.rometools:rome
rome (http://rometools.github.io/rome/)
- license: The Apache Software License, Version 2.0
# com.rometools:rome
rome
- license: The Apache Software License, Version 2.0
# com.rometools:rome-utils
rome-utils (http://rometools.github.io/rome-utils/)
- license: The Apache Software License, Version 2.0
# com.rometools:rome-utils
rome-utils
- license: The Apache Software License, Version 2.0
# com.shapesecurity:salvation2
salvation (http://cspvalidator.org)
- license: Apache License, Version 2.0
# com.squareup.okhttp3:okhttp
okhttp (https://square.github.io/okhttp/)
- license: The Apache Software License, Version 2.0
# com.squareup.okhttp3:okhttp-brotli
okhttp-brotli (https://square.github.io/okhttp/)
- license: The Apache Software License, Version 2.0
# com.squareup.okhttp3:okhttp-jvm
okhttp (https://square.github.io/okhttp/)
- license: The Apache Software License, Version 2.0
# com.squareup.okhttp3:okhttp-zstd
okhttp-zstd (https://square.github.io/okhttp/)
- license: The Apache Software License, Version 2.0
# com.squareup.okio:okio
okio (https://github.com/square/okio/)
- license: The Apache Software License, Version 2.0
# com.squareup.okio:okio-jvm
okio (https://github.com/square/okio/)
- license: The Apache Software License, Version 2.0
# com.squareup.zstd:zstd-kmp-jvm
zstd-kmp (https://github.com/square/okio-zstd/)
- license: The Apache Software License, Version 2.0
# com.squareup.zstd:zstd-kmp-okio-jvm
zstd-kmp-okio (https://github.com/square/okio-zstd/)
- license: The Apache Software License, Version 2.0
# com.sun.activation:jakarta.activation
Jakarta Activation
- license: EDL 1.0
(licenses-binary/LICENSE-eclipse-distribution-license-v1.0.txt)
# com.sun.istack:istack-commons-runtime
istack common utility code runtime
- license: Eclipse Distribution License - v 1.0
(licenses-binary/LICENSE-eclipse-distribution-license-v1.0.txt)
# com.sun.jersey:jersey-client
jersey-client
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.sun.jersey:jersey-core
jersey-core
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.sun.jersey:jersey-server
jersey-server
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.sun.jersey:jersey-servlet
jersey-servlet
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.sun.jersey.contribs:jersey-guice
jersey-guice
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.sun.xml.bind:jaxb-impl
JAXB RI (http://jaxb.java.net/)
- license: CDDL 1.1
(licenses-binary/LICENSE-cddl-1.1.txt)
# com.tdunning:t-digest
T-Digest (https://github.com/tdunning/t-digest)
- license: The Apache Software License, Version 2.0
# com.tdunning:t-digest
t-digest (https://github.com/tdunning/t-digest)
- license: The Apache Software License, Version 2.0
# com.thoughtworks.paranamer:paranamer
ParaNamer Core
- license: BSD
(licenses-binary/LICENSE-bsd.txt)
# com.typesafe.netty:netty-reactive-streams
Netty Reactive Streams Implementation
- license: Apache License, Version 2.0
# com.typesafe.scala-logging:scala-logging_2.12
Apache 2.0 License (https://github.com/lightbend/scala-logging)
- license: Apache 2.0 License
# com.yammer.metrics:metrics-core
Metrics Core Library
- license: Apache License 2.0
# com.zaxxer:SparseBitSet
SparseBitSet (https://github.com/brettwooldridge/SparseBitSet)
- license: The Apache Software License, Version 2.0
# commons-beanutils:commons-beanutils
Apache Commons BeanUtils (https://commons.apache.org/proper/commons-beanutils/)
- license: Apache License, Version 2.0
# commons-cli:commons-cli
Apache Commons CLI (http://commons.apache.org/proper/commons-cli/)
- license: Apache License, Version 2.0
# commons-cli:commons-cli
Apache Commons CLI (https://commons.apache.org/proper/commons-cli/)
- license: Apache-2.0
# commons-codec:commons-codec
Commons Codec (http://commons.apache.org/codec/)
- license: The Apache Software License, Version 2.0
# commons-codec:commons-codec
Apache Commons Codec (http://commons.apache.org/proper/commons-codec/)
- license: Apache License, Version 2.0
# commons-codec:commons-codec
Apache Commons Codec (https://commons.apache.org/proper/commons-codec/)
- license: Apache License, Version 2.0
# commons-codec:commons-codec
Apache Commons Codec (https://commons.apache.org/proper/commons-codec/)
- license: Apache-2.0
# commons-collections:commons-collections
Apache Commons Collections (http://commons.apache.org/collections/)
- license: Apache License, Version 2.0
# commons-daemon:commons-daemon
Commons Daemon (http://commons.apache.org/daemon/)
- license: The Apache Software License, Version 2.0
# commons-digester:commons-digester
Commons Digester (http://commons.apache.org/digester/)
- license: The Apache Software License, Version 2.0
# commons-httpclient:commons-httpclient
HttpClient (http://jakarta.apache.org/httpcomponents/httpclient-3.x/)
- license: Apache License
# commons-io:commons-io
Apache Commons IO (https://commons.apache.org/proper/commons-io/)
- license: Apache License, Version 2.0
# commons-io:commons-io
Apache Commons IO (https://commons.apache.org/proper/commons-io/)
- license: Apache-2.0
# commons-lang:commons-lang
Commons Lang (http://commons.apache.org/lang/)
- license: The Apache Software License, Version 2.0
# commons-logging:commons-logging
Commons Logging (http://commons.apache.org/proper/commons-logging/)
- license: The Apache Software License, Version 2.0
# commons-logging:commons-logging
Apache Commons Logging (http://commons.apache.org/proper/commons-logging/)
- license: The Apache Software License, Version 2.0
# commons-logging:commons-logging
Apache Commons Logging (https://commons.apache.org/proper/commons-logging/)
- license: Apache-2.0
# commons-net:commons-net
Apache Commons Net (https://commons.apache.org/proper/commons-net/)
- license: Apache License, Version 2.0
# commons-net:commons-net
# commons-validator:commons-validator
Apache Commons Validator (http://commons.apache.org/proper/commons-validator/)
- license: Apache License, Version 2.0
# de.l3s.boilerpipe:boilerpipe
Apache License 2.0 (http://code.google.com/p/boilerpipe/)
- license: Apache License 2.0
# de.vandermeer:ascii-utf-themes
ASCII and UTF Themes (https://github.com/vdmeer/ascii-utf-themes)
- license: Apache 2
# de.vandermeer:asciitable
ASCII Table (https://github.com/vdmeer/asciitable)
- license: Apache 2
# de.vandermeer:char-translation
Character Translation (https://github.com/vdmeer/char-translation)
- license: Apache 2
# de.vandermeer:skb-interfaces
SKB Interfaces (http://www.vandermeer.de/projects/skb/java/core/interfaces)
- license: Apache 2
# dev.failsafe:failsafe
Failsafe
- license: Apache License, Version 2.0
# dk.brics:automaton
dk.brics.automaton (https://www.brics.dk/automaton)
- license: BSD
(licenses-binary/LICENSE-bsd-2-clause.txt)
# dnsjava:dnsjava
dnsjava (https://github.com/dnsjava/dnsjava)
- license: BSD-3-Clause
(licenses-binary/LICENSE-bsd-3-clause.txt)
# info.picocli:picocli
picocli (https://picocli.info)
- license: The Apache Software License, version 2.0
# io.dropwizard.metrics:metrics-core
Metrics Core
- license: Apache License 2.0
# io.netty:netty-all
Netty/All-in-One (https://netty.io/netty-all/)
- license: Apache License, Version 2.0
# io.netty:netty-all
Netty/All-in-One
- license: Apache License, Version 2.0
# io.netty:netty-buffer
Netty/Buffer
- license: Apache License, Version 2.0
# io.netty:netty-codec
Netty/Codec
- license: Apache License, Version 2.0
# io.netty:netty-codec-dns
Netty/Codec/DNS
- license: Apache License, Version 2.0
# io.netty:netty-codec-haproxy
Netty/Codec/HAProxy
- license: Apache License, Version 2.0
# io.netty:netty-codec-http
Netty/Codec/HTTP
- license: Apache License, Version 2.0
# io.netty:netty-codec-http2
Netty/Codec/HTTP2
- license: Apache License, Version 2.0
# io.netty:netty-codec-memcache
Netty/Codec/Memcache
- license: Apache License, Version 2.0
# io.netty:netty-codec-mqtt
Netty/Codec/MQTT
- license: Apache License, Version 2.0
# io.netty:netty-codec-redis
Netty/Codec/Redis
- license: Apache License, Version 2.0
# io.netty:netty-codec-smtp
Netty/Codec/SMTP
- license: Apache License, Version 2.0
# io.netty:netty-codec-socks
Netty/Codec/Socks
- license: Apache License, Version 2.0
# io.netty:netty-codec-stomp
Netty/Codec/Stomp
- license: Apache License, Version 2.0
# io.netty:netty-codec-xml
Netty/Codec/XML
- license: Apache License, Version 2.0
# io.netty:netty-common
Netty/Common
- license: Apache License, Version 2.0
# io.netty:netty-handler
Netty/Handler
- license: Apache License, Version 2.0
# io.netty:netty-handler-proxy
Netty/Handler/Proxy
- license: Apache License, Version 2.0
# io.netty:netty-handler-ssl-ocsp
Netty/Handler/Ssl/Ocsp
- license: Apache License, Version 2.0
# io.netty:netty-resolver
Netty/Resolver
- license: Apache License, Version 2.0
# io.netty:netty-resolver-dns
Netty/Resolver/DNS
- license: Apache License, Version 2.0
# io.netty:netty-resolver-dns-classes-macos
Netty/Resolver/DNS/Classes/MacOS
- license: Apache License, Version 2.0
# io.netty:netty-resolver-dns-native-macos
Netty/Resolver/DNS/Native/MacOS
- license: Apache License, Version 2.0
# io.netty:netty-transport
Netty/Transport
- license: Apache License, Version 2.0
# io.netty:netty-transport-classes-epoll
Netty/Transport/Classes/Epoll
- license: Apache License, Version 2.0
# io.netty:netty-transport-classes-kqueue
Netty/Transport/Classes/KQueue
- license: Apache License, Version 2.0
# io.netty:netty-transport-native-epoll
Netty/Transport/Native/Epoll
- license: Apache License, Version 2.0
# io.netty:netty-transport-native-kqueue
Netty/Transport/Native/KQueue
- license: Apache License, Version 2.0
# io.netty:netty-transport-native-unix-common
Netty/Transport/Native/Unix/Common
- license: Apache License, Version 2.0
# io.netty:netty-transport-rxtx
Netty/Transport/RXTX
- license: Apache License, Version 2.0
# io.netty:netty-transport-sctp
Netty/Transport/SCTP
- license: Apache License, Version 2.0
# io.netty:netty-transport-udt
Netty/Transport/UDT
- license: Apache License, Version 2.0
# io.opentelemetry:opentelemetry-api
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-api-events
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-api-logs
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-context
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-exporter-common
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-exporter-logging
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-extension-incubator
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk-common
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk-extension-autoconfigure
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk-logs
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk-metrics
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-sdk-trace
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry:opentelemetry-semconv
OpenTelemetry Java (https://github.com/open-telemetry/opentelemetry-java)
- license: The Apache License, Version 2.0
# io.opentelemetry.semconv:opentelemetry-semconv
OpenTelemetry Semantic Conventions Java (https://github.com/open-telemetry/semantic-conventions-java)
- license: The Apache License, Version 2.0
# io.ous:jtoml
${project.groupId}:${project.artifactId} (https://github.com/asafh/jtoml)
- license: The Apache Software License, Version 2.0
# io.sgr:s2-geometry-library-java
Google S2 geometry library (https://github.com/sgr-io/s2-geometry-library-java)
- license: The Apache Software License, Version 2.0
# jakarta.activation:jakarta.activation-api
Jakarta Activation API jar
- license: EDL 1.0
(licenses-binary/LICENSE-eclipse-distribution-license-v1.0.txt)
# jakarta.activation:jakarta.activation-api
Jakarta Activation API (https://github.com/jakartaee/jaf-api)
- license: EDL 1.0
(licenses-binary/LICENSE-eclipse-distribution-license-v1.0.txt)
# jakarta.annotation:jakarta.annotation-api
Jakarta Annotations API (https://projects.eclipse.org/projects/ee4j.ca)
- license: EPL 2.0
(licenses-binary/LICENSE-epl-2.0.txt)
# jakarta.jws:jakarta.jws-api
Jakarta Web Services Metadata API (https://github.com/eclipse-ee4j/jws-api)
- license: Eclipse Distribution License - v 1.0
(licenses-binary/LICENSE-eclipse-distribution-license-v1.0.txt)
# jakarta.ws.rs:jakarta.ws.rs-api
jakarta.ws.rs-api (https://github.com/eclipse-ee4j/jaxrs-api)
- license: EPL 2.0
(licenses-binary/LICENSE-epl-2.0.txt)
# jakarta.xml.bind:jakarta.xml.bind-api
Jakarta XML Binding API
- license: Eclipse Distribution License - v 1.0