-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathnotices
6816 lines (5984 loc) · 384 KB
/
notices
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
NOTICES AND INFORMATION
IBM Cloud Pak for Business Automation 24.0.0
The IBM license agreement and any applicable information on the web
download page for IBM products refers Licensee to this file for details
concerning notices applicable to code included in the products listed
above ("the Program").
Notwithstanding the terms and conditions of any other agreement Licensee
may have with IBM or any of its related or affiliated entities
(collectively "IBM"), the third party code identified below is subject
to the terms and conditions of the IBM license agreement for the Program
and not the license terms that may be contained in the notices below.
The notices are provided for informational purposes.
Please note: This Notices file may identify information that is not used
by, or that was not shipped with, the Program as Licensee installed it.
IMPORTANT: IBM does not represent or warrant that the information in this
NOTICES file is accurate. Third party websites are independent of IBM and
IBM does not represent or warrant that the information on any third party
website referenced in this NOTICES file is accurate. IBM disclaims any
and all liability for errors and omissions or for any damages accruing
from the use of this NOTICES file or its contents, including without
limitation URLs or references to any third party websites.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NOTICES AND INFORMATION FOR <CP4BA>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
TABLE OF CONTENTS
THIS IBM NOTICES FILE CONSISTS OF THE FOLLOWING SECTIONS:
0BSD
AFL-2.1
Apache-1.1
Apache-2.0
Artistic-1.0
Artistic-1.0-Perl
Artistic-2.0
BlueOak-1.0.0
BSD-2-Clause
BSD-3-Clause
BSD-3-Clause-Clear
BSD-3-Clause-No-Nuclear-License
BSD-4-Clause
CDDL-1.0
CDDL-1.1
CPL-1.0
Elastic-2.0
EPL-1.0
EPL-2.0
HPND
ICU
ISC license
JDOM
LGPL-3.0
- LGPL-3.0-only
- LGPL-3.0-or-later
MIT
MPL-1.1
MPL-2.0
PostgreSQL
PSF-2.0
Python-2.0
SSPL-1.0
TCL
Unicode-3.0
UnRar License
X11
zlib
ZPL-2.1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
BSD Zero Clause LICENSE
The Program includes some or all of the following packages that IBM
obtained under the BSD Zero Clause License:
castor.jar
jdom.jar
jdom2-2.0.6.1.jar
jdom2.jar
tslib
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THE SOFTWARE IS PROVIDED "AS
IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
END OF BSD Zero Clause LICENSE NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
AFL-2.1
The Program includes some or all of the following that IBM obtained
under a AFL-2.1 license:
dijit | Copyright (c) 2005-2018 The JS Foundation. Copyright (c) 2003-2004 Lawrence E. Rosen. All rights reserved. | https://registry.npmjs.org/dijit/-/dijit-1.17.2.tgz
dijit-themes | Copyright (c) 2005-2018 The JS Foundation. Copyright (c) 2003-2004 Lawrence E. Rosen. All rights reserved. | https://registry.npmjs.org/dijit-themes/-/dijit-themes-1.17.2.tgz
dojo | Copyright (c) 2005-2018 The JS Foundation. Copyright (c) 2003-2004 Lawrence E. Rosen. All rights reserved. Copyright (c) 2007 Yahoo! Inc. All rights reserved. Copyright 1991-2007 Unicode Inc. All rights reserved. | https://registry.npmjs.org/dojo/-/dojo-1.17.2.tgz
dojo.js | Copyright (c) 2004-2005, The Dojo Foundation | http://o.aolcdn.com/dojo/0.4.3/dojo.js
dojox | Copyright (c) 2005-2015 The Dojo Foundation (c) 2003-2004 Lawrence E. Rosen | https://registry.npmjs.org/dojox/-/dojox-1.17.2.tgz
The Academic Free License
v.2.1
This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work:
Licensed under the Academic Free License version 2.1
1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following:
a) to reproduce the Original Work in copies;
b) to prepare derivative works ("Derivative Works") based upon the Original Work;
c) to distribute copies of the Original Work and Derivative Works to the public;
d) to perform the Original Work publicly; and
e) to display the Original Work publicly.
2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works.
3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work.
4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license.
5) This section intentionally omitted.
6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work.
7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer.
8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions.
10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware.
11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License.
12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License.
13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.
14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You.
This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved.
Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner.
END OF AFL-2.1 NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APACHE SOFTWARE LICENSE 1.1
The Program includes some or all of the following that IBM obtained
under the Apache License Version 1.1:
oro:oro
xpp3-1.1.3.4.M.jar
Apache Software License
Version 1.1
Copyright (c) 2000 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The end-user documentation included with the redistribution,
if any, must include the following acknowledgment:
"This product includes software developed by the
Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself,
if and wherever such third-party acknowledgments normally appear.
4. The names "Apache" and "Apache Software Foundation" must
not be used to endorse or promote products derived from this
software without prior written permission. For written
permission, please contact [email protected].
5. Products derived from this software may not be called "Apache",
nor may "Apache" appear in their name, without prior written
permission of the Apache Software Foundation.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Apache Software Foundation. For more
information on the Apache Software Foundation, please see
<http://www.apache.org/>.
Portions of this software are based upon public domain software
originally written at the National Center for Supercomputing
Applications, University of Illinois, Urbana-Champaign.
END OF APACHE SOFTWARE LICENSE 1.1 NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APACHE SOFTWARE LICENSE 2.0
The Program includes some or all of the following that IBM obtained
under the Apache License Version 2.0:
@aws-crypto/ie11-detection
@aws-crypto/sha256-browser
@aws-crypto/sha256-js
@aws-crypto/supports-web-crypto
@aws-crypto/util
@aws-sdk/client-cognito-identity
@aws-sdk/client-sso
@aws-sdk/client-sso-oidc
@aws-sdk/client-sts
@aws-sdk/core
@aws-sdk/credential-provider-cognito-identity
@aws-sdk/credential-provider-env
@aws-sdk/credential-provider-http
@aws-sdk/credential-provider-ini
@aws-sdk/credential-provider-node
@aws-sdk/credential-provider-process
@aws-sdk/credential-provider-sso
@aws-sdk/credential-provider-web-identity
@aws-sdk/credential-providers
@aws-sdk/middleware-host-header
@aws-sdk/middleware-logger
@aws-sdk/middleware-recursion-detection
@aws-sdk/middleware-user-agent
@aws-sdk/region-config-resolver
@aws-sdk/token-providers
@aws-sdk/types
@aws-sdk/util-endpoints
@aws-sdk/util-locate-window
@aws-sdk/util-user-agent-browser
@aws-sdk/util-user-agent-node
@aws-sdk/util-utf8-browser
@elastic/elasticsearch
@grpc/grpc-js
@grpc/proto-loader
@sigstore/bundle
@sigstore/core
@sigstore/protobuf-specs
@sigstore/sign
@sigstore/tuf
@sigstore/verify
@smithy/abort-controller
@smithy/config-resolver
@smithy/core
@smithy/credential-provider-imds
@smithy/fetch-http-handler
@smithy/hash-node
@smithy/invalid-dependency
@smithy/is-array-buffer
@smithy/middleware-content-length
@smithy/middleware-endpoint
@smithy/middleware-retry
@smithy/middleware-serde
@smithy/middleware-stack
@smithy/node-config-provider
@smithy/node-http-handler
@smithy/property-provider
@smithy/protocol-http
@smithy/querystring-builder
@smithy/querystring-parser
@smithy/service-error-classification
@smithy/shared-ini-file-loader
@smithy/signature-v4
@smithy/smithy-client
@smithy/types
@smithy/url-parser
@smithy/util-base64
@smithy/util-body-length-browser
@smithy/util-body-length-node
@smithy/util-buffer-from
@smithy/util-config-provider
@smithy/util-defaults-mode-browser
@smithy/util-defaults-mode-node
@smithy/util-endpoints
@smithy/util-hex-encoding
@smithy/util-middleware
@smithy/util-retry
@smithy/util-stream
@smithy/util-uri-escape
@smithy/util-utf8
@vrbo/pino-rotating-file
Apache Lucene
CacheControl
CometD
Cython
FastInfoset-1.2.15.jar
FastInfoset-2.0.0.jar
FastInfoset.jar
Helm
JSON4J_Apache.jar
MathJax-grunt-cleaner
Opensans Fonts
Sandesha.jar
absl-py
accelerate
addressing.jar
aggs-matrix-stats-client-2.13.0.jar
aiohttp
aiosignal
all-0.30.jar
analysis-common-2.13.0.jar
annotations-13.0.jar
annotations-24.1.0.jar
ansible-operator
ansible-runner
ansible-runner-http
ant-1.10.12.jar
ant-contrib.jar
ant-launcher-1.10.12.jar
antlr.jar
anytree
apache-wink.1.1.1-incubating.jar
apr
apr-util
apr-util-bdb
apr-util-openssl
avro-1.11.3.jar
avro-js
avro-python3
aws-java-sdk-core-1.12.689.jar
aws-java-sdk-kms-1.12.689.jar
aws-java-sdk-s3-1.12.689.jar
axiom-api-1.4.0.jar
axiom-impl-1.4.0.jar
axiom.jar
axis-patched-1.4.jar
axis.jar
axis2-adb-1.8.2.jar
axis2-jaxws-1.8.2.jar
axis2-kernel-1.8.2.jar
axis2-transport-http-1.8.2.jar
axis2-transport-local-1.8.2.jar
batik-all-1.17.jar
batik-jviews-svggen-8.8.jar
batik:batik-awt-util
biz.aQute.bnd:biz.aQute.bnd.annotation
box-java-sdk-1.0.0.jar
box-java-sdk.jar
bsf:bsf
bsh.jar
bson
bson-4.11.1.jar
bson-record-codec-4.11.1.jar
btf-1.3.jar
cache-api-1.1.0.jar
cache-common-2.13.0.jar
cactus:cactus
caffeine-3.1.8.jar
caikit
cglib:cglib
cglib:cglib-nodep
chemistry-opencmis-client-api.jar
chemistry-opencmis-client-bindings.jar
chemistry-opencmis-client-impl.jar
chemistry-opencmis-commons-api-1.1.0.jar
chemistry-opencmis-commons-api.jar
chemistry-opencmis-commons-impl-1.1.0.jar
chemistry-opencmis-commons-impl.jar
chemistry-opencmis-server-async-1.1.0.jar
chemistry-opencmis-server-bindings-1.1.0.jar
chemistry-opencmis-server-bindings-war-1.1.0.jar
chemistry-opencmis-server-support-1.1.0.jar
cmake
com.aayushatharva.brotli4j.brotli4j-1.16.0.jar
com.aayushatharva.brotli4j.native-linux-x86_64-1.16.0.jar
com.aayushatharva.brotli4j.service-1.16.0.jar
com.aayushatharva.brotli4j:brotli4j
com.aayushatharva.brotli4j:native-linux-x86_64
com.aayushatharva.brotli4j:service
com.amazonaws:aws-java-sdk-core
com.amazonaws:aws-java-sdk-kms
com.amazonaws:aws-java-sdk-s3
com.amazonaws:jmespath-java
com.asyncapi:asyncapi-core
com.atlassian.oai:swagger-request-validator-core
com.beust:jcommander
com.carrotsearch:hppc
com.cenqua.clover:clover
com.cybozu.labs:langdetect
com.epam:parso
com.fasterxml.jackson.core.jackson-annotations-2.16.1.jar
com.fasterxml.jackson.core.jackson-annotations-2.17.0.jar
com.fasterxml.jackson.core.jackson-core-2.16.1.jar
com.fasterxml.jackson.core.jackson-core-2.17.0.jar
com.fasterxml.jackson.core.jackson-databind-2.16.1.jar
com.fasterxml.jackson.core.jackson-databind-2.17.0.jar
com.fasterxml.jackson.core:jackson-annotations
com.fasterxml.jackson.core:jackson-core
com.fasterxml.jackson.core:jackson-databind
com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.17.0.jar
com.fasterxml.jackson.dataformat:jackson-dataformat-cbor
com.fasterxml.jackson.dataformat:jackson-dataformat-smile
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.16.1.jar
com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.17.0.jar
com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.16.1.jar
com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.17.0.jar
com.fasterxml.jackson.datatype:jackson-datatype-guava
com.fasterxml.jackson.datatype:jackson-datatype-jdk8
com.fasterxml.jackson.datatype:jackson-datatype-jsr310
com.fasterxml.jackson.datatype:jackson-datatype-jsr353
com.fasterxml.jackson.jakarta.rs.jackson-jakarta-rs-base-2.17.0.jar
com.fasterxml.jackson.jakarta.rs.jackson-jakarta-rs-json-provider-2.17.0.jar
com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base
com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider
com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.17.0.jar
com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.17.0.jar
com.fasterxml.jackson.jaxrs:jackson-jaxrs-base
com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
com.fasterxml.jackson.jr:jackson-jr-objects
com.fasterxml.jackson.module.jackson-module-jakarta-xmlbind-annotations-2.17.0.jar
com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.17.0.jar
com.fasterxml.jackson.module.jackson-module-parameter-names-2.16.1.jar
com.fasterxml.jackson.module.jackson-module-parameter-names-2.17.0.jar
com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations
com.fasterxml.jackson.module:jackson-module-jaxb-annotations
com.fasterxml.jackson.module:jackson-module-jsonSchema
com.fasterxml.jackson.module:jackson-module-kotlin
com.fasterxml.jackson.module:jackson-module-parameter-names
com.fasterxml.jackson:jackson-bom
com.fasterxml.uuid:java-uuid-generator
com.fasterxml.woodstox:woodstox-core
com.fasterxml:classmate
com.flipkart.zjsonpatch:zjsonpatch
com.github.ben-manes.caffeine:caffeine
com.github.java-json-tools.btf-1.3.jar
com.github.java-json-tools.jackson-coreutils-2.0.jar
com.github.java-json-tools.json-patch-1.13.jar
com.github.java-json-tools.msg-simple-1.2.jar
com.github.java-json-tools:json-patch
com.github.java-json-tools:json-schema-validator
com.github.librepdf:openpdf
com.github.openjson:openjson
com.github.spullara.mustache.java.compiler-0.9.10.jar
com.github.spullara.mustache.java:compiler
com.github.stephenc.jcip:jcip-annotations
com.google.android:annotations
com.google.api.grpc:proto-google-common-protos
com.google.auto.value:auto-value-annotations
com.google.code.findbugs.jsr305-3.0.2.jar
com.google.code.findbugs:jsr305
com.google.code.gson.gson-2.10.1.jar
com.google.code.gson:gson
com.google.errorprone.error_prone_annotations-2.25.0.jar
com.google.errorprone:error_prone_annotations
com.google.flatbuffers:flatbuffers-java
com.google.googlejavaformat:google-java-format
com.google.guava.failureaccess-1.0.1.jar
com.google.guava.guava-32.0.1-jre.jar
com.google.guava.guava-33.0.0-jre.jar
com.google.guava.listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
com.google.guava:failureaccess
com.google.guava:guava
com.google.guava:guava-testlib
com.google.guava:listenablefuture
com.google.inject:guice
com.google.j2objc.j2objc-annotations-2.8.jar
com.google.j2objc.j2objc-annotations-3.0.0.jar
com.google.j2objc:j2objc-annotations
com.google.protobuf.protobuf-java-3.24.3.jar
com.google.truth:truth
com.googlecode.javaewah.JavaEWAH-1.2.3.jar
com.googlecode.javaewah:JavaEWAH
com.googlecode.json-simple:json-simple
com.googlecode.libphonenumber:libphonenumber
com.googlecode.owasp-java-html-sanitizer:owasp-java-html-sanitizer
com.healthmarketscience.jackcess:jackcess
com.healthmarketscience.jackcess:jackcess-encrypt
com.ibm.async:asyncutil
com.ibm.jbatch:com.ibm.jbatch-model
com.ibm.jbatch:com.ibm.jbatch-ri-spi
com.ibm.jbatch:com.ibm.jbatch-runtime
com.ibm.jbatch:com.ibm.jbatch-runtime-all
com.ibm:json4j
com.jayway.jsonpath:json-path
com.lmax:disruptor
com.maxmind.db:maxmind-db
com.maxmind.geoip2:geoip2
com.meterware.simplestub:simplestub
com.networknt:json-schema-validator
com.nimbusds:content-type
com.nimbusds:lang-tag
com.nimbusds:nimbus-jose-jwt
com.nimbusds:oauth2-oidc-sdk
com.pff:java-libpst
com.rometools:rome
com.segment.backo:backo
com.squareup.okhttp3:logging-interceptor
com.squareup.okhttp3:okhttp
com.squareup.okio:okio
com.squareup.okio:okio-jvm
com.squareup.retrofit2:converter-gson
com.squareup.retrofit2:retrofit
com.squareup.retrofit2:retrofit-mock
com.sun.org.apache.xml.internal:resolver
com.sun.xml.fastinfoset:FastInfoset
com.tdunning:t-digest
com.thetransactioncompany:cors-filter
com.thetransactioncompany:java-property-utils
com.thoughtworks.qdox:qdox
com.typesafe.config-1.4.3.jar
com.typesafe:config
com.zaxxer:SparseBitSet
cometd-java-server-websocket-jetty-5.0.13.jar
cometd.min.js
common-io.jar
common-lang.jar
commons-beanutils-1.7.0.jar
commons-beanutils:commons-beanutils
commons-chain-1.1.jar
commons-cli:commons-cli
commons-codec-1.16.0.jar
commons-codec.commons-codec-1.16.1.jar
commons-codec:commons-codec
commons-collections:commons-collections
commons-configuration-1.10.jar
commons-configuration-1.7.jar
commons-configuration:commons-configuration
commons-dbcp:commons-dbcp
commons-digester-1.8.jar
commons-digester:commons-digester
commons-discovery-0.2.jar
commons-discovery:commons-discovery
commons-el-1.0.jar
commons-el:commons-el
commons-fileupload:commons-fileupload
commons-httpclient-contrib.jar
commons-httpclient:commons-httpclient
commons-io-2.8.0.jar
commons-io.commons-io-2.15.1.jar
commons-io:commons-io
commons-jcs-core-2.2.1.jar
commons-jxpath-1.2.jar
commons-jxpath:commons-jxpath
commons-lang-2.1.jar
commons-lang3-3.11.jar
commons-lang3-3.4.jar
commons-lang:commons-lang
commons-logging-1.1.jar
commons-logging-1.3.0.jar
commons-logging.commons-logging-1.2.jar
commons-logging:commons-logging
commons-pool:commons-pool
commons-validator:commons-validator
compat-openssl11
compiler-0.9.6.jar
config-1.3.3.jar
config-1.4.3.jar
converter-gson-2.9.0.jar
cors-filter-2.1.2.jar
cryptography
cxf-core-3.5.5.jar
cxf-rt-bindings-soap-3.5.5.jar
cxf-rt-bindings-xml-3.5.5.jar
cxf-rt-databinding-jaxb-3.5.5.jar
cxf-rt-frontend-jaxws-3.5.5.jar
cxf-rt-frontend-simple-3.5.5.jar
cxf-rt-transports-http-3.5.5.jar
cxf-rt-ws-addr-3.5.5.jar
cxf-rt-wsdl-3.5.5.jar
datasets
de.l3s.boilerpipe:boilerpipe
denque
dense64-0.30.jar
denseC64-0.30.jar
derby-10.14.2.0.jar
derby-10.14.2.1-patched.jar
derby.jar
detectron2
dev.failsafe:failsafe
doxia-core-2.0.0-M5.jar
doxia-decoration-model-2.0.0-M5.jar
doxia-integration-tools-2.0.0-M5.jar
doxia-module-apt-2.0.0-M5.jar
doxia-module-xdoc-2.0.0-M5.jar
dulwich
easymock:easymock
easymock:easymockclassextension
ecdsa-sig-formatter
edu.usc.ir:sentiment-analysis-parser
ehcache-3.10.8-jakarta.jar
ejs
ejs-1.0.min.js
elasticsearch
elasticsearch-rest-client-7.17.14.jar
equation-0.30.jar
erlang
error_prone_annotations.jar
etcd
event-emitter-1.1-SNAPSHOT.jar
eventbus-java-3.3.1.jar
exponential-backoff
failsafe-3.3.2.jar
failureaccess.jar
filelist
flatbuffers
flink-rpc-akka.jar
fluent-hc-4.5.13.jar
fluent-hc.jar
fmpp-package:fmpp
fontbox-2.0.26.jar
frozenlist
fvcore
geo-2.13.0.jar
geronimo-json_1.0_spec-1.0-alpha-1.jar
geronimo-json_1.1_spec-1.1.jar
google-auth
google-auth-oauthlib
google-crosextra-caladea-fonts
google-pasta
google_pasta
gosu
graphql-java-kickstart-14.0.0.jar
graphql-java-servlet-14.0.0.jar
grpc-api-1.56.1.jar
grpc-api-1.63.0.jar
grpc-context-1.56.1.jar
grpc-context-1.63.0.jar
grpc-core-1.56.1.jar
grpc-core-1.63.0.jar
grpc-grpclb-1.63.0.jar
grpc-netty-1.56.1.jar
grpc-netty-1.63.0.jar
grpc-protobuf-1.56.1.jar
grpc-protobuf-1.63.0.jar
grpc-protobuf-lite-1.56.1.jar
grpc-protobuf-lite-1.63.0.jar
grpc-stub-1.52.1.jar
grpc-stub-1.63.0.jar
grpc-util-1.63.0.jar
grpcio
grpcio-health-checking
grpcio-reflection
gson-2.8.9.jar
gson.jar
guava-32.0.1-jre.jar
guava-32.1.1-jre.jar
guava-32.1.3-jre.jar
guava-33.1.0-jre.jar
guava.jar
guice-4.2.3-no_aop.jar
guice-5.1.0.jar
hppc-0.8.1.jar
hppc-0.9.1.jar
httpclient-cache-4.5.13.jar
httpclient-cache.jar
httpclient5-5.1.4.jar
httpcore-nio-4.4.15.jar
httpcore5-5.1.5.jar
httpcore5-h2-5.1.5.jar
httpmime-4.5.13.jar
huggingface-hub
human-signals
ibm-db
importlib-metadata
importlib-resources
importlib_metadata
ingest-common-2.13.0.jar
ingest-geoip-2.13.0.jar
ingest-user-agent-2.13.0.jar
intervaltree
io.dropwizard.metrics:metrics-bom
io.dropwizard.metrics:metrics-core
io.dropwizard.metrics:metrics-jmx
io.dropwizard.metrics:metrics-jvm
io.grpc:grpc-netty
io.grpc:grpc-protobuf
io.grpc:grpc-stub
io.gsonfire:gson-fire
io.jsonwebtoken:jjwt
io.jsonwebtoken:jjwt-api
io.jsonwebtoken:jjwt-impl
io.jsonwebtoken:jjwt-jackson
io.micrometer.micrometer-commons-1.12.4.jar
io.micrometer.micrometer-core-1.12.4.jar
io.micrometer.micrometer-observation-1.12.4.jar
io.micrometer.micrometer-registry-prometheus-1.12.4.jar
io.micrometer:micrometer-core
io.micrometer:micrometer-registry-prometheus
io.mongock.mongock-api-5.4.0.jar
io.mongock.mongock-driver-api-5.4.0.jar
io.mongock.mongock-driver-core-5.4.0.jar
io.mongock.mongock-runner-core-5.4.0.jar
io.mongock.mongock-standalone-5.4.0.jar
io.mongock.mongock-standalone-base-5.4.0.jar
io.mongock.mongock-utils-5.4.0.jar
io.mongock.mongodb-sync-v4-driver-5.4.0.jar
io.mongock:mongock-api
io.mongock:mongock-core-bom
io.mongock:mongock-driver-api
io.mongock:mongock-driver-core
io.mongock:mongock-driver-mongodb-bom
io.mongock:mongock-runner-core
io.mongock:mongock-standalone
io.mongock:mongock-standalone-base
io.mongock:mongock-utils
io.mongock:mongodb-sync-v4-driver
io.netty.netty-buffer-4.1.108.Final.jar
io.netty.netty-codec-4.1.108.Final.jar
io.netty.netty-codec-dns-4.1.108.Final.jar
io.netty.netty-codec-haproxy-4.1.108.Final.jar
io.netty.netty-codec-http-4.1.108.Final.jar
io.netty.netty-codec-http2-4.1.108.Final.jar
io.netty.netty-codec-socks-4.1.108.Final.jar
io.netty.netty-common-4.1.108.Final.jar
io.netty.netty-handler-4.1.108.Final.jar
io.netty.netty-handler-proxy-4.1.108.Final.jar
io.netty.netty-resolver-4.1.108.Final.jar
io.netty.netty-resolver-dns-4.1.108.Final.jar
io.netty.netty-transport-4.1.108.Final.jar
io.netty.netty-transport-classes-epoll-4.1.108.Final.jar
io.netty.netty-transport-native-unix-common-4.1.108.Final.jar
io.netty:netty-buffer
io.netty:netty-codec
io.netty:netty-codec-dns
io.netty:netty-codec-haproxy
io.netty:netty-codec-http
io.netty:netty-codec-http2
io.netty:netty-codec-socks
io.netty:netty-common
io.netty:netty-handler
io.netty:netty-handler-proxy
io.netty:netty-resolver
io.netty:netty-resolver-dns
io.netty:netty-resolver-dns-classes-macos
io.netty:netty-resolver-dns-native-macos
io.netty:netty-tcnative-boringssl-static
io.netty:netty-tcnative-classes
io.netty:netty-transport
io.netty:netty-transport-classes-epoll
io.netty:netty-transport-native-epoll
io.netty:netty-transport-native-unix-common
io.opentracing:opentracing-api
io.opentracing:opentracing-noop
io.opentracing:opentracing-util
io.prometheus.simpleclient-0.16.0.jar
io.prometheus.simpleclient_common-0.16.0.jar
io.prometheus.simpleclient_tracer_common-0.16.0.jar
io.prometheus.simpleclient_tracer_otel-0.16.0.jar
io.prometheus.simpleclient_tracer_otel_agent-0.16.0.jar
io.prometheus:simpleclient
io.prometheus:simpleclient_common
io.prometheus:simpleclient_tracer_common
io.prometheus:simpleclient_tracer_otel
io.prometheus:simpleclient_tracer_otel_agent
io.quarkiverse.jgit.quarkus-jgit-3.0.6.jar
io.quarkiverse.jgit:quarkus-jgit
io.quarkiverse.jsch.quarkus-jsch-3.0.5.jar
io.quarkiverse.jsch:quarkus-jsch
io.quarkiverse.loggingjson.quarkus-logging-json-3.0.0.jar
io.quarkiverse.loggingjson:quarkus-logging-json
io.quarkus.arc.arc-3.9.2.jar
io.quarkus.arc.arc-3.9.3.jar
io.quarkus.arc:arc
io.quarkus.quarkus-arc-3.9.2.jar
io.quarkus.quarkus-arc-3.9.3.jar
io.quarkus.quarkus-bootstrap-runner-3.9.2.jar
io.quarkus.quarkus-bootstrap-runner-3.9.3.jar
io.quarkus.quarkus-core-3.9.2.jar
io.quarkus.quarkus-core-3.9.3.jar
io.quarkus.quarkus-credentials-3.9.2.jar
io.quarkus.quarkus-credentials-3.9.3.jar
io.quarkus.quarkus-development-mode-spi-3.9.2.jar
io.quarkus.quarkus-development-mode-spi-3.9.3.jar
io.quarkus.quarkus-elytron-security-3.9.2.jar
io.quarkus.quarkus-elytron-security-3.9.3.jar
io.quarkus.quarkus-elytron-security-common-3.9.2.jar
io.quarkus.quarkus-elytron-security-common-3.9.3.jar
io.quarkus.quarkus-elytron-security-properties-file-3.9.2.jar
io.quarkus.quarkus-elytron-security-properties-file-3.9.3.jar
io.quarkus.quarkus-fs-util-0.0.10.jar
io.quarkus.quarkus-jackson-3.9.2.jar
io.quarkus.quarkus-jackson-3.9.3.jar
io.quarkus.quarkus-jsonb-3.9.2.jar
io.quarkus.quarkus-jsonb-3.9.3.jar
io.quarkus.quarkus-jsonp-3.9.2.jar
io.quarkus.quarkus-jsonp-3.9.3.jar
io.quarkus.quarkus-micrometer-3.9.2.jar
io.quarkus.quarkus-micrometer-registry-prometheus-3.9.2.jar
io.quarkus.quarkus-mutiny-3.9.2.jar
io.quarkus.quarkus-mutiny-3.9.3.jar
io.quarkus.quarkus-netty-3.9.2.jar
io.quarkus.quarkus-netty-3.9.3.jar
io.quarkus.quarkus-rest-3.9.2.jar
io.quarkus.quarkus-rest-common-3.9.2.jar
io.quarkus.quarkus-rest-jsonb-3.9.2.jar
io.quarkus.quarkus-rest-jsonb-common-3.9.2.jar
io.quarkus.quarkus-resteasy-3.9.3.jar
io.quarkus.quarkus-resteasy-common-3.9.3.jar
io.quarkus.quarkus-resteasy-jackson-3.9.3.jar
io.quarkus.quarkus-resteasy-server-common-3.9.3.jar
io.quarkus.quarkus-security-3.9.2.jar
io.quarkus.quarkus-security-3.9.3.jar
io.quarkus.quarkus-security-runtime-spi-3.9.2.jar
io.quarkus.quarkus-security-runtime-spi-3.9.3.jar
io.quarkus.quarkus-smallrye-context-propagation-3.9.2.jar
io.quarkus.quarkus-smallrye-context-propagation-3.9.3.jar
io.quarkus.quarkus-vertx-3.9.2.jar
io.quarkus.quarkus-vertx-3.9.3.jar
io.quarkus.quarkus-vertx-http-3.9.2.jar
io.quarkus.quarkus-vertx-http-3.9.3.jar
io.quarkus.quarkus-vertx-latebound-mdc-provider-3.9.2.jar
io.quarkus.quarkus-vertx-latebound-mdc-provider-3.9.3.jar
io.quarkus.quarkus-virtual-threads-3.9.2.jar
io.quarkus.quarkus-virtual-threads-3.9.3.jar
io.quarkus.resteasy.reactive.resteasy-reactive-3.9.2.jar
io.quarkus.resteasy.reactive.resteasy-reactive-common-3.9.2.jar
io.quarkus.resteasy.reactive.resteasy-reactive-common-types-3.9.2.jar
io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-3.9.2.jar
io.quarkus.resteasy.reactive.resteasy-reactive-vertx-3.9.2.jar
io.quarkus.resteasy.reactive:resteasy-reactive
io.quarkus.resteasy.reactive:resteasy-reactive-common
io.quarkus.resteasy.reactive:resteasy-reactive-common-types
io.quarkus.resteasy.reactive:resteasy-reactive-jsonb
io.quarkus.resteasy.reactive:resteasy-reactive-vertx
io.quarkus.security.quarkus-security-2.0.3.Final.jar
io.quarkus.security:quarkus-security
io.quarkus:quarkus-arc
io.quarkus:quarkus-bootstrap-bom
io.quarkus:quarkus-bootstrap-bom-test
io.quarkus:quarkus-bootstrap-runner
io.quarkus:quarkus-caffeine
io.quarkus:quarkus-core
io.quarkus:quarkus-credentials
io.quarkus:quarkus-development-mode-spi
io.quarkus:quarkus-elytron-security
io.quarkus:quarkus-elytron-security-common
io.quarkus:quarkus-elytron-security-properties-file
io.quarkus:quarkus-fs-util
io.quarkus:quarkus-ide-launcher
io.quarkus:quarkus-jackson
io.quarkus:quarkus-jsonb
io.quarkus:quarkus-jsonp
io.quarkus:quarkus-kafka-client
io.quarkus:quarkus-logging-json
io.quarkus:quarkus-micrometer
io.quarkus:quarkus-micrometer-registry-prometheus
io.quarkus:quarkus-mutiny
io.quarkus:quarkus-netty
io.quarkus:quarkus-rest
io.quarkus:quarkus-rest-common
io.quarkus:quarkus-rest-jsonb
io.quarkus:quarkus-rest-jsonb-common
io.quarkus:quarkus-resteasy
io.quarkus:quarkus-resteasy-common
io.quarkus:quarkus-resteasy-jackson
io.quarkus:quarkus-resteasy-server-common
io.quarkus:quarkus-security
io.quarkus:quarkus-security-runtime-spi
io.quarkus:quarkus-smallrye-context-propagation
io.quarkus:quarkus-smallrye-openapi
io.quarkus:quarkus-swagger-ui
io.quarkus:quarkus-vertx
io.quarkus:quarkus-vertx-http
io.quarkus:quarkus-vertx-latebound-mdc-provider
io.quarkus:quarkus-virtual-threads
io.r2dbc:r2dbc-spi
io.reactivex.rxjava3:rxjava
io.rest-assured:rest-assured
io.smallrye.common.smallrye-common-annotation-2.3.0.jar
io.smallrye.common.smallrye-common-classloader-2.3.0.jar
io.smallrye.common.smallrye-common-constraint-2.3.0.jar
io.smallrye.common.smallrye-common-cpu-2.3.0.jar
io.smallrye.common.smallrye-common-expression-2.3.0.jar
io.smallrye.common.smallrye-common-function-2.3.0.jar
io.smallrye.common.smallrye-common-io-2.3.0.jar
io.smallrye.common.smallrye-common-net-2.3.0.jar
io.smallrye.common.smallrye-common-os-2.3.0.jar
io.smallrye.common.smallrye-common-ref-2.3.0.jar
io.smallrye.common.smallrye-common-vertx-context-2.3.0.jar
io.smallrye.common:smallrye-common-annotation
io.smallrye.common:smallrye-common-bom
io.smallrye.common:smallrye-common-classloader
io.smallrye.common:smallrye-common-constraint
io.smallrye.common:smallrye-common-cpu
io.smallrye.common:smallrye-common-expression
io.smallrye.common:smallrye-common-function
io.smallrye.common:smallrye-common-io
io.smallrye.common:smallrye-common-net
io.smallrye.common:smallrye-common-os
io.smallrye.common:smallrye-common-ref
io.smallrye.common:smallrye-common-vertx-context
io.smallrye.config.smallrye-config-3.7.1.jar
io.smallrye.config.smallrye-config-common-3.7.1.jar
io.smallrye.config.smallrye-config-core-3.7.1.jar
io.smallrye.config:smallrye-config
io.smallrye.config:smallrye-config-common
io.smallrye.config:smallrye-config-core
io.smallrye.reactive.mutiny-2.5.8.jar
io.smallrye.reactive.mutiny-smallrye-context-propagation-2.5.8.jar
io.smallrye.reactive.mutiny-zero-flow-adapters-1.0.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-3.11.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-3.11.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-core-3.11.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-runtime-3.11.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-3.11.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-web-3.11.0.jar
io.smallrye.reactive.smallrye-mutiny-vertx-web-common-3.11.0.jar
io.smallrye.reactive.vertx-mutiny-generator-3.11.0.jar
io.smallrye.reactive:mutiny
io.smallrye.reactive:mutiny-smallrye-context-propagation
io.smallrye.reactive:mutiny-test-utils
io.smallrye.reactive:mutiny-zero-flow-adapters
io.smallrye.reactive:smallrye-mutiny-vertx-auth-common
io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common
io.smallrye.reactive:smallrye-mutiny-vertx-core
io.smallrye.reactive:smallrye-mutiny-vertx-runtime
io.smallrye.reactive:smallrye-mutiny-vertx-uri-template
io.smallrye.reactive:smallrye-mutiny-vertx-web
io.smallrye.reactive:smallrye-mutiny-vertx-web-common
io.smallrye.reactive:vertx-mutiny-generator
io.smallrye.smallrye-context-propagation-2.1.0.jar
io.smallrye.smallrye-context-propagation-api-2.1.0.jar
io.smallrye.smallrye-context-propagation-storage-2.1.0.jar
io.smallrye.smallrye-fault-tolerance-vertx-6.2.6.jar
io.smallrye.testing:smallrye-testing-utilities
io.smallrye:jandex
io.smallrye:smallrye-context-propagation
io.smallrye:smallrye-context-propagation-api
io.smallrye:smallrye-context-propagation-storage
io.smallrye:smallrye-fault-tolerance-core
io.smallrye:smallrye-fault-tolerance-vertx
io.smallrye:smallrye-open-api-core
io.swagger-swagger-annotations.jar
io.swagger-swagger-core.jar
io.swagger-swagger-models.jar
io.swagger-swagger-parser-safe-url-resolver.jar
io.swagger-swagger-parser.jar
io.swagger.core.v3-swagger-annotations.jar
io.swagger.core.v3-swagger-core.jar
io.swagger.core.v3-swagger-models.jar
io.swagger.core.v3.swagger-annotations-jakarta-2.2.14.jar
io.swagger.core.v3.swagger-core-jakarta-2.2.14.jar
io.swagger.core.v3.swagger-integration-jakarta-2.2.14.jar
io.swagger.core.v3.swagger-jaxrs2-jakarta-2.2.14.jar
io.swagger.core.v3.swagger-models-jakarta-2.2.14.jar
io.swagger.core.v3:swagger-annotations
io.swagger.core.v3:swagger-annotations-jakarta
io.swagger.core.v3:swagger-core
io.swagger.core.v3:swagger-core-jakarta
io.swagger.core.v3:swagger-integration
io.swagger.core.v3:swagger-integration-jakarta
io.swagger.core.v3:swagger-jaxrs2
io.swagger.core.v3:swagger-jaxrs2-jakarta
io.swagger.core.v3:swagger-models
io.swagger.core.v3:swagger-models-jakarta
io.swagger.parser.v3-swagger-parser-safe-url-resolver.jar
io.swagger.parser.v3-swagger-parser.jar
io.swagger.parser.v3:swagger-parser
io.swagger.parser.v3:swagger-parser-core
io.swagger.parser.v3:swagger-parser-safe-url-resolver
io.swagger.parser.v3:swagger-parser-v2-converter
io.swagger.parser.v3:swagger-parser-v3
io.swagger.swagger-annotations-1.6.13.jar
io.swagger:swagger-annotations
io.swagger:swagger-compat-spec-parser
io.swagger:swagger-core
io.swagger:swagger-models
io.swagger:swagger-parser
io.swagger:swagger-parser-safe-url-resolver
io.vertx.vertx-auth-common-4.5.7.jar
io.vertx.vertx-bridge-common-4.5.7.jar
io.vertx.vertx-codegen-4.5.7.jar
io.vertx.vertx-core-4.5.7.jar
io.vertx.vertx-uri-template-4.5.7.jar
io.vertx.vertx-web-4.5.7.jar
io.vertx.vertx-web-common-4.5.7.jar
io.vertx:vertx-auth-common