-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathLICENSE.spdx.json
5232 lines (5232 loc) · 300 KB
/
LICENSE.spdx.json
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
{
"SPDXID" : "SPDXRef-DOCUMENT",
"spdxVersion" : "SPDX-2.3",
"creationInfo" : {
"created" : "2024-12-17T11:22:23Z",
"creators" : [ "Person: Gary O'Neall", "Tool: spdx-maven-plugin" ],
"licenseListVersion" : "3.25.0"
},
"name" : "License List Publisher",
"dataLicense" : "CC0-1.0",
"documentNamespace" : "http://spdx.org/documents/LicenseListPublisher-3.0.0",
"packages" : [ {
"SPDXID" : "SPDXRef-gnrtd0",
"copyrightText" : "NOASSERTION",
"description" : "Tool that generates license data found in the license-list-data repository from the license-list-XML source",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/licenseListPublisher@3.0.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : true,
"homepage" : "http://spdx.org/licenseListPublisher",
"licenseConcluded" : "(LGPL-2.1 AND BSD-3-Clause AND Apache-2.0 AND MPL-1.0 AND MIT AND LicenseRef-CyberNeko AND X11)",
"licenseDeclared" : "Apache-2.0",
"licenseInfoFromFiles" : [ "Apache-2.0", "CC0-1.0" ],
"name" : "License List Publisher",
"originator" : "Organization: Linux Foundation",
"packageFileName" : "NOASSERTION",
"packageVerificationCode" : {
"packageVerificationCodeValue" : "bc10ea007e0c7791b3047ec5c7ed29abd86b293a"
},
"primaryPackagePurpose" : "LIBRARY",
"summary" : "Tool that generates license data found in the license-list-data repository from the license-list-XML source",
"supplier" : "Organization: Linux Foundation",
"versionInfo" : "3.0.0"
}, {
"SPDXID" : "SPDXRef-gnrtd180",
"copyrightText" : "UNSPECIFIED",
"description" : "JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/junit/junit@4.13.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://junit.org",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "EPL-1.0",
"name" : "JUnit",
"originator" : "Organization:JUnit",
"summary" : "JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.",
"versionInfo" : "4.13.1"
}, {
"SPDXID" : "SPDXRef-gnrtd181",
"copyrightText" : "UNSPECIFIED",
"description" : "This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.hamcrest/hamcrest-core@1.3",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/hamcrest/JavaHamcrest/hamcrest-core",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "Hamcrest Core",
"summary" : "This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.",
"versionInfo" : "1.3"
}, {
"SPDXID" : "SPDXRef-gnrtd182",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache HttpComponents Client",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://hc.apache.org/httpcomponents-client-ga",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache HttpClient",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache HttpComponents Client",
"versionInfo" : "4.5.14"
}, {
"SPDXID" : "SPDXRef-gnrtd183",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache HttpComponents Core (blocking I/O)",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://hc.apache.org/httpcomponents-core-ga",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache HttpCore",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache HttpComponents Core (blocking I/O)",
"versionInfo" : "4.4.16"
}, {
"SPDXID" : "SPDXRef-gnrtd184",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache Commons Logging is a thin adapter allowing configurable bridging to other,\n well known logging systems.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-logging/commons-logging@1.2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://commons.apache.org/proper/commons-logging/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Logging",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache Commons Logging is a thin adapter allowing configurable bridging to other,\n well known logging systems.",
"versionInfo" : "1.2"
}, {
"SPDXID" : "SPDXRef-gnrtd185",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache Commons Validator provides the building blocks for both client side validation and server side data validation.\n It may be used standalone or with a framework like Struts.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-validator/commons-validator@1.7",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://commons.apache.org/proper/commons-validator/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Validator",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache Commons Validator provides the building blocks for both client side validation and server side data validation.\n It may be used standalone or with a framework like Struts.",
"versionInfo" : "1.7"
}, {
"SPDXID" : "SPDXRef-gnrtd186",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-beanutils/commons-beanutils@1.9.4",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-beanutils/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons BeanUtils",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.",
"versionInfo" : "1.9.4"
}, {
"SPDXID" : "SPDXRef-gnrtd187",
"copyrightText" : "UNSPECIFIED",
"description" : "The Digester package lets you configure an XML to Java object mapping module\n which triggers certain actions called rules whenever a particular \n pattern of nested XML elements is recognized.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-digester/commons-digester@2.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://commons.apache.org/digester/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Commons Digester",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "The Digester package lets you configure an XML to Java object mapping module\n which triggers certain actions called rules whenever a particular \n pattern of nested XML elements is recognized.",
"versionInfo" : "2.1"
}, {
"SPDXID" : "SPDXRef-gnrtd188",
"copyrightText" : "UNSPECIFIED",
"description" : "Types that extend and augment the Java Collections Framework.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-collections/commons-collections@3.2.2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://commons.apache.org/collections/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Collections",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Types that extend and augment the Java Collections Framework.",
"versionInfo" : "3.2.2"
}, {
"SPDXID" : "SPDXRef-gnrtd189",
"copyrightText" : "UNSPECIFIED",
"description" : "Java library which implements the Java object model for SPDX and provides useful helper functions.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/java-spdx-library@2.0.0-RC1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/spdx/Spdx-Java-Library",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "java-spdx-library",
"originator" : "Organization:SPDX",
"summary" : "Java library which implements the Java object model for SPDX and provides useful helper functions.",
"versionInfo" : "2.0.0-RC1"
}, {
"SPDXID" : "SPDXRef-gnrtd190",
"copyrightText" : "UNSPECIFIED",
"description" : "The slf4j API",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.slf4j/slf4j-api@2.0.7",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://www.slf4j.org",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "MIT",
"name" : "SLF4J API Module",
"originator" : "Organization:QOS.ch",
"summary" : "The slf4j API",
"versionInfo" : "2.0.7"
}, {
"SPDXID" : "SPDXRef-gnrtd191",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache Commons Lang, a package of Java utility classes for the\n classes that are in java.lang's hierarchy, or are considered to be so\n standard as to justify existence in java.lang.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.commons/commons-lang3@3.5",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://commons.apache.org/proper/commons-lang/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Lang",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache Commons Lang, a package of Java utility classes for the\n classes that are in java.lang's hierarchy, or are considered to be so\n standard as to justify existence in java.lang.",
"versionInfo" : "3.5"
}, {
"SPDXID" : "SPDXRef-gnrtd192",
"copyrightText" : "UNSPECIFIED",
"description" : "jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.jsoup/jsoup@1.15.3",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://jsoup.org/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "jsoup Java HTML Parser",
"originator" : "Organization:Jonathan Hedley",
"summary" : "jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.",
"versionInfo" : "1.15.3"
}, {
"SPDXID" : "SPDXRef-gnrtd193",
"copyrightText" : "UNSPECIFIED",
"description" : "Gson JSON library",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.google.code.gson/gson@2.8.9",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/google/gson/gson",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Gson",
"summary" : "Gson JSON library",
"versionInfo" : "2.8.9"
}, {
"SPDXID" : "SPDXRef-gnrtd194",
"copyrightText" : "UNSPECIFIED",
"description" : "JSR305 Annotations for Findbugs",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.google.code.findbugs/jsr305@3.0.2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://findbugs.sourceforge.net/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "FindBugs-jsr305",
"summary" : "JSR305 Annotations for Findbugs",
"versionInfo" : "3.0.2"
}, {
"SPDXID" : "SPDXRef-gnrtd195",
"copyrightText" : "UNSPECIFIED",
"description" : "SPDX model versions 2.0, 2.1, and 2.3",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/spdx-java-model-2_X@1.0.0-RC1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/spdx/spdx-java-model-2_X",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "spdx-java-model-2_X",
"originator" : "Organization:SPDX",
"summary" : "SPDX model versions 2.0, 2.1, and 2.3",
"versionInfo" : "1.0.0-RC1"
}, {
"SPDXID" : "SPDXRef-gnrtd196",
"copyrightText" : "UNSPECIFIED",
"description" : "Core libraries for SPDX",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/spdx-java-core@1.0.0-RC1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/spdx/spdx-java-core",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "spdx-java-core",
"originator" : "Organization:SPDX",
"summary" : "Core libraries for SPDX",
"versionInfo" : "1.0.0-RC1"
}, {
"SPDXID" : "SPDXRef-gnrtd197",
"copyrightText" : "UNSPECIFIED",
"description" : "Generated java model source code",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/spdx-java-model-3_0@1.0.0-RC1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/spdx/spdx-java-model-3_0",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "spdx-java-model-3",
"originator" : "Organization:SPDX",
"summary" : "Generated java model source code",
"versionInfo" : "1.0.0-RC1"
}, {
"SPDXID" : "SPDXRef-gnrtd198",
"copyrightText" : "UNSPECIFIED",
"description" : "Implementation of mustache.js for Java",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.github.spullara.mustache.java/compiler@0.9.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://github.com/spullara/mustache.java",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "compiler",
"summary" : "Implementation of mustache.js for Java",
"versionInfo" : "0.9.1"
}, {
"SPDXID" : "SPDXRef-gnrtd199",
"copyrightText" : "UNSPECIFIED",
"description" : "A simple library for reading and writing CSV in Java",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/net.sf.opencsv/opencsv@2.3",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://opencsv.sf.net",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "opencsv",
"summary" : "A simple library for reading and writing CSV in Java",
"versionInfo" : "2.3"
}, {
"SPDXID" : "SPDXRef-gnrtd200",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache Commons CLI provides a simple API for presenting, processing and validating a Command Line Interface.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-cli/commons-cli@1.5.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-cli/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons CLI",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache Commons CLI provides a simple API for presenting, processing and validating a Command Line Interface.",
"versionInfo" : "1.5.0"
}, {
"SPDXID" : "SPDXRef-gnrtd201",
"copyrightText" : "UNSPECIFIED",
"description" : "This Java library implements an RDF store implementing the SPDX Java Library Storage Interface using an underlying RDF store.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/spdx-rdf-store@2.0.0-RC1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/spdx/spdx-java-rdf-store",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "spdx-rdf-store",
"originator" : "Organization:SPDX",
"summary" : "This Java library implements an RDF store implementing the SPDX Java Library Storage Interface using an underlying RDF store.",
"versionInfo" : "2.0.0-RC1"
}, {
"SPDXID" : "SPDXRef-gnrtd202",
"copyrightText" : "UNSPECIFIED",
"description" : "Jena is a Java framework for building Semantic Web applications. It provides a programmatic environment for RDF, RDFS and OWL, SPARQL and includes a rule-based inference engine.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.jena/jena-core@5.2.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://jena.apache.org/jena-core/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Jena - Core",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Jena is a Java framework for building Semantic Web applications. It provides a programmatic environment for RDF, RDFS and OWL, SPARQL and includes a rule-based inference engine.",
"versionInfo" : "5.2.0"
}, {
"SPDXID" : "SPDXRef-gnrtd203",
"copyrightText" : "UNSPECIFIED",
"description" : "The IRI module provides an implementation of the IRI and URI specifications (RFC 3987 and 3986) which are used across Jena in order to comply with relevant W3C specifications for RDF and SPARQL which require conformance to these specifications.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.jena/jena-iri@5.2.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://jena.apache.org/jena-iri/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Jena - IRI",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "The IRI module provides an implementation of the IRI and URI specifications (RFC 3987 and 3986) which are used across Jena in order to comply with relevant W3C specifications for RDF and SPARQL which require conformance to these specifications.",
"versionInfo" : "5.2.0"
}, {
"SPDXID" : "SPDXRef-gnrtd204",
"copyrightText" : "UNSPECIFIED",
"description" : "Roaring bitmaps are compressed bitmaps (also called bitsets) which tend to outperform conventional compressed bitmaps such as WAH or Concise.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.roaringbitmap/RoaringBitmap@1.3.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/RoaringBitmap/RoaringBitmap",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "org.roaringbitmap:RoaringBitmap",
"summary" : "Roaring bitmaps are compressed bitmaps (also called bitsets) which tend to outperform conventional compressed bitmaps such as WAH or Concise.",
"versionInfo" : "1.3.0"
}, {
"SPDXID" : "SPDXRef-gnrtd205",
"copyrightText" : "UNSPECIFIED",
"description" : "SPARQL 1.1 query engine and RDF parsers for Apache Jena",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.jena/jena-arq@5.2.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://jena.apache.org/jena-arq/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Jena - ARQ",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "SPARQL 1.1 query engine and RDF parsers for Apache Jena",
"versionInfo" : "5.2.0"
}, {
"SPDXID" : "SPDXRef-gnrtd206",
"copyrightText" : "UNSPECIFIED",
"description" : "JCL 1.2 implemented over SLF4J",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.slf4j/jcl-over-slf4j@2.0.16",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://www.slf4j.org",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "JCL 1.2 implemented over SLF4J",
"originator" : "Organization:QOS.ch",
"summary" : "JCL 1.2 implemented over SLF4J",
"versionInfo" : "2.0.16"
}, {
"SPDXID" : "SPDXRef-gnrtd207",
"copyrightText" : "UNSPECIFIED",
"description" : "A JSON-LD 1.1 Processor & API",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.apicatalog/titanium-json-ld@1.4.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/filip26/titanium-json-ld",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "Titanium JSON-LD 1.1 (JRE11)",
"summary" : "A JSON-LD 1.1 Processor & API",
"versionInfo" : "1.4.1"
}, {
"SPDXID" : "SPDXRef-gnrtd208",
"copyrightText" : "UNSPECIFIED",
"description" : "Default provider for Jakarta JSON Processing",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.glassfish/jakarta.json@2.0.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/eclipse-ee4j/jsonp",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "JSON-P Default Provider",
"originator" : "Organization:Eclipse Foundation",
"summary" : "Default provider for Jakarta JSON Processing",
"versionInfo" : "2.0.1"
}, {
"SPDXID" : "SPDXRef-gnrtd209",
"copyrightText" : "UNSPECIFIED",
"description" : "Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an\n efficient yet extensible format.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.google.protobuf/protobuf-java@4.28.2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://developers.google.com/protocol-buffers/protobuf-java/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "BSD-3-Clause",
"name" : "Protocol Buffers [Core]",
"summary" : "Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an\n efficient yet extensible format.",
"versionInfo" : "4.28.2"
}, {
"SPDXID" : "SPDXRef-gnrtd210",
"copyrightText" : "UNSPECIFIED",
"description" : "Thrift is a software framework for scalable cross-language services development.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.thrift/libthrift@0.21.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://thrift.apache.org",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Thrift",
"summary" : "Thrift is a software framework for scalable cross-language services development.",
"versionInfo" : "0.21.0"
}, {
"SPDXID" : "SPDXRef-gnrtd211",
"copyrightText" : "UNSPECIFIED",
"description" : "This module contains non-RDF library code and the common system runtime.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.jena/jena-base@5.2.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://jena.apache.org/jena-base/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Jena - Base",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "This module contains non-RDF library code and the common system runtime.",
"versionInfo" : "5.2.0"
}, {
"SPDXID" : "SPDXRef-gnrtd212",
"copyrightText" : "UNSPECIFIED",
"description" : "The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.commons/commons-csv@1.12.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-csv/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons CSV",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.",
"versionInfo" : "1.12.0"
}, {
"SPDXID" : "SPDXRef-gnrtd213",
"copyrightText" : "UNSPECIFIED",
"description" : "Apache Commons Compress defines an API for working with\ncompression and archive formats. These include bzip2, gzip, pack200,\nLZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4,\nBrotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.commons/commons-compress@1.27.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-compress/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Compress",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "Apache Commons Compress defines an API for working with\ncompression and archive formats. These include bzip2, gzip, pack200,\nLZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4,\nBrotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.",
"versionInfo" : "1.27.1"
}, {
"SPDXID" : "SPDXRef-gnrtd214",
"copyrightText" : "UNSPECIFIED",
"description" : "The Apache Commons Collections package contains types that extend and augment the Java Collections Framework.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.apache.commons/commons-collections4@4.4",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-collections/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Collections",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "The Apache Commons Collections package contains types that extend and augment the Java Collections Framework.",
"versionInfo" : "4.4"
}, {
"SPDXID" : "SPDXRef-gnrtd215",
"copyrightText" : "UNSPECIFIED",
"description" : "A high performance caching library",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.github.ben-manes.caffeine/caffeine@3.1.8",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/ben-manes/caffeine",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Caffeine cache",
"summary" : "A high performance caching library",
"versionInfo" : "3.1.8"
}, {
"SPDXID" : "SPDXRef-gnrtd216",
"copyrightText" : "UNSPECIFIED",
"description" : "Persistent (immutable) collection library",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.github.andrewoma.dexx/collection@0.7",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/andrewoma/dexx",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "MIT",
"name" : "dexx",
"summary" : "Persistent (immutable) collection library",
"versionInfo" : "0.7"
}, {
"SPDXID" : "SPDXRef-gnrtd217",
"copyrightText" : "UNSPECIFIED",
"description" : "The Apache Commons Codec package contains simple encoder and decoders for\n various formats such as Base64 and Hexadecimal. In addition to these\n widely used encoders and decoders, the codec package also maintains a\n collection of phonetic encoding utilities.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-codec/commons-codec@1.15",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-codec/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons Codec",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "The Apache Commons Codec package contains simple encoder and decoders for\n various formats such as Base64 and Hexadecimal. In addition to these\n widely used encoders and decoders, the codec package also maintains a\n collection of phonetic encoding utilities.",
"versionInfo" : "1.15"
}, {
"SPDXID" : "SPDXRef-gnrtd218",
"copyrightText" : "UNSPECIFIED",
"description" : "The Apache Commons IO library contains utility classes, stream implementations, file filters,\nfile comparators, endian transformation classes, and much more.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/commons-io/commons-io@2.14.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://commons.apache.org/proper/commons-io/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Apache Commons IO",
"originator" : "Organization:The Apache Software Foundation",
"summary" : "The Apache Commons IO library contains utility classes, stream implementations, file filters,\nfile comparators, endian transformation classes, and much more.",
"versionInfo" : "2.14.0"
}, {
"SPDXID" : "SPDXRef-gnrtd219",
"copyrightText" : "UNSPECIFIED",
"description" : "Store for SPDX spec version 3 supporting the JSON-LD serialization format.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/spdx-v3jsonld-store@1.0.0-RC2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://spdx.org",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "spdx-v3jsonld-store",
"originator" : "Organization:SPDX",
"summary" : "Store for SPDX spec version 3 supporting the JSON-LD serialization format.",
"versionInfo" : "1.0.0-RC2"
}, {
"SPDXID" : "SPDXRef-gnrtd220",
"comment" : "This package was created for a Maven dependency. No SPDX or license information could be found in the Maven POM file.",
"copyrightText" : "NOASSERTION",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.spdx/licenseListPublisher@3.0.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "core",
"versionInfo" : "0.12.4"
}, {
"SPDXID" : "SPDXRef-gnrtd221",
"copyrightText" : "UNSPECIFIED",
"description" : "Handy URI Templates is a RFC6570 compliant URI template processor. The library allows clients to\n utilize templatized URIs and inject replacement variables to expand the template into a URI. The library sports\n a fluent API, ability to plugin custom object renderers, and supports all levels of URI templates.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.damnhandy/handy-uri-templates@2.1.8",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/damnhandy/Handy-URI-Templates",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Handy URI Templates",
"originator" : "Organization:Ryan J. McDonough",
"summary" : "Handy URI Templates is a RFC6570 compliant URI template processor. The library allows clients to\n utilize templatized URIs and inject replacement variables to expand the template into a URI. The library sports\n a fluent API, ability to plugin custom object renderers, and supports all levels of URI templates.",
"versionInfo" : "2.1.8"
}, {
"SPDXID" : "SPDXRef-gnrtd222",
"copyrightText" : "UNSPECIFIED",
"description" : "Date and time library to replace JDK date handling",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/joda-time/joda-time@2.10.2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://www.joda.org/joda-time/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Joda-Time",
"originator" : "Organization:Joda.org",
"summary" : "Date and time library to replace JDK date handling",
"versionInfo" : "2.10.2"
}, {
"SPDXID" : "SPDXRef-gnrtd223",
"copyrightText" : "UNSPECIFIED",
"description" : "International Components for Unicode for Java (ICU4J) is a mature, widely used Java library\n providing Unicode and Globalization support",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.ibm.icu/icu4j@74.2",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://icu.unicode.org/main/icu4j/",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "icu4j",
"originator" : "Organization:Unicode, Inc.",
"summary" : "International Components for Unicode for Java (ICU4J) is a mature, widely used Java library\n providing Unicode and Globalization support",
"versionInfo" : "74.2"
}, {
"SPDXID" : "SPDXRef-gnrtd224",
"copyrightText" : "UNSPECIFIED",
"description" : "Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma\n that uses byte arrays directly instead of java Strings and chars",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.jruby.joni/joni@2.2.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://nexus.sonatype.org/oss-repository-hosting.html/joni",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "MIT",
"name" : "Joni",
"summary" : "Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma\n that uses byte arrays directly instead of java Strings and chars",
"versionInfo" : "2.2.1"
}, {
"SPDXID" : "SPDXRef-gnrtd225",
"copyrightText" : "UNSPECIFIED",
"description" : "Byte based encoding support library for java",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.jruby.jcodings/jcodings@1.0.58",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://nexus.sonatype.org/oss-repository-hosting.html/jcodings",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "MIT",
"name" : "JCodings",
"summary" : "Byte based encoding support library for java",
"versionInfo" : "1.0.58"
}, {
"SPDXID" : "SPDXRef-gnrtd226",
"copyrightText" : "UNSPECIFIED",
"description" : "General data-binding functionality for Jackson: works on core streaming API",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.16.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/FasterXML/jackson",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "jackson-databind",
"originator" : "Organization:FasterXML",
"summary" : "General data-binding functionality for Jackson: works on core streaming API",
"versionInfo" : "2.16.0"
}, {
"SPDXID" : "SPDXRef-gnrtd227",
"copyrightText" : "UNSPECIFIED",
"description" : "Core annotations used for value types, used by Jackson data binding package.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.16.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/FasterXML/jackson",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Jackson-annotations",
"originator" : "Organization:FasterXML",
"summary" : "Core annotations used for value types, used by Jackson data binding package.",
"versionInfo" : "2.16.0"
}, {
"SPDXID" : "SPDXRef-gnrtd228",
"copyrightText" : "UNSPECIFIED",
"description" : "Data format extension for Jackson to offer\nalternative support for serializing POJOs as XML and deserializing XML as pojos.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.15.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/FasterXML/jackson-dataformat-xml",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Jackson-dataformat-XML",
"originator" : "Organization:FasterXML",
"summary" : "Data format extension for Jackson to offer\nalternative support for serializing POJOs as XML and deserializing XML as pojos.",
"versionInfo" : "2.15.0"
}, {
"SPDXID" : "SPDXRef-gnrtd229",
"copyrightText" : "UNSPECIFIED",
"description" : "tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "http://github.com/FasterXML/stax2-api",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "Stax2 API",
"originator" : "Organization:fasterxml.com",
"summary" : "tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.",
"versionInfo" : "4.2.1"
}, {
"SPDXID" : "SPDXRef-gnrtd230",
"copyrightText" : "UNSPECIFIED",
"description" : "Woodstox is a high-performance XML processor that implements Stax (JSR-173),\nSAX2 and Stax2 APIs",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.fasterxml.woodstox/woodstox-core@6.5.1",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/FasterXML/woodstox",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Woodstox",
"originator" : "Organization:FasterXML",
"summary" : "Woodstox is a high-performance XML processor that implements Stax (JSR-173),\nSAX2 and Stax2 APIs",
"versionInfo" : "6.5.1"
}, {
"SPDXID" : "SPDXRef-gnrtd231",
"copyrightText" : "UNSPECIFIED",
"description" : "Support for reading and writing YAML-encoded data via Jackson abstractions.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.15.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/FasterXML/jackson-dataformats-text",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "Jackson-dataformat-YAML",
"originator" : "Organization:FasterXML",
"summary" : "Support for reading and writing YAML-encoded data via Jackson abstractions.",
"versionInfo" : "2.15.0"
}, {
"SPDXID" : "SPDXRef-gnrtd232",
"copyrightText" : "UNSPECIFIED",
"description" : "YAML 1.1 parser and emitter for Java",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.yaml/snakeyaml@2.0",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://bitbucket.org/snakeyaml/snakeyaml",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "Apache-2.0",
"name" : "SnakeYAML",
"summary" : "YAML 1.1 parser and emitter for Java",
"versionInfo" : "2.0"
}, {
"SPDXID" : "SPDXRef-gnrtd233",
"copyrightText" : "UNSPECIFIED",
"description" : "JSON is a light-weight, language independent, data interchange format.\n See http://www.JSON.org/\n\n The files in this package implement JSON encoders/decoders in Java.\n It also includes the capability to convert between JSON and XML, HTTP\n headers, Cookies, and CDL.\n\n This is a reference implementation. There are a large number of JSON packages\n in Java. Perhaps someday the Java community will standardize on one. Until\n then, choose carefully.",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/org.json/json@20231013",
"referenceType" : "purl"
} ],
"filesAnalyzed" : false,
"homepage" : "https://github.com/douglascrockford/JSON-java",
"licenseConcluded" : "NOASSERTION",
"licenseDeclared" : "NOASSERTION",
"name" : "JSON in Java",
"summary" : "JSON is a light-weight, language independent, data interchange format.\n See http://www.JSON.org/\n\n The files in this package implement JSON encoders/decoders in Java.\n It also includes the capability to convert between JSON and XML, HTTP\n headers, Cookies, and CDL.\n\n This is a reference implementation. There are a large number of JSON packages\n in Java. Perhaps someday the Java community will standardize on one. Until\n then, choose carefully.",
"versionInfo" : "20231013"
}, {
"SPDXID" : "SPDXRef-gnrtd234",
"copyrightText" : "UNSPECIFIED",
"description" : "Core Jackson processing abstractions (aka Streaming API), implementation for JSON",
"downloadLocation" : "NOASSERTION",
"externalRefs" : [ {
"referenceCategory" : "PACKAGE-MANAGER",
"referenceLocator" : "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.15.0",
"referenceType" : "purl"
} ],