44------------------------------- Licenses -------------------------------
55- Apache License 2.0
66- BSD 3-Clause
7+ - BSD 2-Clause
78- Common Development and Distribution License (CDDL)
89- Eclipse Distribution License 1.0
910- Eclipse Public License 2.0
@@ -160,6 +161,13 @@ commons-logging:commons-logging
160161* Copyright © 2001-2014 The Apache Software Foundation. All rights reserved.
161162* License: Apache License 2.0
162163
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+
163171io.vavr:vavr-match
164172* Copyright © 2014-2021 Vavr
165173* License: Apache License 2.0
@@ -558,6 +566,35 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
558566SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
559567
560568
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+
561598------------------------------------------------------------------------
562599
563600---------- Common Development and Distribution License (CDDL) ----------
@@ -2265,8 +2302,90 @@ http://www.w3.org/Consortium/Legal/
22652302
22662303========================= Fourth Party Notices =========================
22672304
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+ ------------------------------------------------------------------------
22682387
2269- commons-logging
2388+ -- commons-logging
22702389
22712390Apache Commons Logging
22722391Copyright 2003-2016 The Apache Software Foundation
@@ -2276,7 +2395,7 @@ The Apache Software Foundation (http://www.apache.org/).
22762395
22772396------------------------------------------------------------------------
22782397
2279- jakarta.validation-api
2398+ -- jakarta.validation-api
22802399
22812400Notices for Eclipse Jakarta Bean Validation
22822401
0 commit comments