NOTICE 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115
  1. Apache DolphinScheduler
  2. Copyright 2019-2023 The Apache Software Foundation
  3. This product includes software developed at
  4. The Apache Software Foundation (http://www.apache.org/).
  5. ========================================================================
  6. Jetty NOTICE
  7. ========================================================================
  8. ==============================================================
  9. Jetty Web Container
  10. Copyright 1995-2018 Mort Bay Consulting Pty Ltd.
  11. ==============================================================
  12. The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd
  13. unless otherwise noted.
  14. Jetty is dual licensed under both
  15. * The Apache 2.0 License
  16. http://www.apache.org/licenses/LICENSE-2.0.html
  17. and
  18. * The Eclipse Public 1.0 License
  19. http://www.eclipse.org/legal/epl-v10.html
  20. Jetty may be distributed under either license.
  21. ------
  22. Eclipse
  23. The following artifacts are EPL.
  24. * org.eclipse.jetty.orbit:org.eclipse.jdt.core
  25. The following artifacts are EPL and ASL2.
  26. * org.eclipse.jetty.orbit:javax.security.auth.message
  27. The following artifacts are EPL and CDDL 1.0.
  28. * org.eclipse.jetty.orbit:javax.mail.glassfish
  29. ------
  30. presto-jdbc
  31. The code for the t-digest was originally authored by Ted Dunning
  32. Adrien Grand contributed the heart of the AVLTreeDigest (https://github.com/jpountz)
  33. ------
  34. Oracle
  35. The following artifacts are CDDL + GPLv2 with classpath exception.
  36. https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
  37. * javax.servlet:javax.servlet-api
  38. * javax.annotation:javax.annotation-api
  39. * javax.transaction:javax.transaction-api
  40. * javax.websocket:javax.websocket-api
  41. ------
  42. Oracle OpenJDK
  43. If ALPN is used to negotiate HTTP/2 connections, then the following
  44. artifacts may be included in the distribution or downloaded when ALPN
  45. module is selected.
  46. * java.sun.security.ssl
  47. These artifacts replace/modify OpenJDK classes. The modififications
  48. are hosted at github and both modified and original are under GPL v2 with
  49. classpath exceptions.
  50. http://openjdk.java.net/legal/gplv2+ce.html
  51. ------
  52. Apache
  53. The following artifacts are ASL2 licensed.
  54. org.apache.taglibs:taglibs-standard-spec
  55. org.apache.taglibs:taglibs-standard-impl
  56. ------
  57. MortBay
  58. The following artifacts are ASL2 licensed. Based on selected classes from
  59. following Apache Tomcat jars, all ASL2 licensed.
  60. org.mortbay.jasper:apache-jsp
  61. org.apache.tomcat:tomcat-jasper
  62. org.apache.tomcat:tomcat-juli
  63. org.apache.tomcat:tomcat-jsp-api
  64. org.apache.tomcat:tomcat-el-api
  65. org.apache.tomcat:tomcat-jasper-el
  66. org.apache.tomcat:tomcat-api
  67. org.apache.tomcat:tomcat-util-scan
  68. org.apache.tomcat:tomcat-util
  69. ------
  70. Mortbay
  71. The following artifacts are CDDL + GPLv2 with classpath exception.
  72. https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
  73. org.eclipse.jetty.toolchain:jetty-schemas
  74. ------
  75. Assorted
  76. The UnixCrypt.java code implements the one way cryptography used by
  77. Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
  78. modified April 2001 by Iris Van den Broeke, Daniel Deville.
  79. Permission to use, copy, modify and distribute UnixCrypt
  80. for non-commercial or commercial purposes and without fee is
  81. granted provided that the copyright notice appears in all copies.
  82. ========================================================================
  83. Joda Time NOTICE
  84. ========================================================================
  85. =============================================================================
  86. = NOTICE file corresponding to section 4d of the Apache License Version 2.0 =
  87. =============================================================================
  88. This product includes software developed by
  89. Joda.org (https://www.joda.org/).
  90. ========================================================================
  91. Netty NOTICE
  92. ========================================================================
  93. The Netty Project
  94. =================
  95. Please visit the Netty web site for more information:
  96. * http://netty.io/
  97. Copyright 2014 The Netty Project
  98. The Netty Project licenses this file to you under the Apache License,
  99. version 2.0 (the "License"); you may not use this file except in compliance
  100. with the License. You may obtain a copy of the License at:
  101. http://www.apache.org/licenses/LICENSE-2.0
  102. Unless required by applicable law or agreed to in writing, software
  103. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  104. WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  105. License for the specific language governing permissions and limitations
  106. under the License.
  107. Also, please refer to each LICENSE.<component>.txt file, which is located in
  108. the 'license' directory of the distribution file, for the license terms of the
  109. components that this product depends on.
  110. -------------------------------------------------------------------------------
  111. This product contains the extensions to Java Collections Framework which has
  112. been derived from the works by JSR-166 EG, Doug Lea, and Jason T. Greene:
  113. * LICENSE:
  114. * license/LICENSE.jsr166y.txt (Public Domain)
  115. * HOMEPAGE:
  116. * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/
  117. * http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbosscache/experimental/jsr166/
  118. This product contains a modified version of Robert Harder's Public Domain
  119. Base64 Encoder and Decoder, which can be obtained at:
  120. * LICENSE:
  121. * license/LICENSE.base64.txt (Public Domain)
  122. * HOMEPAGE:
  123. * http://iharder.sourceforge.net/current/java/base64/
  124. This product contains a modified portion of 'Webbit', an event based
  125. WebSocket and HTTP server, which can be obtained at:
  126. * LICENSE:
  127. * license/LICENSE.webbit.txt (BSD License)
  128. * HOMEPAGE:
  129. * https://github.com/joewalnes/webbit
  130. This product contains a modified portion of 'SLF4J', a simple logging
  131. facade for Java, which can be obtained at:
  132. * LICENSE:
  133. * license/LICENSE.slf4j.txt (MIT License)
  134. * HOMEPAGE:
  135. * http://www.slf4j.org/
  136. This product contains a modified portion of 'Apache Harmony', an open source
  137. Java SE, which can be obtained at:
  138. * NOTICE:
  139. * license/NOTICE.harmony.txt
  140. * LICENSE:
  141. * license/LICENSE.harmony.txt (Apache License 2.0)
  142. * HOMEPAGE:
  143. * http://archive.apache.org/dist/harmony/
  144. This product contains a modified portion of 'jbzip2', a Java bzip2 compression
  145. and decompression library written by Matthew J. Francis. It can be obtained at:
  146. * LICENSE:
  147. * license/LICENSE.jbzip2.txt (MIT License)
  148. * HOMEPAGE:
  149. * https://code.google.com/p/jbzip2/
  150. This product contains a modified portion of 'libdivsufsort', a C API library to construct
  151. the suffix array and the Burrows-Wheeler transformed string for any input string of
  152. a constant-size alphabet written by Yuta Mori. It can be obtained at:
  153. * LICENSE:
  154. * license/LICENSE.libdivsufsort.txt (MIT License)
  155. * HOMEPAGE:
  156. * https://github.com/y-256/libdivsufsort
  157. This product contains a modified portion of Nitsan Wakart's 'JCTools', Java Concurrency Tools for the JVM,
  158. which can be obtained at:
  159. * LICENSE:
  160. * license/LICENSE.jctools.txt (ASL2 License)
  161. * HOMEPAGE:
  162. * https://github.com/JCTools/JCTools
  163. This product optionally depends on 'JZlib', a re-implementation of zlib in
  164. pure Java, which can be obtained at:
  165. * LICENSE:
  166. * license/LICENSE.jzlib.txt (BSD style License)
  167. * HOMEPAGE:
  168. * http://www.jcraft.com/jzlib/
  169. This product optionally depends on 'Compress-LZF', a Java library for encoding and
  170. decoding data in LZF format, written by Tatu Saloranta. It can be obtained at:
  171. * LICENSE:
  172. * license/LICENSE.compress-lzf.txt (Apache License 2.0)
  173. * HOMEPAGE:
  174. * https://github.com/ning/compress
  175. This product optionally depends on 'lz4', a LZ4 Java compression
  176. and decompression library written by Adrien Grand. It can be obtained at:
  177. * LICENSE:
  178. * license/LICENSE.lz4.txt (Apache License 2.0)
  179. * HOMEPAGE:
  180. * https://github.com/jpountz/lz4-java
  181. This product optionally depends on 'lzma-java', a LZMA Java compression
  182. and decompression library, which can be obtained at:
  183. * LICENSE:
  184. * license/LICENSE.lzma-java.txt (Apache License 2.0)
  185. * HOMEPAGE:
  186. * https://github.com/jponge/lzma-java
  187. This product contains a modified portion of 'jfastlz', a Java port of FastLZ compression
  188. and decompression library written by William Kinney. It can be obtained at:
  189. * LICENSE:
  190. * license/LICENSE.jfastlz.txt (MIT License)
  191. * HOMEPAGE:
  192. * https://code.google.com/p/jfastlz/
  193. This product contains a modified portion of and optionally depends on 'Protocol Buffers', Google's data
  194. interchange format, which can be obtained at:
  195. * LICENSE:
  196. * license/LICENSE.protobuf.txt (New BSD License)
  197. * HOMEPAGE:
  198. * https://github.com/google/protobuf
  199. This product optionally depends on 'Bouncy Castle Crypto APIs' to generate
  200. a temporary self-signed X.509 certificate when the JVM does not provide the
  201. equivalent functionality. It can be obtained at:
  202. * LICENSE:
  203. * license/LICENSE.bouncycastle.txt (MIT License)
  204. * HOMEPAGE:
  205. * http://www.bouncycastle.org/
  206. This product optionally depends on 'Snappy', a compression library produced
  207. by Google Inc, which can be obtained at:
  208. * LICENSE:
  209. * license/LICENSE.snappy.txt (New BSD License)
  210. * HOMEPAGE:
  211. * https://github.com/google/snappy
  212. This product optionally depends on 'JBoss Marshalling', an alternative Java
  213. serialization API, which can be obtained at:
  214. * LICENSE:
  215. * license/LICENSE.jboss-marshalling.txt (GNU LGPL 2.1)
  216. * HOMEPAGE:
  217. * http://www.jboss.org/jbossmarshalling
  218. This product optionally depends on 'Caliper', Google's micro-
  219. benchmarking framework, which can be obtained at:
  220. * LICENSE:
  221. * license/LICENSE.caliper.txt (Apache License 2.0)
  222. * HOMEPAGE:
  223. * https://github.com/google/caliper
  224. This product optionally depends on 'Apache Commons Logging', a logging
  225. framework, which can be obtained at:
  226. * LICENSE:
  227. * license/LICENSE.commons-logging.txt (Apache License 2.0)
  228. * HOMEPAGE:
  229. * http://commons.apache.org/logging/
  230. This product optionally depends on 'Apache Log4J', a logging framework, which
  231. can be obtained at:
  232. * LICENSE:
  233. * license/LICENSE.log4j.txt (Apache License 2.0)
  234. * HOMEPAGE:
  235. * http://logging.apache.org/log4j/
  236. This product contains a modified version of 'HPACK', a Java implementation of
  237. the HTTP/2 HPACK algorithm written by Twitter. It can be obtained at:
  238. * LICENSE:
  239. * license/LICENSE.hpack.txt (Apache License 2.0)
  240. * HOMEPAGE:
  241. * https://github.com/twitter/hpack
  242. This product contains a modified portion of 'Apache Commons Lang', a Java library
  243. provides utilities for the java.lang API, which can be obtained at:
  244. * LICENSE:
  245. * license/LICENSE.commons-lang.txt (Apache License 2.0)
  246. * HOMEPAGE:
  247. * https://commons.apache.org/proper/commons-lang/
  248. This product contains the Maven wrapper scripts from 'Maven Wrapper', that provides an easy way to ensure a user has everything necessary to run the Maven build.
  249. * LICENSE:
  250. * license/LICENSE.mvn-wrapper.txt (Apache License 2.0)
  251. * HOMEPAGE:
  252. * https://github.com/takari/maven-wrapper
  253. ========================================================================
  254. Spring Framework NOTICE
  255. ========================================================================
  256. Spring Framework 5.3.22
  257. Copyright (c) 2002-2022 Pivotal, Inc.
  258. This product is licensed to you under the Apache License, Version 2.0
  259. (the "License"). You may not use this product except in compliance with
  260. the License.
  261. This product may include a number of subcomponents with separate
  262. copyright notices and license terms. Your use of the source code for
  263. these subcomponents is subject to the terms and conditions of the
  264. subcomponent's license, as noted in the license.txt file.
  265. ========================================================================
  266. Apache commons codec NOTICE
  267. ========================================================================
  268. Apache Commons Codec
  269. Copyright 2002-2011 The Apache Software Foundation
  270. This product includes software developed by
  271. The Apache Software Foundation (http://www.apache.org/).
  272. --------------------------------------------------------------------------------
  273. src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java contains
  274. test data from http://aspell.sourceforge.net/test/batch0.tab.
  275. Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org). Verbatim copying
  276. and distribution of this entire article is permitted in any medium,
  277. provided this notice is preserved.
  278. --------------------------------------------------------------------------------
  279. ========================================================================
  280. Apache commons lang NOTICE
  281. ========================================================================
  282. Apache Commons Lang
  283. Copyright 2001-2016 The Apache Software Foundation
  284. This product includes software developed at
  285. The Apache Software Foundation (http://www.apache.org/).
  286. This product includes software from the Spring Framework,
  287. under the Apache License 2.0 (see: StringUtils.containsWhitespace())
  288. ========================================================================
  289. Apache ZooKeeper NOTICE
  290. ========================================================================
  291. Apache ZooKeeper
  292. Copyright 2009-2014 The Apache Software Foundation
  293. This product includes software developed at
  294. The Apache Software Foundation (http://www.apache.org/).
  295. ========================================================================
  296. Apache Curator NOTICE
  297. ========================================================================
  298. Apache Curator
  299. Copyright 2011-2017 The Apache Software Foundation
  300. This product includes software developed at
  301. The Apache Software Foundation (http://www.apache.org/).
  302. =========================================================================
  303. NOTICE file corresponding to section 4(d) of the Apache License,
  304. Version 2.0, in this case for the Apache Xerces Java distribution.
  305. =========================================================================
  306. Apache Xerces Java
  307. Copyright 1999-2007 The Apache Software Foundation
  308. This product includes software developed at
  309. The Apache Software Foundation (http://www.apache.org/).
  310. Portions of this software were originally based on the following:
  311. - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
  312. - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
  313. - voluntary contributions made by Paul Eng on behalf of the
  314. Apache Software Foundation that were originally developed at iClick, Inc.,
  315. software copyright (c) 1999.
  316. limitations under the License.
  317. ========================================================================
  318. MyBatis Spring NOTICE
  319. ========================================================================
  320. MyBatis Spring
  321. Copyright 2010-2013
  322. This product includes software developed by
  323. The MyBatis Team (http://www.mybatis.org/).
  324. iBATIS
  325. This product includes software developed by
  326. The Apache Software Foundation (http://www.apache.org/).
  327. Copyright 2010 The Apache Software Foundation
  328. Licensed under the Apache License, Version 2.0 (the "License");
  329. you may not use this file except in compliance with the License.
  330. You may obtain a copy of the License at
  331. http://www.apache.org/licenses/LICENSE-2.0
  332. Unless required by applicable law or agreed to in writing, software
  333. distributed under the License is distributed on an "AS IS" BASIS,
  334. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  335. See the License for the specific language governing permissions and
  336. limitations under the License.
  337. Spring Framework
  338. All Spring projects are licensed under the terms of the Apache License, Version 2.0
  339. Copyright 2002-2010 the original author or authors
  340. Licensed under the Apache License, Version 2.0 (the "License");
  341. you may not use this file except in compliance with the License.
  342. You may obtain a copy of the License at
  343. http://www.apache.org/licenses/LICENSE-2.0
  344. Unless required by applicable law or agreed to in writing, software
  345. distributed under the License is distributed on an "AS IS" BASIS,
  346. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  347. See the License for the specific language governing permissions and
  348. limitations under the License.
  349. ========================================================================
  350. Apache Parquet MR NOTICE
  351. ========================================================================
  352. Apache Parquet MR (Incubating)
  353. Copyright 2014 The Apache Software Foundation
  354. This product includes software developed at
  355. The Apache Software Foundation (http://www.apache.org/).
  356. --------------------------------------------------------------------------------
  357. This product includes parquet-tools, initially developed at ARRIS, Inc. with
  358. the following copyright notice:
  359. Copyright 2013 ARRIS, Inc.
  360. Licensed under the Apache License, Version 2.0 (the "License");
  361. you may not use this file except in compliance with the License.
  362. You may obtain a copy of the License at
  363. http://www.apache.org/licenses/LICENSE-2.0
  364. Unless required by applicable law or agreed to in writing, software
  365. distributed under the License is distributed on an "AS IS" BASIS,
  366. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  367. See the License for the specific language governing permissions and
  368. limitations under the License.
  369. --------------------------------------------------------------------------------
  370. This product includes parquet-protobuf, initially developed by Lukas Nalezenc
  371. with the following copyright notice:
  372. Copyright 2013 Lukas Nalezenec.
  373. Licensed under the Apache License, Version 2.0 (the "License");
  374. you may not use this file except in compliance with the License.
  375. You may obtain a copy of the License at
  376. http://www.apache.org/licenses/LICENSE-2.0
  377. Unless required by applicable law or agreed to in writing, software
  378. distributed under the License is distributed on an "AS IS" BASIS,
  379. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  380. See the License for the specific language governing permissions and
  381. limitations under the License.
  382. ========================================================================
  383. Apache POI
  384. Copyright 2003-2020 The Apache Software Foundation
  385. This product includes software developed at
  386. The Apache Software Foundation (https://www.apache.org/).
  387. This product contains parts that were originally based on software from BEA.
  388. Copyright (c) 2000-2003, BEA Systems, <http://www.bea.com/> (dead link),
  389. which was acquired by Oracle Corporation in 2008.
  390. <http://www.oracle.com/us/corporate/Acquisitions/bea/index.html>
  391. <https://en.wikipedia.org/wiki/BEA_Systems>
  392. This product contains W3C XML Schema documents. Copyright 2001-2003 (c)
  393. World Wide Web Consortium (Massachusetts Institute of Technology, European
  394. Research Consortium for Informatics and Mathematics, Keio University)
  395. This product contains the chunks_parse_cmds.tbl file from the vsdump program.
  396. Copyright (C) 2006-2007 Valek Filippov (frob@df.ru)
  397. This product contains parts of the eID Applet project
  398. <http://eid-applet.googlecode.com> and <https://github.com/e-Contract/eid-applet>.
  399. Copyright (c) 2009-2014
  400. FedICT (federal ICT department of Belgium), e-Contract.be BVBA (https://www.e-contract.be),
  401. Bart Hanssens from FedICT
  402. ========================================================================
  403. snappy NOTICE
  404. ========================================================================
  405. This product includes software developed by Google
  406. Snappy: http://code.google.com/p/snappy/ (New BSD License)
  407. This library containd statically linked libstdc++. This inclusion is allowed by
  408. "GCC RUntime Library Exception"
  409. http://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
  410. == Contributors ==
  411. * Tatu Saloranta
  412. * Providing benchmark suite
  413. * Alec Wysoker
  414. * Performance and memory usage improvement
  415. ========================================================================
  416. Alibaba Druid NOTICE
  417. ========================================================================
  418. Alibaba Druid
  419. Copyright 1999-2021 Alibaba Group Holding Ltd.
  420. ========================================================================
  421. AWS SDK for Java NOTICE
  422. ========================================================================
  423. AWS SDK for Java
  424. Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  425. This product includes software developed by
  426. Amazon Technologies, Inc (http://www.amazon.com/).
  427. **********************
  428. THIRD PARTY COMPONENTS
  429. **********************
  430. This software includes third party software subject to the following copyrights:
  431. - XML parsing and utility functions from JetS3t - Copyright 2006-2009 James Murty.
  432. - JSON parsing and utility functions from JSON.org - Copyright 2002 JSON.org.
  433. The licenses for these third party components are included in LICENSE.txt
  434. ========================================================================
  435. Commons Logging NOTICE
  436. ========================================================================
  437. // ------------------------------------------------------------------
  438. // NOTICE file corresponding to the section 4d of The Apache License,
  439. // Version 2.0, in this case for Commons Logging
  440. // ------------------------------------------------------------------
  441. Commons Logging
  442. Copyright 2001-2007 The Apache Software Foundation
  443. This product includes/uses software(s) developed by 'an unknown organization'
  444. - Unnamed - avalon-framework:avalon-framework:jar:4.1.3
  445. - Unnamed - log4j:log4j:jar:1.2.12
  446. - Unnamed - logkit:logkit:jar:1.0.1
  447. ========================================================================
  448. Apache Commons Math NOTICE
  449. ========================================================================
  450. Apache Commons Math
  451. Copyright 2001-2012 The Apache Software Foundation
  452. This product includes software developed by
  453. The Apache Software Foundation (http://www.apache.org/).
  454. ===============================================================================
  455. The BracketFinder (package org.apache.commons.math3.optimization.univariate)
  456. and PowellOptimizer (package org.apache.commons.math3.optimization.general)
  457. classes are based on the Python code in module "optimize.py" (version 0.5)
  458. developed by Travis E. Oliphant for the SciPy library (http://www.scipy.org/)
  459. Copyright © 2003-2009 SciPy Developers.
  460. ===============================================================================
  461. The LinearConstraint, LinearObjectiveFunction, LinearOptimizer,
  462. RelationShip, SimplexSolver and SimplexTableau classes in package
  463. org.apache.commons.math3.optimization.linear include software developed by
  464. Benjamin McCann (http://www.benmccann.com) and distributed with
  465. the following copyright: Copyright 2009 Google Inc.
  466. ===============================================================================
  467. This product includes software developed by the
  468. University of Chicago, as Operator of Argonne National
  469. Laboratory.
  470. The LevenbergMarquardtOptimizer class in package
  471. org.apache.commons.math3.optimization.general includes software
  472. translated from the lmder, lmpar and qrsolv Fortran routines
  473. from the Minpack package
  474. Minpack Copyright Notice (1999) University of Chicago. All rights reserved
  475. ===============================================================================
  476. The GraggBulirschStoerIntegrator class in package
  477. org.apache.commons.math3.ode.nonstiff includes software translated
  478. from the odex Fortran routine developed by E. Hairer and G. Wanner.
  479. Original source copyright:
  480. Copyright (c) 2004, Ernst Hairer
  481. ===============================================================================
  482. The EigenDecompositionImpl class in package
  483. org.apache.commons.math3.linear includes software translated
  484. from some LAPACK Fortran routines. Original source copyright:
  485. Copyright (c) 1992-2008 The University of Tennessee. All rights reserved.
  486. ===============================================================================
  487. The MersenneTwister class in package org.apache.commons.math3.random
  488. includes software translated from the 2002-01-26 version of
  489. the Mersenne-Twister generator written in C by Makoto Matsumoto and Takuji
  490. Nishimura. Original source copyright:
  491. Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
  492. All rights reserved
  493. ===============================================================================
  494. The LocalizedFormatsTest class in the unit tests is an adapted version of
  495. the OrekitMessagesTest class from the orekit library distributed under the
  496. terms of the Apache 2 licence. Original source copyright:
  497. Copyright 2010 CS Systèmes d'Information
  498. ===============================================================================
  499. The HermiteInterpolator class and its corresponding test have been imported from
  500. the orekit library distributed under the terms of the Apache 2 licence. Original
  501. source copyright:
  502. Copyright 2010-2012 CS Systèmes d'Information
  503. ===============================================================================
  504. The creation of the package "o.a.c.m.analysis.integration.gauss" was inspired
  505. by an original code donated by Sébastien Brisard.
  506. ===============================================================================
  507. The complete text of licenses and disclaimers associated with the the original
  508. sources enumerated above at the time of code translation are in the LICENSE.txt
  509. file.
  510. ========================================================================
  511. Apache Derby NOTICE
  512. ===========================================================================
  513. =========================================================================
  514. == NOTICE file corresponding to section 4(d) of the Apache License,
  515. == Version 2.0, in this case for the Apache Derby distribution.
  516. ==
  517. == DO NOT EDIT THIS FILE DIRECTLY. IT IS GENERATED
  518. == BY THE buildnotice TARGET IN THE TOP LEVEL build.xml FILE.
  519. ==
  520. =========================================================================
  521. Apache Derby
  522. Copyright 2004-2018 The Apache Software Foundation
  523. This product includes software developed by
  524. The Apache Software Foundation (http://www.apache.org/).
  525. =========================================================================
  526. Portions of Derby were originally developed by
  527. International Business Machines Corporation and are
  528. licensed to the Apache Software Foundation under the
  529. "Software Grant and Corporate Contribution License Agreement",
  530. informally known as the "Derby CLA".
  531. The following copyright notice(s) were affixed to portions of the code
  532. with which this file is now or was at one time distributed
  533. and are placed here unaltered.
  534. (C) Copyright 1997,2004 International Business Machines Corporation. All rights reserved.
  535. (C) Copyright IBM Corp. 2003.
  536. =========================================================================
  537. The portion of the functionTests under 'nist' was originally
  538. developed by the National Institute of Standards and Technology (NIST),
  539. an agency of the United States Department of Commerce, and adapted by
  540. International Business Machines Corporation in accordance with the NIST
  541. Software Acknowledgment and Redistribution document at
  542. http://www.itl.nist.gov/div897/ctg/sql_form.htm
  543. =========================================================================
  544. The Derby build relies on source files supplied by the Apache Felix
  545. project. The following notice covers the Felix files:
  546. Apache Felix Main
  547. Copyright 2008 The Apache Software Foundation
  548. I. Included Software
  549. This product includes software developed at
  550. The Apache Software Foundation (http://www.apache.org/).
  551. Licensed under the Apache License 2.0.
  552. This product includes software developed at
  553. The OSGi Alliance (http://www.osgi.org/).
  554. Copyright (c) OSGi Alliance (2000, 2007).
  555. Licensed under the Apache License 2.0.
  556. This product includes software from http://kxml.sourceforge.net.
  557. Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany.
  558. Licensed under BSD License.
  559. II. Used Software
  560. This product uses software developed at
  561. The OSGi Alliance (http://www.osgi.org/).
  562. Copyright (c) OSGi Alliance (2000, 2007).
  563. Licensed under the Apache License 2.0.
  564. III. License Summary
  565. - Apache License 2.0
  566. - BSD License
  567. =========================================================================
  568. The Derby build relies on jar files supplied by the Apache Lucene
  569. project. The following notice covers the Lucene files:
  570. Apache Lucene
  571. Copyright 2013 The Apache Software Foundation
  572. This product includes software developed by
  573. The Apache Software Foundation (http://www.apache.org/).
  574. Includes software from other Apache Software Foundation projects,
  575. including, but not limited to:
  576. - Apache Ant
  577. - Apache Jakarta Regexp
  578. - Apache Commons
  579. - Apache Xerces
  580. ICU4J, (under analysis/icu) is licensed under an MIT styles license
  581. and Copyright (c) 1995-2008 International Business Machines Corporation and others
  582. Some data files (under analysis/icu/src/data) are derived from Unicode data such
  583. as the Unicode Character Database. See http://unicode.org/copyright.html for more
  584. details.
  585. Brics Automaton (under core/src/java/org/apache/lucene/util/automaton) is
  586. BSD-licensed, created by Anders Møller. See http://www.brics.dk/automaton/
  587. The levenshtein automata tables (under core/src/java/org/apache/lucene/util/automaton) were
  588. automatically generated with the moman/finenight FSA library, created by
  589. Jean-Philippe Barrette-LaPierre. This library is available under an MIT license,
  590. see http://sites.google.com/site/rrettesite/moman and
  591. http://bitbucket.org/jpbarrette/moman/overview/
  592. The class org.apache.lucene.util.WeakIdentityMap was derived from
  593. the Apache CXF project and is Apache License 2.0.
  594. The Google Code Prettify is Apache License 2.0.
  595. See http://code.google.com/p/google-code-prettify/
  596. JUnit (junit-4.10) is licensed under the Common Public License v. 1.0
  597. See http://junit.sourceforge.net/cpl-v10.html
  598. This product includes code (JaspellTernarySearchTrie) from Java Spelling Checkin
  599. g Package (jaspell): http://jaspell.sourceforge.net/
  600. License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
  601. The snowball stemmers in
  602. analysis/common/src/java/net/sf/snowball
  603. were developed by Martin Porter and Richard Boulton.
  604. The snowball stopword lists in
  605. analysis/common/src/resources/org/apache/lucene/analysis/snowball
  606. were developed by Martin Porter and Richard Boulton.
  607. The full snowball package is available from
  608. http://snowball.tartarus.org/
  609. The KStem stemmer in
  610. analysis/common/src/org/apache/lucene/analysis/en
  611. was developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)
  612. under the BSD-license.
  613. The Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (common) come with a default
  614. stopword list that is BSD-licensed created by Jacques Savoy. These files reside in:
  615. analysis/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,
  616. analysis/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,
  617. analysis/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,
  618. analysis/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,
  619. analysis/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt
  620. See http://members.unine.ch/jacques.savoy/clef/index.html.
  621. The German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers
  622. (common) are based on BSD-licensed reference implementations created by Jacques Savoy and
  623. Ljiljana Dolamic. These files reside in:
  624. analysis/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java
  625. analysis/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java
  626. analysis/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java
  627. analysis/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java
  628. analysis/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java
  629. analysis/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java
  630. analysis/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java
  631. analysis/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java
  632. analysis/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java
  633. analysis/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java
  634. analysis/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java
  635. The Stempel analyzer (stempel) includes BSD-licensed software developed
  636. by the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,
  637. and Edmond Nolan.
  638. The Polish analyzer (stempel) comes with a default
  639. stopword list that is BSD-licensed created by the Carrot2 project. The file resides
  640. in stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.
  641. See http://project.carrot2.org/license.html.
  642. The SmartChineseAnalyzer source code (smartcn) was
  643. provided by Xiaoping Gao and copyright 2009 by www.imdict.net.
  644. WordBreakTestUnicode_*.java (under modules/analysis/common/src/test/)
  645. is derived from Unicode data such as the Unicode Character Database.
  646. See http://unicode.org/copyright.html for more details.
  647. The Morfologik analyzer (morfologik) includes BSD-licensed software
  648. developed by Dawid Weiss and Marcin Miłkowski (http://morfologik.blogspot.com/).
  649. Morfologik uses data from Polish ispell/myspell dictionary
  650. (http://www.sjp.pl/slownik/en/) licenced on the terms of (inter alia)
  651. LGPL and Creative Commons ShareAlike.
  652. Morfologic includes data from BSD-licensed dictionary of Polish (SGJP)
  653. (http://sgjp.pl/morfeusz/)
  654. Servlet-api.jar and javax.servlet-*.jar are under the CDDL license, the original
  655. source code for this can be found at http://www.eclipse.org/jetty/downloads.php
  656. ===========================================================================
  657. Kuromoji Japanese Morphological Analyzer - Apache Lucene Integration
  658. ===========================================================================
  659. This software includes a binary and/or source version of data from
  660. mecab-ipadic-2.7.0-20070801
  661. which can be obtained from
  662. http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz
  663. or
  664. http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz
  665. ===========================================================================
  666. mecab-ipadic-2.7.0-20070801 Notice
  667. ===========================================================================
  668. Nara Institute of Science and Technology (NAIST),
  669. the copyright holders, disclaims all warranties with regard to this
  670. software, including all implied warranties of merchantability and
  671. fitness, in no event shall NAIST be liable for
  672. any special, indirect or consequential damages or any damages
  673. whatsoever resulting from loss of use, data or profits, whether in an
  674. action of contract, negligence or other tortuous action, arising out
  675. of or in connection with the use or performance of this software.
  676. A large portion of the dictionary entries
  677. originate from ICOT Free Software. The following conditions for ICOT
  678. Free Software applies to the current dictionary as well.
  679. Each User may also freely distribute the Program, whether in its
  680. original form or modified, to any third party or parties, PROVIDED
  681. that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
  682. on, or be attached to, the Program, which is distributed substantially
  683. in the same form as set out herein and that such intended
  684. distribution, if actually made, will neither violate or otherwise
  685. contravene any of the laws and regulations of the countries having
  686. jurisdiction over the User or the intended distribution itself.
  687. NO WARRANTY
  688. The program was produced on an experimental basis in the course of the
  689. research and development conducted during the project and is provided
  690. to users as so produced on an experimental basis. Accordingly, the
  691. program is provided without any warranty whatsoever, whether express,
  692. implied, statutory or otherwise. The term "warranty" used herein
  693. includes, but is not limited to, any warranty of the quality,
  694. performance, merchantability and fitness for a particular purpose of
  695. the program and the nonexistence of any infringement or violation of
  696. any right of any third party.
  697. Each user of the program will agree and understand, and be deemed to
  698. have agreed and understood, that there is no warranty whatsoever for
  699. the program and, accordingly, the entire risk arising from or
  700. otherwise connected with the program is assumed by the user.
  701. Therefore, neither ICOT, the copyright holder, or any other
  702. organization that participated in or was otherwise related to the
  703. development of the program and their respective officials, directors,
  704. officers and other employees shall be held liable for any and all
  705. damages, including, without limitation, general, special, incidental
  706. and consequential damages, arising out of or otherwise in connection
  707. with the use or inability to use the program or any product, material
  708. or result produced or otherwise obtained by using the program,
  709. regardless of whether they have been advised of, or otherwise had
  710. knowledge of, the possibility of such damages at any time during the
  711. project or thereafter. Each user will be deemed to have agreed to the
  712. foregoing by his or her commencement of use of the program. The term
  713. "use" as used herein includes, but is not limited to, the use,
  714. modification, copying and distribution of the program and the
  715. production of secondary products from the program.
  716. In the case where the program, whether in its original form or
  717. modified, was distributed or delivered to or received by a user from
  718. any person, organization or entity other than ICOT, unless it makes or
  719. grants independently of ICOT any specific warranty to the user in
  720. writing, such person, organization or entity, will also be exempted
  721. from and not be held liable to the user for any such damages as noted
  722. above as far as the program is concerned.
  723. =========================================================================
  724. The Derby build relies on a jar file supplied by the JSON Simple
  725. project, hosted at https://code.google.com/p/json-simple/.
  726. The JSON simple jar file is licensed under the Apache 2.0 License.
  727. No other notice covers that jar file.
  728. =========================================================================
  729. Apache Httpcomponents core NOTICE
  730. =========================================================================
  731. Apache HttpComponents Core
  732. Copyright 2005-2015 The Apache Software Foundation
  733. This product includes software developed at
  734. The Apache Software Foundation (http://www.apache.org/).
  735. This project contains annotations derived from JCIP-ANNOTATIONS
  736. Copyright (c) 2005 Brian Goetz and Tim Peierls. See http://www.jcip.net
  737. =========================================================================
  738. Jackson NOTICE
  739. =========================================================================
  740. # Jackson JSON processor
  741. Jackson is a high-performance, Free/Open Source JSON processing library.
  742. It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has
  743. been in development since 2007.
  744. It is currently developed by a community of developers, as well as supported
  745. commercially by FasterXML.com.
  746. ## Licensing
  747. Jackson core and extension components may be licensed under different licenses.
  748. To find the details that apply to this artifact see the accompanying LICENSE file.
  749. For more information, including possible other licensing options, contact
  750. FasterXML.com (http://fasterxml.com).
  751. ## Credits
  752. A list of contributors may be found from CREDITS file, which is included
  753. in some artifacts (usually source distributions); but is always available
  754. from the source code management (SCM) system project uses.
  755. =========================================================================
  756. Junit4 NOTICE
  757. =========================================================================
  758. ===================================================================================
  759. == Notices and attributions required by libraries that the project depends on ==
  760. ===================================================================================
  761. The JUnit depends on Java Hamcrest (http://hamcrest.org/JavaHamcrest/).
  762. =========================================================================
  763. Mybatis NOTICE
  764. =========================================================================
  765. iBATIS
  766. This product includes software developed by
  767. The Apache Software Foundation (http://www.apache.org/).
  768. Copyright 2010 The Apache Software Foundation
  769. Licensed under the Apache License, Version 2.0 (the "License");
  770. you may not use this file except in compliance with the License.
  771. You may obtain a copy of the License at
  772. http://www.apache.org/licenses/LICENSE-2.0
  773. Unless required by applicable law or agreed to in writing, software
  774. distributed under the License is distributed on an "AS IS" BASIS,
  775. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  776. See the License for the specific language governing permissions and
  777. limitations under the License.
  778. OGNL
  779. //--------------------------------------------------------------------------
  780. // Copyright (c) 2004, Drew Davidson and Luke Blanshard
  781. // All rights reserved.
  782. //
  783. // Redistribution and use in source and binary forms, with or without
  784. // modification, are permitted provided that the following conditions are
  785. // met:
  786. //
  787. // Redistributions of source code must retain the above copyright notice,
  788. // this list of conditions and the following disclaimer.
  789. // Redistributions in binary form must reproduce the above copyright
  790. // notice, this list of conditions and the following disclaimer in the
  791. // documentation and/or other materials provided with the distribution.
  792. // Neither the name of the Drew Davidson nor the names of its contributors
  793. // may be used to endorse or promote products derived from this software
  794. // without specific prior written permission.
  795. //
  796. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  797. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  798. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  799. // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  800. // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  801. // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  802. // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  803. // OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  804. // AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  805. // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  806. // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  807. // DAMAGE.
  808. //--------------------------------------------------------------------------
  809. Refactored SqlBuilder class (SQL, AbstractSQL)
  810. This product includes software developed by
  811. Adam Gent (https://gist.github.com/3650165)
  812. Copyright 2010 Adam Gent
  813. Licensed under the Apache License, Version 2.0 (the "License");
  814. you may not use this file except in compliance with the License.
  815. You may obtain a copy of the License at
  816. http://www.apache.org/licenses/LICENSE-2.0
  817. Unless required by applicable law or agreed to in writing, software
  818. distributed under the License is distributed on an "AS IS" BASIS,
  819. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  820. See the License for the specific language governing permissions and
  821. limitations under the License.
  822. =========================================================================
  823. Bonecp NOTICE
  824. =========================================================================
  825. =========================================================================
  826. == NOTICE file corresponding to the section 4 d of ==
  827. == the Apache License, Version 2.0, ==
  828. == in this case for the BoneCP (Java connection pool). ==
  829. =========================================================================
  830. BoneCP
  831. Copyright 2010 Wallace Wadge
  832. This product includes software developed by
  833. Wallace Wadge (http://jolbox.com/).
  834. =========================================================================
  835. Byte Buddy NOTICE
  836. =========================================================================
  837. Copyright 2014 - 2019 Rafael Winterhalter
  838. Licensed under the Apache License, Version 2.0 (the "License");
  839. you may not use this file except in compliance with the License.
  840. You may obtain a copy of the License at
  841. http://www.apache.org/licenses/LICENSE-2.0
  842. Unless required by applicable law or agreed to in writing, software
  843. distributed under the License is distributed on an "AS IS" BASIS,
  844. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  845. See the License for the specific language governing permissions and
  846. limitations under the License.
  847. =========================================================================
  848. Apache Directory Server NOTICE
  849. =========================================================================
  850. ApacheDS
  851. Copyright 2003-2013 The Apache Software Foundation
  852. This product includes software developed at
  853. The Apache Software Foundation (http://www.apache.org/).
  854. Copyright 1998-2008 The OpenLDAP Foundation
  855. All rights reserved.
  856. Redistribution and use in source and binary forms, with or without
  857. modification, are permitted only as authorized by the OpenLDAP
  858. Public License.
  859. A copy of this license is available in the file LICENSE in the
  860. top-level directory of the distribution or, alternatively, at
  861. <http://www.OpenLDAP.org/license.html>.
  862. OpenLDAP is a registered trademark of the OpenLDAP Foundation.
  863. Individual files and/or contributed packages may be copyright by
  864. other parties and/or subject to additional restrictions.
  865. This work is derived from the University of Michigan LDAP v3.3
  866. distribution. Information concerning this software is available
  867. at <http://www.umich.edu/~dirsvcs/ldap/ldap.html>.
  868. This work also contains materials derived from public sources.
  869. Additional information about OpenLDAP can be obtained at
  870. <http://www.openldap.org/>.
  871. ---
  872. Portions Copyright 1998-2008 Kurt D. Zeilenga.
  873. Portions Copyright 1998-2006 Net Boolean Incorporated.
  874. Portions Copyright 2001-2006 IBM Corporation.
  875. All rights reserved.
  876. Redistribution and use in source and binary forms, with or without
  877. modification, are permitted only as authorized by the OpenLDAP
  878. Public License.
  879. ---
  880. Portions Copyright 1999-2007 Howard Y.H. Chu.
  881. Portions Copyright 1999-2007 Symas Corporation.
  882. Portions Copyright 1998-2003 Hallvard B. Furuseth.
  883. Portions Copyright 2007 Gavin Henry
  884. Portions Copyright 2007 Suretec Systems
  885. All rights reserved.
  886. Redistribution and use in source and binary forms, with or without
  887. modification, are permitted provided that this notice is preserved.
  888. The names of the copyright holders may not be used to endorse or
  889. promote products derived from this software without their specific
  890. prior written permission. This software is provided ``as is''
  891. without express or implied warranty.
  892. ---
  893. Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
  894. All rights reserved.
  895. Redistribution and use in source and binary forms are permitted
  896. provided that this notice is preserved and that due credit is given
  897. to the University of Michigan at Ann Arbor. The name of the
  898. University may not be used to endorse or promote products derived
  899. from this software without specific prior written permission. This
  900. software is provided ``as is'' without express or implied warranty.
  901. ---
  902. Portions Copyright (c) 2001-2011 Vladimir Lysyy
  903. Licensed under the Apache License, Version 2.0 (the "License");
  904. you may not use this source code except in compliance with the License.
  905. You may obtain a copy of the License at
  906. http://www.apache.org/licenses/LICENSE-2.0
  907. Unless required by applicable law or agreed to in writing, software
  908. distributed under the License is distributed on an "AS IS" BASIS,
  909. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  910. See the License for the specific language governing permissions and
  911. limitations under the License.
  912. =========================================================================
  913. Apache Logging Log4j2 NOTICE
  914. =========================================================================
  915. Apache Log4j
  916. Copyright 1999-2017 Apache Software Foundation
  917. This product includes software developed at
  918. The Apache Software Foundation (http://www.apache.org/).
  919. ResolverUtil.java
  920. Copyright 2005-2006 Tim Fennell
  921. Dumbster SMTP test server
  922. Copyright 2004 Jason Paul Kitchen
  923. TypeUtil.java
  924. Copyright 2002-2012 Ramnivas Laddad, Juergen Hoeller, Chris Beams
  925. picocli (http://picocli.info)
  926. Copyright 2017 Remko Popma
  927. =========================================================================
  928. Snappy Java NOTICE
  929. =========================================================================
  930. This product includes software developed by Google
  931. Snappy: http://code.google.com/p/snappy/ (New BSD License)
  932. This library containd statically linked libstdc++. This inclusion is allowed by
  933. "GCC RUntime Library Exception"
  934. http://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
  935. == Contributors ==
  936. * Tatu Saloranta
  937. * Providing benchmark suite
  938. * Alec Wysoker
  939. * Performance and memory usage improvement
  940. =========================================================================
  941. Apache Xerces Java NOTICE
  942. =========================================================================
  943. =========================================================================
  944. == NOTICE file corresponding to section 4(d) of the Apache License, ==
  945. == Version 2.0, in this case for the Apache Xerces Java distribution. ==
  946. =========================================================================
  947. Apache Xerces Java
  948. Copyright 1999-2007 The Apache Software Foundation
  949. This product includes software developed at
  950. The Apache Software Foundation (http://www.apache.org/).
  951. Portions of this software were originally based on the following:
  952. - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
  953. - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
  954. - voluntary contributions made by Paul Eng on behalf of the
  955. Apache Software Foundation that were originally developed at iClick, Inc.,
  956. software copyright (c) 1999.
  957. =========================================================================
  958. Jackson XC NOTICE
  959. =========================================================================
  960. This product currently only contains code developed by authors
  961. of specific components, as identified by the source code files;
  962. if such notes are missing files have been created by
  963. Tatu Saloranta.
  964. For additional credits (generally to people who reported problems)
  965. see CREDITS file.
  966. =========================================================================
  967. Jackson Mapper ASL NOTICE
  968. =========================================================================
  969. This product currently only contains code developed by authors
  970. of specific components, as identified by the source code files;
  971. if such notes are missing files have been created by
  972. Tatu Saloranta.
  973. For additional credits (generally to people who reported problems)
  974. see CREDITS file.
  975. =========================================================================
  976. Apache HttpCore NOTICE
  977. =========================================================================
  978. Apache HttpCore
  979. Copyright 2005-2015 The Apache Software Foundation
  980. This product includes software developed at
  981. The Apache Software Foundation (http://www.apache.org/).
  982. This project contains annotations derived from JCIP-ANNOTATIONS
  983. Copyright (c) 2005 Brian Goetz and Tim Peierls. See http://www.jcip.net
  984. =========================================================================
  985. Hadoop NOTICE
  986. =========================================================================
  987. This product includes software developed by The Apache Software
  988. Foundation (http://www.apache.org/).
  989. The binary distribution of this product bundles binaries of
  990. org.iq80.leveldb:leveldb-api (https://github.com/dain/leveldb), which has the
  991. following notices:
  992. * Copyright 2011 Dain Sundstrom <dain@iq80.com>
  993. * Copyright 2011 FuseSource Corp. http://fusesource.com
  994. The binary distribution of this product bundles binaries of
  995. org.fusesource.hawtjni:hawtjni-runtime (https://github.com/fusesource/hawtjni),
  996. which has the following notices:
  997. * This product includes software developed by FuseSource Corp.
  998. http://fusesource.com
  999. * This product includes software developed at
  1000. Progress Software Corporation and/or its subsidiaries or affiliates.
  1001. * This product includes software developed by IBM Corporation and others.
  1002. The binary distribution of this product bundles binaries of
  1003. Gson 2.2.4,
  1004. which has the following notices:
  1005. The Netty Project
  1006. =================
  1007. Please visit the Netty web site for more information:
  1008. * http://netty.io/
  1009. Copyright 2014 The Netty Project
  1010. The Netty Project licenses this file to you under the Apache License,
  1011. version 2.0 (the "License"); you may not use this file except in compliance
  1012. with the License. You may obtain a copy of the License at:
  1013. http://www.apache.org/licenses/LICENSE-2.0
  1014. Unless required by applicable law or agreed to in writing, software
  1015. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  1016. WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  1017. License for the specific language governing permissions and limitations
  1018. under the License.
  1019. Also, please refer to each LICENSE.<component>.txt file, which is located in
  1020. the 'license' directory of the distribution file, for the license terms of the
  1021. components that this product depends on.
  1022. -------------------------------------------------------------------------------
  1023. This product contains the extensions to Java Collections Framework which has
  1024. been derived from the works by JSR-166 EG, Doug Lea, and Jason T. Greene:
  1025. * LICENSE:
  1026. * license/LICENSE.jsr166y.txt (Public Domain)
  1027. * HOMEPAGE:
  1028. * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/
  1029. * http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbosscache/experimental/jsr166/
  1030. This product contains a modified version of Robert Harder's Public Domain
  1031. Base64 Encoder and Decoder, which can be obtained at:
  1032. * LICENSE:
  1033. * license/LICENSE.base64.txt (Public Domain)
  1034. * HOMEPAGE:
  1035. * http://iharder.sourceforge.net/current/java/base64/
  1036. This product contains a modified portion of 'Webbit', an event based
  1037. WebSocket and HTTP server, which can be obtained at:
  1038. * LICENSE:
  1039. * license/LICENSE.webbit.txt (BSD License)
  1040. * HOMEPAGE:
  1041. * https://github.com/joewalnes/webbit
  1042. This product contains a modified portion of 'SLF4J', a simple logging
  1043. facade for Java, which can be obtained at:
  1044. * LICENSE:
  1045. * license/LICENSE.slf4j.txt (MIT License)
  1046. * HOMEPAGE:
  1047. * http://www.slf4j.org/
  1048. This product contains a modified portion of 'ArrayDeque', written by Josh
  1049. Bloch of Google, Inc:
  1050. * LICENSE:
  1051. * license/LICENSE.deque.txt (Public Domain)
  1052. This product contains a modified portion of 'Apache Harmony', an open source
  1053. Java SE, which can be obtained at:
  1054. * LICENSE:
  1055. * license/LICENSE.harmony.txt (Apache License 2.0)
  1056. * HOMEPAGE:
  1057. * http://archive.apache.org/dist/harmony/
  1058. This product contains a modified version of Roland Kuhn's ASL2
  1059. AbstractNodeQueue, which is based on Dmitriy Vyukov's non-intrusive MPSC queue.
  1060. It can be obtained at:
  1061. * LICENSE:
  1062. * license/LICENSE.abstractnodequeue.txt (Public Domain)
  1063. * HOMEPAGE:
  1064. * https://github.com/akka/akka/blob/wip-2.2.3-for-scala-2.11/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java
  1065. This product contains a modified portion of 'jbzip2', a Java bzip2 compression
  1066. and decompression library written by Matthew J. Francis. It can be obtained at:
  1067. * LICENSE:
  1068. * license/LICENSE.jbzip2.txt (MIT License)
  1069. * HOMEPAGE:
  1070. * https://code.google.com/p/jbzip2/
  1071. This product contains a modified portion of 'libdivsufsort', a C API library to construct
  1072. the suffix array and the Burrows-Wheeler transformed string for any input string of
  1073. a constant-size alphabet written by Yuta Mori. It can be obtained at:
  1074. * LICENSE:
  1075. * license/LICENSE.libdivsufsort.txt (MIT License)
  1076. * HOMEPAGE:
  1077. * https://code.google.com/p/libdivsufsort/
  1078. This product contains a modified portion of Nitsan Wakart's 'JCTools', Java Concurrency Tools for the JVM,
  1079. which can be obtained at:
  1080. * LICENSE:
  1081. * license/LICENSE.jctools.txt (ASL2 License)
  1082. * HOMEPAGE:
  1083. * https://github.com/JCTools/JCTools
  1084. This product optionally depends on 'JZlib', a re-implementation of zlib in
  1085. pure Java, which can be obtained at:
  1086. * LICENSE:
  1087. * license/LICENSE.jzlib.txt (BSD style License)
  1088. * HOMEPAGE:
  1089. * http://www.jcraft.com/jzlib/
  1090. This product optionally depends on 'Compress-LZF', a Java library for encoding and
  1091. decoding data in LZF format, written by Tatu Saloranta. It can be obtained at:
  1092. * LICENSE:
  1093. * license/LICENSE.compress-lzf.txt (Apache License 2.0)
  1094. * HOMEPAGE:
  1095. * https://github.com/ning/compress
  1096. This product optionally depends on 'lz4', a LZ4 Java compression
  1097. and decompression library written by Adrien Grand. It can be obtained at:
  1098. * LICENSE:
  1099. * license/LICENSE.lz4.txt (Apache License 2.0)
  1100. * HOMEPAGE:
  1101. * https://github.com/jpountz/lz4-java
  1102. This product optionally depends on 'lzma-java', a LZMA Java compression
  1103. and decompression library, which can be obtained at:
  1104. * LICENSE:
  1105. * license/LICENSE.lzma-java.txt (Apache License 2.0)
  1106. * HOMEPAGE:
  1107. * https://github.com/jponge/lzma-java
  1108. This product contains a modified portion of 'jfastlz', a Java port of FastLZ compression
  1109. and decompression library written by William Kinney. It can be obtained at:
  1110. * LICENSE:
  1111. * license/LICENSE.jfastlz.txt (MIT License)
  1112. * HOMEPAGE:
  1113. * https://code.google.com/p/jfastlz/
  1114. This product contains a modified portion of and optionally depends on 'Protocol Buffers', Google's data
  1115. interchange format, which can be obtained at:
  1116. * LICENSE:
  1117. * license/LICENSE.protobuf.txt (New BSD License)
  1118. * HOMEPAGE:
  1119. * http://code.google.com/p/protobuf/
  1120. This product optionally depends on 'Bouncy Castle Crypto APIs' to generate
  1121. a temporary self-signed X.509 certificate when the JVM does not provide the
  1122. equivalent functionality. It can be obtained at:
  1123. * LICENSE:
  1124. * license/LICENSE.bouncycastle.txt (MIT License)
  1125. * HOMEPAGE:
  1126. * http://www.bouncycastle.org/
  1127. This product optionally depends on 'Snappy', a compression library produced
  1128. by Google Inc, which can be obtained at:
  1129. * LICENSE:
  1130. * license/LICENSE.snappy.txt (New BSD License)
  1131. * HOMEPAGE:
  1132. * http://code.google.com/p/snappy/
  1133. This product optionally depends on 'JBoss Marshalling', an alternative Java
  1134. serialization API, which can be obtained at:
  1135. * LICENSE:
  1136. * license/LICENSE.jboss-marshalling.txt (GNU LGPL 2.1)
  1137. * HOMEPAGE:
  1138. * http://www.jboss.org/jbossmarshalling
  1139. This product optionally depends on 'Caliper', Google's micro-
  1140. benchmarking framework, which can be obtained at:
  1141. * LICENSE:
  1142. * license/LICENSE.caliper.txt (Apache License 2.0)
  1143. * HOMEPAGE:
  1144. * http://code.google.com/p/caliper/
  1145. This product optionally depends on 'Apache Commons Logging', a logging
  1146. framework, which can be obtained at:
  1147. * LICENSE:
  1148. * license/LICENSE.commons-logging.txt (Apache License 2.0)
  1149. * HOMEPAGE:
  1150. * http://commons.apache.org/logging/
  1151. This product optionally depends on 'Apache Log4J', a logging framework, which
  1152. can be obtained at:
  1153. * LICENSE:
  1154. * license/LICENSE.log4j.txt (Apache License 2.0)
  1155. * HOMEPAGE:
  1156. * http://logging.apache.org/log4j/
  1157. This product contains a modified version of 'HPACK', a Java implementation of
  1158. the HTTP/2 HPACK algorithm written by Twitter. It can be obtained at:
  1159. * LICENSE:
  1160. * license/LICENSE.hpack.txt (Apache License 2.0)
  1161. * HOMEPAGE:
  1162. * https://github.com/twitter/hpack
  1163. This product contains a modified portion of 'Apache Commons Lang', a Java library
  1164. provides utilities for the java.lang API, which can be obtained at:
  1165. * LICENSE:
  1166. * license/LICENSE.commons-lang.txt (Apache License 2.0)
  1167. * HOMEPAGE:
  1168. * https://commons.apache.org/proper/commons-lang/
  1169. The binary distribution of this product bundles binaries of
  1170. Commons Codec 1.4,
  1171. which has the following notices:
  1172. * src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.javacontains test data from http://aspell.net/test/orig/batch0.tab.Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org)
  1173. ===============================================================================
  1174. The content of package org.apache.commons.codec.language.bm has been translated
  1175. from the original php source code available at http://stevemorse.org/phoneticinfo.htm
  1176. with permission from the original authors.
  1177. Original source copyright:Copyright (c) 2008 Alexander Beider & Stephen P. Morse.
  1178. The binary distribution of this product bundles binaries of
  1179. Commons Lang 2.6,
  1180. which has the following notices:
  1181. * This product includes software from the Spring Framework,under the Apache License 2.0 (see: StringUtils.containsWhitespace())
  1182. The binary distribution of this product bundles binaries of
  1183. Jetty 6.1.26,
  1184. which has the following notices:
  1185. * ==============================================================
  1186. Jetty Web Container
  1187. Copyright 1995-2016 Mort Bay Consulting Pty Ltd.
  1188. ==============================================================
  1189. The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd
  1190. unless otherwise noted.
  1191. Jetty is dual licensed under both
  1192. * The Apache 2.0 License
  1193. http://www.apache.org/licenses/LICENSE-2.0.html
  1194. and
  1195. * The Eclipse Public 1.0 License
  1196. http://www.eclipse.org/legal/epl-v10.html
  1197. Jetty may be distributed under either license.
  1198. ------
  1199. Eclipse
  1200. The following artifacts are EPL.
  1201. * org.eclipse.jetty.orbit:org.eclipse.jdt.core
  1202. The following artifacts are EPL and ASL2.
  1203. * org.eclipse.jetty.orbit:javax.security.auth.message
  1204. The following artifacts are EPL and CDDL 1.0.
  1205. * org.eclipse.jetty.orbit:javax.mail.glassfish
  1206. ------
  1207. Oracle
  1208. The following artifacts are CDDL + GPLv2 with classpath exception.
  1209. https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
  1210. * javax.servlet:javax.servlet-api
  1211. * javax.annotation:javax.annotation-api
  1212. * javax.transaction:javax.transaction-api
  1213. * javax.websocket:javax.websocket-api
  1214. ------
  1215. Oracle OpenJDK
  1216. If ALPN is used to negotiate HTTP/2 connections, then the following
  1217. artifacts may be included in the distribution or downloaded when ALPN
  1218. module is selected.
  1219. * java.sun.security.ssl
  1220. These artifacts replace/modify OpenJDK classes. The modififications
  1221. are hosted at github and both modified and original are under GPL v2 with
  1222. classpath exceptions.
  1223. http://openjdk.java.net/legal/gplv2+ce.html
  1224. ------
  1225. Apache
  1226. The following artifacts are ASL2 licensed.
  1227. org.apache.taglibs:taglibs-standard-spec
  1228. org.apache.taglibs:taglibs-standard-impl
  1229. ------
  1230. Mortbay
  1231. The following artifacts are CDDL + GPLv2 with classpath exception.
  1232. https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
  1233. org.eclipse.jetty.toolchain:jetty-schemas
  1234. ------
  1235. Assorted
  1236. The UnixCrypt.java code implements the one way cryptography used by
  1237. Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
  1238. modified April 2001 by Iris Van den Broeke, Daniel Deville.
  1239. Permission to use, copy, modify and distribute UnixCrypt
  1240. for non-commercial or commercial purposes and without fee is
  1241. granted provided that the copyright notice appears in all copies./
  1242. The binary distribution of this product bundles binaries of
  1243. Snappy for Java 1.1.8.4,
  1244. which has the following notices:
  1245. * This product includes software developed by Google
  1246. Snappy: http://code.google.com/p/snappy/ (New BSD License)
  1247. This product includes software developed by Apache
  1248. PureJavaCrc32C from apache-hadoop-common http://hadoop.apache.org/
  1249. (Apache 2.0 license)
  1250. This library containd statically linked libstdc++. This inclusion is allowed by
  1251. "GCC RUntime Library Exception"
  1252. http://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
  1253. == Contributors ==
  1254. * Tatu Saloranta
  1255. * Providing benchmark suite
  1256. * Alec Wysoker
  1257. * Performance and memory usage improvement
  1258. The binary distribution of this product bundles binaries of
  1259. Xerces2 Java Parser 2.9.1,
  1260. which has the following notices:
  1261. * =========================================================================
  1262. == NOTICE file corresponding to section 4(d) of the Apache License, ==
  1263. == Version 2.0, in this case for the Apache Xerces Java distribution. ==
  1264. =========================================================================
  1265. Apache Xerces Java
  1266. Copyright 1999-2007 The Apache Software Foundation
  1267. This product includes software developed at
  1268. The Apache Software Foundation (http://www.apache.org/).
  1269. Portions of this software were originally based on the following:
  1270. - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
  1271. - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
  1272. - voluntary contributions made by Paul Eng on behalf of the
  1273. Apache Software Foundation that were originally developed at iClick, Inc.,
  1274. software copyright (c) 1999.
  1275. =========================================================================
  1276. Google Guice NOTICE
  1277. =========================================================================
  1278. Google Guice - Extensions - Servlet
  1279. Copyright 2006-2011 Google, Inc.
  1280. This product includes software developed at
  1281. The Apache Software Foundation (http://www.apache.org/).
  1282. =========================================================================
  1283. Datanucleus NOTICE
  1284. =========================================================================
  1285. =========================================================================
  1286. == NOTICE file corresponding to section 4(d) of the Apache License, ==
  1287. == Version 2.0, in this case for the DataNucleus distribution. ==
  1288. =========================================================================
  1289. ===================================================================
  1290. This product includes software developed by many individuals,
  1291. including the following:
  1292. ===================================================================
  1293. Erik Bengtson
  1294. Andy Jefferson
  1295. ===================================================================
  1296. This product has included contributions from some individuals,
  1297. including the following:
  1298. ===================================================================
  1299. Joerg von Frantzius
  1300. Thomas Marti
  1301. Barry Haddow
  1302. Marco Schulze
  1303. Ralph Ullrich
  1304. David Ezzio
  1305. Brendan de Beer
  1306. David Eaves
  1307. Martin Taal
  1308. Tony Lai
  1309. Roland Szabo
  1310. Marcus Mennemeier
  1311. Xuan Baldauf
  1312. Eric Sultan
  1313. ===================================================================
  1314. This product also includes software developed by the TJDO project
  1315. (http://tjdo.sourceforge.net/).
  1316. ===================================================================
  1317. =========================================================================
  1318. Classmate NOTICE
  1319. =========================================================================
  1320. Java ClassMate library was originally written by Tatu Saloranta (tatu.saloranta@iki.fi)
  1321. Other developers who have contributed code are:
  1322. * Brian Langel
  1323. =========================================================================
  1324. ANT NOTICE
  1325. =========================================================================
  1326. This product includes software developed by
  1327. The Apache Software Foundation (http://www.apache.org/).
  1328. This product includes also software developed by :
  1329. - the W3C consortium (http://www.w3c.org) ,
  1330. - the SAX project (http://www.saxproject.org)
  1331. Please read the different LICENSE files present in the root directory of
  1332. this distribution.
  1333. =========================================================================
  1334. Commons Compress NOTICE
  1335. =========================================================================
  1336. Apache Commons Compress
  1337. Copyright 2002-2020 The Apache Software Foundation
  1338. This product includes software developed at
  1339. The Apache Software Foundation (https://www.apache.org/).
  1340. ---
  1341. The files in the package org.apache.commons.compress.archivers.sevenz
  1342. were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/),
  1343. which has been placed in the public domain:
  1344. "LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html)
  1345. ---
  1346. The test file lbzip2_32767.bz2 has been copied from libbzip2's source
  1347. repository:
  1348. This program, "bzip2", the associated library "libbzip2", and all
  1349. documentation, are copyright (C) 1996-2019 Julian R Seward. All
  1350. rights reserved.
  1351. Redistribution and use in source and binary forms, with or without
  1352. modification, are permitted provided that the following conditions
  1353. are met:
  1354. 1. Redistributions of source code must retain the above copyright
  1355. notice, this list of conditions and the following disclaimer.
  1356. 2. The origin of this software must not be misrepresented; you must
  1357. not claim that you wrote the original software. If you use this
  1358. software in a product, an acknowledgment in the product
  1359. documentation would be appreciated but is not required.
  1360. 3. Altered source versions must be plainly marked as such, and must
  1361. not be misrepresented as being the original software.
  1362. 4. The name of the author may not be used to endorse or promote
  1363. products derived from this software without specific prior written
  1364. permission.
  1365. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  1366. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  1367. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1368. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  1369. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1370. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  1371. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  1372. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  1373. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  1374. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1375. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1376. Julian Seward, jseward@acm.org
  1377. =========================================================================
  1378. Xmlbeans NOTICE
  1379. =========================================================================
  1380. =========================================================================
  1381. == NOTICE file corresponding to section 4(d) of the Apache License, ==
  1382. == Version 2.0, in this case for the Apache XmlBeans distribution. ==
  1383. =========================================================================
  1384. This product includes software developed at
  1385. The Apache Software Foundation (http://www.apache.org/).
  1386. Portions of this software were originally based on the following:
  1387. - software copyright (c) 2000-2003, BEA Systems, <http://www.bea.com/>.
  1388. Aside from contributions to the Apache XMLBeans project, this
  1389. software also includes:
  1390. - one or more source files from the Apache Xerces-J and Apache Axis
  1391. products, Copyright (c) 1999-2003 Apache Software Foundation
  1392. - W3C XML Schema documents Copyright 2001-2003 (c) World Wide Web
  1393. Consortium (Massachusetts Institute of Technology, European Research
  1394. Consortium for Informatics and Mathematics, Keio University)
  1395. =========================================================================
  1396. jetcd NOTICE
  1397. =========================================================================
  1398. CoreOS Project
  1399. Copyright 2018 CoreOS, Inc
  1400. This product includes software developed at CoreOS, Inc.
  1401. (http://www.coreos.com/).
  1402. =========================================================================
  1403. grpc NOTICE
  1404. =========================================================================
  1405. Copyright 2014 The gRPC Authors
  1406. Licensed under the Apache License, Version 2.0 (the "License");
  1407. you may not use this file except in compliance with the License.
  1408. You may obtain a copy of the License at
  1409. http://www.apache.org/licenses/LICENSE-2.0
  1410. Unless required by applicable law or agreed to in writing, software
  1411. distributed under the License is distributed on an "AS IS" BASIS,
  1412. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  1413. See the License for the specific language governing permissions and
  1414. limitations under the License.
  1415. -----------------------------------------------------------------------
  1416. This product contains a modified portion of 'OkHttp', an open source
  1417. HTTP & SPDY client for Android and Java applications, which can be obtained
  1418. at:
  1419. * LICENSE:
  1420. * okhttp/third_party/okhttp/LICENSE (Apache License 2.0)
  1421. * HOMEPAGE:
  1422. * https://github.com/square/okhttp
  1423. * LOCATION_IN_GRPC:
  1424. * okhttp/third_party/okhttp
  1425. This product contains a modified portion of 'Envoy', an open source
  1426. cloud-native high-performance edge/middle/service proxy, which can be
  1427. obtained at:
  1428. * LICENSE:
  1429. * xds/third_party/envoy/LICENSE (Apache License 2.0)
  1430. * NOTICE:
  1431. * xds/third_party/envoy/NOTICE
  1432. * HOMEPAGE:
  1433. * https://www.envoyproxy.io
  1434. * LOCATION_IN_GRPC:
  1435. * xds/third_party/envoy
  1436. This product contains a modified portion of 'protoc-gen-validate (PGV)',
  1437. an open source protoc plugin to generate polyglot message validators,
  1438. which can be obtained at:
  1439. * LICENSE:
  1440. * xds/third_party/protoc-gen-validate/LICENSE (Apache License 2.0)
  1441. * NOTICE:
  1442. * xds/third_party/protoc-gen-validate/NOTICE
  1443. * HOMEPAGE:
  1444. * https://github.com/envoyproxy/protoc-gen-validate
  1445. * LOCATION_IN_GRPC:
  1446. * xds/third_party/protoc-gen-validate
  1447. This product contains a modified portion of 'udpa',
  1448. an open source universal data plane API, which can be obtained at:
  1449. * LICENSE:
  1450. * xds/third_party/udpa/LICENSE (Apache License 2.0)
  1451. * HOMEPAGE:
  1452. * https://github.com/cncf/udpa
  1453. * LOCATION_IN_GRPC:
  1454. * xds/third_party/udpa
  1455. =========================================================================
  1456. perfmark NOTICE
  1457. =========================================================================
  1458. Copyright 2019 Google LLC
  1459. Licensed under the Apache License, Version 2.0 (the "License");
  1460. you may not use this file except in compliance with the License.
  1461. You may obtain a copy of the License at
  1462. http://www.apache.org/licenses/LICENSE-2.0
  1463. Unless required by applicable law or agreed to in writing, software
  1464. distributed under the License is distributed on an "AS IS" BASIS,
  1465. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  1466. See the License for the specific language governing permissions and
  1467. limitations under the License.
  1468. -----------------------------------------------------------------------
  1469. This product contains a modified portion of 'Catapult', an open source
  1470. Trace Event viewer for Chome, Linux, and Android applications, which can
  1471. be obtained at:
  1472. * LICENSE:
  1473. * traceviewer/src/main/resources/io/perfmark/traceviewer/third_party/catapult/LICENSE (New BSD License)
  1474. * HOMEPAGE:
  1475. * https://github.com/catapult-project/catapult
  1476. This product contains a modified portion of 'Polymer', a library for Web
  1477. Components, which can be obtained at:
  1478. * LICENSE:
  1479. * traceviewer/src/main/resources/io/perfmark/traceviewer/third_party/polymer/LICENSE (New BSD License)
  1480. * HOMEPAGE:
  1481. * https://github.com/Polymer/polymer
  1482. This product contains a modified portion of 'ASM', an open source
  1483. Java Bytecode library, which can be obtained at:
  1484. * LICENSE:
  1485. * agent/src/main/resources/io/perfmark/agent/third_party/asm/LICENSE (BSD style License)
  1486. * HOMEPAGE:
  1487. * https://asm.ow2.io/
  1488. ========================================================================
  1489. Dameng DmJdbcDriver18 NOTICE
  1490. ========================================================================
  1491. Dameng DmJdbcDriver18
  1492. Copyright 2000-2022 Dameng Group Holding Ltd.
  1493. =========================================================================
  1494. Oltu NOTICE
  1495. =========================================================================
  1496. Apache Oltu
  1497. Copyright 2010-2017 The Apache Software Foundation
  1498. This product includes software developed by
  1499. The Apache Software Foundation (http://www.apache.org/).
  1500. =========================================================================
  1501. Vertica Client Driver License NOTICE
  1502. =========================================================================
  1503. End User License Agreement
  1504. BY SELECTING “ACCEPT AND CONTINUE” BELOW, YOU ARE EXPRESSLY ACKNOWLEDGING AND AGREEING THAT THIS AGREEMENT, BETWEEN YOU AND MICRO FOCUS LLC (WITH ITS AFFILIATES, “MICRO FOCUS” OR “WE”), GOVERNS YOUR USE OF THE VERTICA CLIENT DRIVER SOFTWARE (TOGETHER WITH ANY UPDATES AND ENHANCEMENTS TO IT, AND ACCOMPANYING DOCUMENTATION, THE “DRIVERS”) THAT WE MAKE AVAILABLE TO YOU IN CONNECTION WITH MICRO FOCUS’ VERTICA SOFTWARE PRODUCT (OR ANY SUCCESSOR PRODUCT DESIGNATED BY US IN WRITING, THE “SOFTWARE”). THIS AGREEMENT GOVERNS THE LICENSING OF THE DRIVERS ONLY AND IF YOU WISH TO USE THE VERTICA SOFTWARE PRODUCT ITSELF, YOU WILL NEED TO LICENSE IT SEPARATELY UNDER THE APPROPRIATE COMMERCIAL OR COMMUNITY EDITION LICENSE.
  1505. 1. Except as stated below in this Agreement, the Drivers are governed by the Micro Focus End User License Agreement (the “EULA”) located at https://www.microfocus.com/en-us/legal/software-licensing. In the event of any conflict between the terms of this Agreement and the EULA, this Agreement will control and take precedence.
  1506. 2. This Agreement grants you a limited, nonexclusive, non-transferable, non-sublicensable license to install, use, and copy the object code of the Drivers free of charge for the sole purpose of developing a program that can use the Drivers to connect to the Software database. You may generally use the Drivers to connect to the Software. You may also distribute the Drivers, provided that (a) you distribute the Drivers as part of a software program or package that you develop; (b) you require end users to agree to terms that are consistent with, and at least as protective of Micro Focus and the Drivers as, this Agreement; (c) you retain without modification any copyright, patent, trademark, or attribution notices that are present in the Drivers; and (d) you distribute the Drivers for the sole purpose of your program connecting to the Software.
  1507. 3. Your rights under this Agreement will immediately and automatically terminate if you do not comply with any term or condition of this Agreement. In the case of termination, you must cease all use and destroy all copies of the Drivers. We may modify, suspend, discontinue, or terminate your right to use part or all of the Drivers at any time without notice to you and Micro Focus will not be liable to you should it exercise those rights. We may amend this Agreement at our sole discretion by posting the revised terms on the Micro Focus website https://www.vertica.com/download/vertica/client-drivers/ or within the Drivers. Your continued use of the Drivers after any amendment’s effective date evidence your agreement to be bound by it.
  1508. 4. The Drivers are the sole and exclusive intellectual property of Micro Focus. No support is provided for the Drivers.
  1509. 5. Some components of the Drivers may be governed by applicable open source software licenses. Your license rights with respect to these individual components are defined by the applicable open source software licenses, and nothing in this Agreement will restrict, limit, or otherwise affect any rights or obligations you may have, or conditions to which you may be subject, under such open source software licenses.
  1510. 6. The Drivers contains third party components, including any run time or other elements licensed to Micro Focus by a third party licensor (“Third Party Components”). Third Party Components are the sole and exclusive intellectual property of the applicable third party licensor. You agree that to the extent required by a third party licensor of a Third Party Component, that third party licensor is an intended third party beneficiary of this Agreement as necessary to protect its intellectual property rights software and limit certain uses thereof. You agree that any third party licensors of Third Party Components will have no liability with respect to the Third Party Components under this agreement.
  1511. 7. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THE EULA, YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE AND DISTRIBUTION OF THE DRIVERS IS AT YOUR SOLE RISK AND ARE DELIVERED TO YOU “AS IS” WITHOUT WARRANTY OF ANY KIND, AND MICRO FOCUS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED.
  1512. 8. You are liable for and will defend, indemnify, and hold harmless Micro Focus and its affiliates, officers, directors, agents, and employees, from and against any claims, liability, loss, damage, cost, or expense (including reasonable attorneys’ fees) arising out of (i) your distribution or use of your programs, (ii) your use of the Drivers, (iii) violation of applicable law, or (iv) violation of any right of any person or entity, including without limitation intellectual property rights.
  1513. 9. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THE EULA, TO THE EXTENT NOT PROHIBITED BY LAW, MICRO FOCUS WILL NOT BE LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR BREACH OF ANY EXPRESS OR IMPLIED WARRANTY, BREACH OF CONTRACT, NEGLIGENCE, STRICT LIABILITY, OR ANY OTHER LEGAL THEORY RELATED TO THE DRIVERS, INCLUDING WITHOUT LIMITATION ANY DAMAGES ARISING OUT OF LOSS OF PROFITS, REVENUE, DATA, OR USE OF THE DRIVERS. IN ANY CASE, MICRO FOCUS’ AGGREGATE LIABILITY UNDER THIS AGREEMENT WILL BE LIMITED TO $100.00.
  1514. [ ] I consent and accept the terms and conditions stated in this Agreement.
  1515. =========================================================================