4
4
------------------------------- Licenses -------------------------------
5
5
- Apache License 2.0
6
6
- BSD 3-Clause
7
+ - BSD 2-Clause
7
8
- Common Development and Distribution License (CDDL)
8
9
- Eclipse Distribution License 1.0
9
10
- Eclipse Public License 2.0
@@ -160,6 +161,13 @@ commons-logging:commons-logging
160
161
* Copyright © 2001-2014 The Apache Software Foundation. All rights reserved.
161
162
* License: Apache License 2.0
162
163
164
+ FastDoubleParser
165
+ * Copyright © 2022 Daniel Lemire. BSL License.
166
+ * Copyright © 2023 Werner Randelshofer, Switzerland.
167
+ * Licenses: BSL License
168
+ MIT License
169
+ * Source code: https://github.com/wrandelshofer/FastDoubleParser
170
+
163
171
io.vavr:vavr-match
164
172
* Copyright © 2014-2021 Vavr
165
173
* License: Apache License 2.0
@@ -558,6 +566,35 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
558
566
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
559
567
560
568
569
+ ------------------------------------------------------------------------
570
+
571
+ ----------------------------- BSD 2-Clause -----------------------------
572
+
573
+ Redistribution and use in source and binary forms, with or without
574
+ modification,are permitted provided that the following conditions are
575
+ met:
576
+
577
+ 1. Redistributions of source code must retain the above copyright
578
+ notice, this list of conditions and the following disclaimer.
579
+
580
+ 2. Redistributions in binary form must reproduce the above copyright
581
+ notice, this list of conditions and the following disclaimer in the
582
+ documentation and/or other materials provided with the distribution.
583
+
584
+
585
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
586
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
587
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
588
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
589
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
590
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
591
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
592
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
593
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
594
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
595
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
596
+
597
+
561
598
------------------------------------------------------------------------
562
599
563
600
---------- Common Development and Distribution License (CDDL) ----------
@@ -2265,8 +2302,90 @@ http://www.w3.org/Consortium/Legal/
2265
2302
2266
2303
========================= Fourth Party Notices =========================
2267
2304
2305
+ ------------------------------------------------------------------------
2306
+
2307
+ -- FastDoubleParser
2308
+
2309
+ This is a Java port of Daniel Lemire's fast_float project.
2310
+ This project provides parsers for double, float, BigDecimal and BigInteger values.
2311
+
2312
+ ## Copyright
2313
+
2314
+ Copyright © 2023 Werner Randelshofer, Switzerland.
2315
+
2316
+ ## Licensing
2317
+
2318
+ This code is licensed under MIT License.
2319
+
2320
+ Some portions of the code have been derived from other projects.
2321
+ All these projects require that we include a copyright notice, and
2322
+ some require that we also include some text of their license file.
2323
+
2324
+ fast_double_parser, Copyright (c) 2022 Daniel Lemire. BSL License.
2325
+
2326
+ fast_float, Copyright (c) 2021 The fast_float authors. MIT License.
2327
+
2328
+ bigint, Copyright 2020 Tim Buktu. 2-clause BSD License.
2329
+
2330
+ https://github.com/lemire/fast_double_parser
2331
+
2332
+ Copyright (c) Daniel Lemire
2333
+
2334
+ Copyright 2022 Tim Buktu
2335
+
2336
+ ---
2337
+ Boost Software License - Version 1.0 - August 17th, 2003
2338
+
2339
+ Permission is hereby granted, free of charge, to any person or organization
2340
+ obtaining a copy of the software and accompanying documentation covered by
2341
+ this license (the "Software") to use, reproduce, display, distribute,
2342
+ execute, and transmit the Software, and to prepare derivative works of the
2343
+ Software, and to permit third-parties to whom the Software is furnished to
2344
+ do so, all subject to the following:
2345
+
2346
+ The copyright notices in the Software and this entire statement, including
2347
+ the above license grant, this restriction and the following disclaimer,
2348
+ must be included in all copies of the Software, in whole or in part, and
2349
+ all derivative works of the Software, unless such copies or derivative
2350
+ works are solely in the form of machine-executable object code generated by
2351
+ a source language processor.
2352
+
2353
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2354
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2355
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
2356
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
2357
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
2358
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2359
+ DEALINGS IN THE SOFTWARE.
2360
+ ---
2361
+
2362
+ https://github.com/tbuktu/bigint/tree/floatfft
2363
+
2364
+ The following files are licensed under a 2-clause BSD license:
2365
+
2366
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigInteger.java.diff
2367
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/MutableBigInteger.java.diff
2368
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigDecimal.java.diff
2369
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/MultBenchmark.java
2370
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/DivBenchmark.java
2371
+ https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTest.java.diff
2372
+ https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTestOld.java
2373
+
2374
+ The following files are licensed under the General Public License 2.0 (GPL v2):
2375
+
2376
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigInteger.java
2377
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigDecimal.java
2378
+ https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/MutableBigInteger.java
2379
+ https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTest.java
2380
+
2381
+ (We only use those portions of the bigint project that can be licensed
2382
+ under 2-clause BSD License.) (The file 'thirdparty-LICENSE' is
2383
+ included in the sources and classes Jar files that are released by
2384
+ this project - as is required by that license.)
2385
+
2386
+ ------------------------------------------------------------------------
2268
2387
2269
- commons-logging
2388
+ -- commons-logging
2270
2389
2271
2390
Apache Commons Logging
2272
2391
Copyright 2003-2016 The Apache Software Foundation
@@ -2276,7 +2395,7 @@ The Apache Software Foundation (http://www.apache.org/).
2276
2395
2277
2396
------------------------------------------------------------------------
2278
2397
2279
- jakarta.validation-api
2398
+ -- jakarta.validation-api
2280
2399
2281
2400
Notices for Eclipse Jakarta Bean Validation
2282
2401
0 commit comments