-
Notifications
You must be signed in to change notification settings - Fork 25
/
CITATION.cff
1816 lines (1816 loc) · 60.5 KB
/
CITATION.cff
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
cff-version: 1.2.0
type: software
message: If you use this software, please cite it using these metadata.
title: ANNIS
doi: 10.5281/zenodo.1212548
authors:
- given-names: Thomas
family-names: Krause
affiliation: Humboldt-Universität zu Berlin
orcid: https://orcid.org/0000-0003-3731-2422
- given-names: Weißenfels
family-names: Benjamin
- given-names: Tom
family-names: Rütte
- given-names: Irina
family-names: Glushanok
- given-names: Martin
family-names: Klotz
- given-names: Shuo
family-names: Zhang
affiliation: Bose
- given-names: Amir
family-names: Zeldes
affiliation: Georgetown University
- given-names: Fabian
family-names: Bartels
- given-names: Stephan
family-names: Druskat
affiliation: '@corpus-tools'
- given-names: Adriane
family-names: Boyd
- given-names: Egon
family-names: Stemle
- given-names: Lari
family-names: Lampen
- given-names: Florian
family-names: Petran
affiliation: Ruhr-Universitaet Bochum
repository-code: https://github.com/korpling/ANNIS
license: Apache-2.0
version: 4.12.3
date-released: 2024-11-18
references:
- type: article
title: 'ANNIS3: A new architecture for generic corpus query and visualization'
year: 2016
url: http://doi.org/10.1093/llc/fqu057
authors:
- family-names: Krause
given-names: Thomas
orcid: https://orcid.org/0000-0003-3731-2422
affiliation: Humboldt-Universität zu Berlin
- family-names: Zeldes
given-names: Amir
affiliation: Georgetown University
journal: Digital Scholarship in the Humanities
volume: 31
issue: '1'
issn: 2055-7671
- type: software
title: ANTLR 3 Runtime
version: 3.5.2
abbreviation: org.antlr:antlr-runtime
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/ANTLR_3_Runtime
directory.
authors:
- name: Terence Parr
- name: Jim Idle
repository-code: https://github.com/antlr/antlr3/tree/master/antlr-runtime
- type: software
title: ANTLR 4 Runtime
version: 4.7.2
abbreviation: org.antlr:antlr4-runtime
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/ANTLR_4_Runtime
directory.
authors:
- name: Terence Parr
- name: Sam Harwell
- name: Eric Vergnaud
- name: Peter Boyer
- name: Jim Idle
- name: Mike Lischke
- name: Tom Everett
repository-code: https://github.com/antlr/antlr4/tree/master/antlr4-runtime
- type: software
title: ANTLR 4 Tool
version: 4.7.2
abbreviation: org.antlr:antlr4
license: NOASSERTION
notes: More license information can be found in the THIRD-PARTY/ANTLR_4_Tool directory.
authors:
- name: Terence Parr
- name: Sam Harwell
- name: Eric Vergnaud
- name: Peter Boyer
- name: Jim Idle
- name: Mike Lischke
- name: Tom Everett
repository-code: https://github.com/antlr/antlr4/tree/master/antlr4
- type: software
title: ASM based accessors helper used by json-smart
version: 2.4.8
abbreviation: net.minidev:accessors-smart
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/ASM_based_accessors_helper_used_by_json_smart
directory.
authors:
- name: Uriel Chemouni
- name: ZhangJian He
repository-code: https://github.com/netplex/json-smart-v2
- type: software
title: AntLR Parser Generator
version: 2.7.7
abbreviation: antlr:antlr
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/AntLR_Parser_Generator
directory.
authors:
- name: The AntLR Parser Generator 2.7.7 Team
- type: software
title: Apache Commons Codec
version: '1.15'
abbreviation: commons-codec:commons-codec
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_Codec
directory.
authors:
- name: Henri Yandell
- name: Tim OBrien
- name: Scott Sanders
- name: Rodney Waldhoff
- name: Daniel Rall
- name: Jon S. Stevens
- name: Gary Gregory
- name: David Graham
- name: Julius Davies
- name: Thomas Neidhart
- name: Rob Tompkins
repository-code: https://github.com/apache/commons-codec
- type: software
title: Apache Commons Email
version: '1.5'
abbreviation: org.apache.commons:commons-email
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_Email
directory.
authors:
- name: dIon Gillard
- name: John McNally
- name: Quinton McCombs
- name: Eric Pugh
- name: Daniel Rall
- name: Jon Scott Stevens
- name: Jason van Zyl
- name: Joe Germuska
- name: Robert Burrell Donkin
- name: Henning P. Schmiedehausen
- name: Stephen Colebourne
- name: Ben Speakmon
- name: Siegfried Goeschl
- name: Thomas Neidhart
- name: Gary Gregory
repository-code: http://svn.apache.org/viewvc/commons/proper/email/tags/EMAIL_1_5
- type: software
title: Apache Commons IO
version: '2.7'
abbreviation: commons-io:commons-io
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_IO
directory.
authors:
- name: Scott Sanders
- name: dIon Gillard
- name: Nicola Ken Barozzi
- name: Henri Yandell
- name: Stephen Colebourne
- name: Jeremias Maerki
- name: Matthew Hawthorne
- name: Martin Cooper
- name: Rob Oxspring
- name: Jochen Wiedmann
- name: Niall Pemberton
- name: Jukka Zitting
- name: Gary Gregory
- name: Kristian Rosenvold
repository-code: https://gitbox.apache.org/repos/asf?p=commons-io.git
- type: software
title: Apache Commons Lang
version: 3.13.0
abbreviation: org.apache.commons:commons-lang3
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_Lang
directory.
authors:
- name: Daniel Rall
- name: Stephen Colebourne
- name: Henri Yandell
- name: Steven Caswell
- name: Robert Burrell Donkin
- name: Gary Gregory
- name: Fredrik Westermarck
- name: James Carman
- name: Niall Pemberton
- name: Matt Benson
- name: Joerg Schaible
- name: Oliver Heger
- name: Paul Benedict
- name: Benedikt Ritter
- name: Duncan Jones
- name: Loic Guibert
- name: Rob Tompkins
repository-code: https://gitbox.apache.org/repos/asf?p=commons-lang.git
- type: software
title: Apache Commons Text
version: 1.11.0
abbreviation: org.apache.commons:commons-text
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Commons_Text
directory.
authors:
- name: Bruno P. Kinoshita
- name: Benedikt Ritter
- name: Rob Tompkins
- name: Gary Gregory
- name: Duncan Jones
repository-code: https://gitbox.apache.org/repos/asf?p=commons-text.git
- type: software
title: Apache HttpClient
version: 4.5.13
abbreviation: org.apache.httpcomponents:httpclient
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_HttpClient
directory.
authors:
- name: Ortwin Glueck
- name: Oleg Kalnichevski
- name: Asankha C. Perera
- name: Sebastian Bazley
- name: Erik Abele
- name: Ant Elder
- name: Paul Fremantle
- name: Roland Weber
- name: Sam Berlin
- name: Sean C. Sullivan
- name: Jonathan Moore
- name: Gary Gregory
- name: William Speirs
- name: Karl Wright
- name: Francois-Xavier Bonnet
repository-code: https://github.com/apache/httpcomponents-client/tree/4.5.13/httpclient
- type: software
title: Apache HttpCore
version: 4.4.15
abbreviation: org.apache.httpcomponents:httpcore
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_HttpCore
directory.
authors:
- name: Ortwin Glueck
- name: Oleg Kalnichevski
- name: Asankha C. Perera
- name: Sebastian Bazley
- name: Erik Abele
- name: Ant Elder
- name: Paul Fremantle
- name: Roland Weber
- name: Sam Berlin
- name: Sean C. Sullivan
- name: Jonathan Moore
- name: Gary Gregory
- name: William Speirs
- name: Karl Wright
- name: Francois-Xavier Bonnet
repository-code: https://github.com/apache/httpcomponents-core/tree/4.4.15/httpcore
- type: software
title: Apache Log4j API
version: 2.17.2
abbreviation: org.apache.logging.log4j:log4j-api
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Log4j_API
directory.
authors:
- name: Ralph Goers
- name: Gary Gregory
- name: Scott Deboy
- name: Remko Popma
- name: Nick Williams
- name: Matt Sicker
- name: Bruce Brouwer
- name: Mikael Ståldal
- name: Carter Kozak
- name: Volkan Yazıcı
- name: Ron Grabowski
repository-code: https://gitbox.apache.org/repos/asf?p=logging-log4j2.git/log4j-api
- type: software
title: Apache Log4j to SLF4J Adapter
version: 2.17.2
abbreviation: org.apache.logging.log4j:log4j-to-slf4j
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Log4j_to_SLF4J_Adapter
directory.
authors:
- name: Ralph Goers
- name: Gary Gregory
- name: Scott Deboy
- name: Remko Popma
- name: Nick Williams
- name: Matt Sicker
- name: Bruce Brouwer
- name: Mikael Ståldal
- name: Carter Kozak
- name: Volkan Yazıcı
- name: Ron Grabowski
repository-code: https://gitbox.apache.org/repos/asf?p=logging-log4j2.git/log4j-to-slf4j
- type: software
title: Apache Tika core
version: 2.7.0
abbreviation: org.apache.tika:tika-core
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Apache_Tika_core
directory.
authors:
- name: Rida Benjelloun
- name: Mark Harwood
- name: Ken Krugler
- name: Chris A. Mattmann
- name: Michael McCandless
- name: Dave Meikle
- name: Sami Siren
- name: Nick Burch
- name: Maxim Valyanskiy
- name: Oleg Tikhonov
- name: Ray Gauss II
- name: Tyler Palsulich
- name: Tim Allison
- name: Konstantin Gribov
- name: Tilman Hausherr
- name: Jukka Zitting
- name: Julien Nioche
- name: Keith Bennett
- name: Niall Pemberton
repository-code: https://github.com/apache/tika/tika-core
- type: software
title: AspectJ Weaver
version: 1.9.7
abbreviation: org.aspectj:aspectjweaver
license: EPL-2.0
notes: More license information can be found in the THIRD-PARTY/AspectJ_Weaver directory.
authors:
- name: Andy Clement
- name: Alexander Kriegisch
repository-code: https://github.com/eclipse/org.aspectj
- type: software
title: Bean Validation API
version: 2.0.1.Final
abbreviation: javax.validation:validation-api
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Bean_Validation_API
directory.
authors:
- name: Emmanuel Bernard
- name: Hardy Ferentschik
- name: Gunnar Morling
- name: Guillaume Smet
repository-code: https://github.com/beanvalidation/beanvalidation-api
- type: software
title: Byte Buddy (without dependencies)
version: 1.10.22
abbreviation: net.bytebuddy:byte-buddy
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Byte_Buddy_without_dependencies_
directory.
authors:
- name: Rafael Winterhalter
- type: software
title: ClassMate
version: 1.5.1
abbreviation: com.fasterxml:classmate
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/ClassMate directory.
authors:
- name: Tatu Saloranta
- name: Brian Langel
repository-code: https://github.com/FasterXML/java-classmate
- type: software
title: Env Utils
version: '1.0'
abbreviation: com.github.jjYBdx4IL.utils:env-utils
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Env_Utils directory.
authors:
- name: The Env Utils 1.0 Team
repository-code: https://github.com/jjYBdx4IL/misc/env-utils
- type: software
title: FindBugs-jsr305
version: 3.0.2
abbreviation: com.google.code.findbugs:jsr305
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/FindBugs_jsr305
directory.
authors:
- name: The FindBugs-jsr305 3.0.2 Team
repository-code: https://code.google.com/p/jsr-305/
- type: software
title: Flute
version: 1.3.0.gg2
abbreviation: com.vaadin.external.flute:flute
license: NOASSERTION
notes: More license information can be found in the THIRD-PARTY/Flute directory.
authors:
- name: Flute Dev
repository-code: http://www.w3.org/
- type: software
title: GAGAWA
version: 1.0.1
abbreviation: com.hp.gagawa:gagawa
license: MIT
notes: More license information can be found in the THIRD-PARTY/GAGAWA directory.
authors:
- name: Mark S. Kolich
repository-code: http://gagawa.googlecode.com/svn/trunk/
- type: software
title: GenTyRef
version: 1.2.0.vaadin1
abbreviation: com.vaadin.external:gentyref
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/GenTyRef directory.
authors:
- name: Wouter Coekaerts
repository-code: https://github.com/vaadin/gentyref
- type: software
title: GridScrollExtension Add-on
version: 2.5.1
abbreviation: org.vaadin.extension:GridScrollExtension
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
notes: More license information can be found in the THIRD-PARTY/GridScrollExtension_Add_on
directory.
authors:
- name: The GridScrollExtension Add-on 2.5.1 Team
repository-code: git://github.com/tatulund/grid-scroll-extension.git
- type: software
title: Gson
version: 2.8.9
abbreviation: com.google.code.gson:gson
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Gson directory.
authors:
- name: The Gson 2.8.9 Team
repository-code: https://github.com/google/gson/gson/
- type: software
title: Gson on Fire!
version: 1.8.4
abbreviation: io.gsonfire:gson-fire
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Gson_on_Fire_ directory.
authors:
- name: Julio Viera
- type: software
title: Guava GWT compatible libs
version: '20.0'
abbreviation: com.google.guava:guava-gwt
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Guava_GWT_compatible_libs
directory.
authors:
- name: Kevin Bourrillion
repository-code: https://github.com/google/guava/guava-gwt
- type: software
title: 'Guava: Google Core Libraries for Java'
version: '20.0'
abbreviation: com.google.guava:guava
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Guava_Google_Core_Libraries_for_Java
directory.
authors:
- name: Kevin Bourrillion
repository-code: https://github.com/google/guava/guava
- type: software
title: H2 Database Engine
version: 1.4.200
abbreviation: com.h2database:h2
license: MPL-2.0 OR EPL-1.0
notes: More license information can be found in the THIRD-PARTY/H2_Database_Engine
directory.
authors:
- name: Thomas Mueller
repository-code: https://github.com/h2database/h2database
- type: software
title: Hibernate Commons Annotations
version: 5.1.2.Final
abbreviation: org.hibernate.common:hibernate-commons-annotations
license: LGPL-2.1
notes: More license information can be found in the THIRD-PARTY/Hibernate_Commons_Annotations
directory.
authors:
- name: The Hibernate Development Team
repository-code: http://github.com/hibernate/hibernate-commons-annotations
- type: software
title: Hibernate ORM - hibernate-core
version: 5.4.33
abbreviation: org.hibernate:hibernate-core
license: LGPL-2.1
notes: More license information can be found in the THIRD-PARTY/Hibernate_ORM_hibernate_core
directory.
authors:
- name: The Hibernate Development Team
repository-code: http://github.com/hibernate/hibernate-orm
- type: software
title: HikariCP
version: 4.0.3
abbreviation: com.zaxxer:HikariCP
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/HikariCP directory.
authors:
- name: Brett Wooldridge
- type: software
title: ICU4J
version: '61.1'
abbreviation: com.ibm.icu:icu4j
license: OTHER
notes: More license information can be found in the THIRD-PARTY/ICU4J directory.
authors:
- name: Mark Davis
- name: John Emmons
- name: Doug Felt
- name: Deborah Goldsmith
- name: Steven Loomis
- name: Markus Scherer
- name: Peter Edberg
- name: Yoshito Umaoka
repository-code: http://source.icu-project.org/repos/icu/trunk/icu4j
- type: software
title: J2ObjC Annotations
version: '1.1'
abbreviation: com.google.j2objc:j2objc-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/J2ObjC_Annotations
directory.
authors:
- name: The J2ObjC Annotations 1.1 Team
repository-code: http://svn.sonatype.org/spice/tags/oss-parent-7/j2objc-annotations
- type: software
title: JAXB Runtime
version: 2.3.6
abbreviation: org.glassfish.jaxb:jaxb-runtime
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/JAXB_Runtime directory.
authors:
- name: Roman Grigoriadi
repository-code: https://github.com/eclipse-ee4j/jaxb-ri.git/jaxb-runtime-parent/jaxb-runtime
- type: software
title: JBoss Logging 3
version: 3.4.3.Final
abbreviation: org.jboss.logging:jboss-logging
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/JBoss_Logging_3
directory.
authors:
- name: JBoss.org Community
repository-code: https://github.com/jboss-logging/jboss-logging
- type: software
title: JCIP Annotations under Apache License
version: 1.0-1
abbreviation: com.github.stephenc.jcip:jcip-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/JCIP_Annotations_under_Apache_License
directory.
authors:
- name: Stephen Connolly
repository-code: http://github.com/stephenc/jcip-annotations/tree/master/
- type: software
title: JSClipboard Add-on
version: 1.0.12
abbreviation: com.github.vaadin4qbanos:jsclipboard
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/JSClipboard_Add_on
directory.
authors:
- name: Rubén Bresler
- name: Geanny Hernández
repository-code: https://github.com/vaadin4qbanos/vaadin-jsclipboard-addon.git/jsclipboard
- type: software
title: JSON Small and Fast Parser
version: 2.4.8
abbreviation: net.minidev:json-smart
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/JSON_Small_and_Fast_Parser
directory.
authors:
- name: Uriel Chemouni
- name: Eitan Raviv
- name: ZhangJian He
repository-code: https://github.com/netplex/json-smart-v2
- type: software
title: JSON in Java
version: '20160810'
abbreviation: org.json:json
license: JSON
notes: More license information can be found in the THIRD-PARTY/JSON_in_Java directory.
authors:
- name: Douglas Crockford
repository-code: https://github.com/douglascrockford/JSON-java.git
- type: software
title: JSR 353 (JSON Processing) Default Provider
version: 1.0.4
abbreviation: org.glassfish:javax.json
license: CDDL-1.1 OR GPL-2.0-only WITH Classpath-exception-2.0
notes: More license information can be found in the THIRD-PARTY/JSR_353_JSON_Processing_Default_Provider
directory.
authors:
- name: Jitendra Kotamraju
repository-code: http://java.net/projects/jsonp/sources/git/show/javax.json
- type: software
title: JUL to SLF4J bridge
version: 1.7.36
abbreviation: org.slf4j:jul-to-slf4j
license: MIT
notes: More license information can be found in the THIRD-PARTY/JUL_to_SLF4J_bridge
directory.
authors:
- name: Ceki Gulcu
repository-code: https://github.com/qos-ch/slf4j/jul-to-slf4j
- type: software
title: 'Jackson datatype: JSR310'
version: 2.12.6
abbreviation: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_datatype_JSR310
directory.
authors:
- name: Nick Williams
repository-code: http://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310
- type: software
title: 'Jackson datatype: jdk8'
version: 2.12.6
abbreviation: com.fasterxml.jackson.datatype:jackson-datatype-jdk8
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_datatype_jdk8
directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8
- type: software
title: 'Jackson module: JAXB Annotations'
version: 2.12.6
abbreviation: com.fasterxml.jackson.module:jackson-module-jaxb-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_module_JAXB_Annotations
directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-modules-base/jackson-module-jaxb-annotations
- type: software
title: Jackson-annotations
version: 2.12.6
abbreviation: com.fasterxml.jackson.core:jackson-annotations
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_annotations
directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-annotations
- type: software
title: Jackson-core
version: 2.12.6
abbreviation: com.fasterxml.jackson.core:jackson-core
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_core directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-core
- type: software
title: Jackson-dataformat-TOML
version: 2.12.6
abbreviation: com.fasterxml.jackson.dataformat:jackson-dataformat-toml
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_dataformat_TOML
directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-dataformats-text/jackson-dataformat-toml
- type: software
title: Jackson-dataformat-XML
version: 2.12.6
abbreviation: com.fasterxml.jackson.dataformat:jackson-dataformat-xml
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_dataformat_XML
directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-dataformat-xml
- type: software
title: Jackson-module-parameter-names
version: 2.12.6
abbreviation: com.fasterxml.jackson.module:jackson-module-parameter-names
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Jackson_module_parameter_names
directory.
authors:
- name: Tatu Saloranta
repository-code: http://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names
- type: software
title: Jakarta Activation
version: 1.2.2
abbreviation: com.sun.activation:jakarta.activation
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/Jakarta_Activation
directory.
authors:
- name: Bill Shannon
repository-code: https://github.com/eclipse-ee4j/jaf/jakarta.activation
- type: software
title: Jakarta Activation API jar
version: 1.2.2
abbreviation: jakarta.activation:jakarta.activation-api
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/Jakarta_Activation_API_jar
directory.
authors:
- name: Bill Shannon
repository-code: https://github.com/eclipse-ee4j/jaf/jakarta.activation-api
- type: software
title: Jakarta Annotations API
version: 1.3.5
abbreviation: jakarta.annotation:jakarta.annotation-api
license: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
notes: More license information can be found in the THIRD-PARTY/Jakarta_Annotations_API
directory.
authors:
- name: Linda De Michiel
repository-code: https://github.com/eclipse-ee4j/common-annotations-api
- type: software
title: Jakarta Persistence API
version: 2.2.3
abbreviation: jakarta.persistence:jakarta.persistence-api
license: EPL-2.0 OR BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/Jakarta_Persistence_API
directory.
authors:
- name: Lukas Jungmann
repository-code: https://github.com/eclipse-ee4j/jpa-api.git
- type: software
title: Jakarta XML Binding API
version: 2.3.3
abbreviation: jakarta.xml.bind:jakarta.xml.bind-api
license: BSD-3-Clause
notes: More license information can be found in the THIRD-PARTY/Jakarta_XML_Binding_API
directory.
authors:
- name: Roman Grigoriadi
repository-code: https://github.com/eclipse-ee4j/jaxb-api.git/jakarta.xml.bind-api
- type: software
title: Java Annotation Indexer
version: 2.2.3.Final
abbreviation: org.jboss:jandex
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Java_Annotation_Indexer
directory.
authors:
- name: JBoss.org Community
repository-code: http://github.com/jboss/jboss-parent-pom/jandex
- type: software
title: Java Servlet API
version: 4.0.1
abbreviation: javax.servlet:javax.servlet-api
license: CDDL-1.1 OR GPL-2.0-only WITH Classpath-exception-2.0
notes: More license information can be found in the THIRD-PARTY/Java_Servlet_API
directory.
authors:
- name: Ed Burns
- name: Shing Wai Chan
repository-code: https://github.com/javaee/servlet-spec
- type: software
title: Java Text Categorizing Library
version: 1.0.1
abbreviation: org.knallgrau.utils:textcat
license: LGPL-3.0
notes: More license information can be found in the THIRD-PARTY/Java_Text_Categorizing_Library
directory.
authors:
- name: Thomas Hammerl
repository-code: http://textcat.cvs.sourceforge.net/textcat/
- type: software
title: JavaBeans Activation Framework (JAF)
version: '1.1'
abbreviation: javax.activation:activation
license: CDDL-1.0
notes: More license information can be found in the THIRD-PARTY/JavaBeans_Activation_Framework_JAF_
directory.
authors:
- name: The JavaBeans Activation Framework (JAF) 1.1 Team
- type: software
title: JavaMail API
version: 1.5.6
abbreviation: com.sun.mail:javax.mail
license: CDDL-1.1 OR GPL-2.0-only WITH Classpath-exception-2.0
notes: More license information can be found in the THIRD-PARTY/JavaMail_API directory.
authors:
- name: Bill Shannon
repository-code: http://java.net/hg/javamail~mercurial/javax.mail
- type: software
title: Javassist
version: 3.27.0-GA
abbreviation: org.javassist:javassist
license: MPL-1.1 OR LGPL-2.1-or-later OR Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Javassist directory.
authors:
- name: Shigeru Chiba
- name: Andrew Dinn
- name: Kabir Khan
- name: Scott Marlow
- type: software
title: Joda-Time
version: 2.10.6
abbreviation: joda-time:joda-time
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Joda_Time directory.
authors:
- name: Stephen Colebourne
- name: Brian S O'Neill
repository-code: https://github.com/JodaOrg/joda-time
- type: software
title: Logback Classic Module
version: 1.2.11
abbreviation: ch.qos.logback:logback-classic
license: EPL-1.0 OR LGPL-2.1-only
notes: More license information can be found in the THIRD-PARTY/Logback_Classic_Module
directory.
authors:
- name: Ceki Gulcu
- name: Joern Huxhorn
repository-code: https://github.com/ceki/logback/logback-classic
- type: software
title: Logback Core Module
version: 1.2.11
abbreviation: ch.qos.logback:logback-core
license: EPL-1.0 OR LGPL-2.1-only
notes: More license information can be found in the THIRD-PARTY/Logback_Core_Module
directory.
authors:
- name: Ceki Gulcu
- name: Joern Huxhorn
repository-code: https://github.com/ceki/logback/logback-core
- type: software
title: Neo Visionaries Internationalization Package
version: '1.1'
abbreviation: com.neovisionaries:nv-i18n
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Neo_Visionaries_Internationalization_Package
directory.
authors:
- name: Takahiko Kawasaki
- type: software
title: Nimbus Content Type
version: '2.1'
abbreviation: com.nimbusds:content-type
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Nimbus_Content_Type
directory.
authors:
- name: Vladimir Dzhuvinov
repository-code: https://bitbucket.org/connect2id/nimbus-content-type
- type: software
title: Nimbus JOSE+JWT
version: 9.10.1
abbreviation: com.nimbusds:nimbus-jose-jwt
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Nimbus_JOSE_JWT
directory.
authors:
- name: Vladimir Dzhuvinov
repository-code: https://bitbucket.org/connect2id/nimbus-jose-jwt
- type: software
title: Nimbus LangTag
version: '1.5'
abbreviation: com.nimbusds:lang-tag
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Nimbus_LangTag directory.
authors:
- name: Vladimir Dzhuvinov
repository-code: https://bitbucket.org/connect2id/nimbus-language-tags.git
- type: software
title: OAuth 2.0 SDK with OpenID Connect extensions
version: 9.9.1
abbreviation: com.nimbusds:oauth2-oidc-sdk
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/OAuth_2.0_SDK_with_OpenID_Connect_extensions
directory.
authors:
- name: Vladimir Dzhuvinov
repository-code: https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions
- type: software
title: 'OWNER :: Core'
version: 1.0.10
abbreviation: org.aeonbits.owner:owner
license: NOASSERTION
notes: More license information can be found in the THIRD-PARTY/OWNER_Core directory.
authors:
- name: Luigi R. Viggiano
repository-code: https://github.com/lviggiano/owner/tree/master/owner
- type: software
title: OkHttp
version: 3.14.9
abbreviation: com.squareup.okhttp3:okhttp
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/OkHttp directory.
authors:
- name: The OkHttp 3.14.9 Team
repository-code: https://github.com/square/okhttp/okhttp/
- type: software
title: OkHttp Logging Interceptor
version: 3.14.9
abbreviation: com.squareup.okhttp3:logging-interceptor
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/OkHttp_Logging_Interceptor
directory.
authors:
- name: The OkHttp Logging Interceptor 3.14.9 Team
repository-code: https://github.com/square/okhttp/logging-interceptor/
- type: software
title: Okio
version: 1.17.2
abbreviation: com.squareup.okio:okio
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Okio directory.
authors:
- name: The Okio 1.17.2 Team
repository-code: https://github.com/square/okio/okio/
- type: software
title: Process Utils
version: '1.0'
abbreviation: com.github.jjYBdx4IL.utils:proc-utils
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Process_Utils directory.
authors:
- name: The Process Utils 1.0 Team
repository-code: https://github.com/jjYBdx4IL/misc/proc-utils
- type: software
title: SLF4J API Module
version: 1.7.36
abbreviation: org.slf4j:slf4j-api
license: MIT
notes: More license information can be found in the THIRD-PARTY/SLF4J_API_Module
directory.
authors:
- name: Ceki Gulcu
repository-code: https://github.com/qos-ch/slf4j/slf4j-api
- type: software
title: Simple API for CSS
version: '1.3'
abbreviation: org.w3c.css:sac
license: W3C
notes: More license information can be found in the THIRD-PARTY/Simple_API_for_CSS
directory.
authors:
- name: The Simple API for CSS 1.3 Team
- type: software
title: SnakeYAML
version: '1.28'
abbreviation: org.yaml:snakeyaml
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/SnakeYAML directory.
authors:
- name: Andrey Somov
- name: Alexander Maslov
- name: Jordan Angold
repository-code: https://bitbucket.org/asomov/snakeyaml/src
- type: software
title: Spring AOP
version: 5.3.18
abbreviation: org.springframework:spring-aop
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Spring_AOP directory.
authors:
- name: Juergen Hoeller
repository-code: https://github.com/spring-projects/spring-framework
- type: software
title: Spring Aspects
version: 5.3.18
abbreviation: org.springframework:spring-aspects
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Spring_Aspects directory.
authors:
- name: Juergen Hoeller
repository-code: https://github.com/spring-projects/spring-framework
- type: software
title: Spring Beans
version: 5.3.18
abbreviation: org.springframework:spring-beans
license: Apache-2.0
notes: More license information can be found in the THIRD-PARTY/Spring_Beans directory.
authors:
- name: Juergen Hoeller
repository-code: https://github.com/spring-projects/spring-framework
- type: software
title: Spring Commons Logging Bridge
version: 5.3.18
abbreviation: org.springframework:spring-jcl