1<?xml version="1.0" encoding="UTF-8"?> 2<!-- Copyright (c) 2021 Huawei Device Co., Ltd. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 16 Notes: 17 This is project config file for OpenHarmony OSS Audit Tool, if you have any questions or concerns, please email chenyaxun. 18--> 19<!-- OAT(OSS Audit Tool) configuration guide: 20basedir: Root dir, the basedir + project path is the real source file location. 21licensefile: 221.If the project don't have "LICENSE" in root dir, please define all the license files in this project in , OAT will check license files according to this rule. 23 24tasklist(only for batch mode): 251. task: Define oat check thread, each task will start a new thread. 262. task name: Only an name, no practical effect. 273. task policy: Default policy for projects under this task, this field is required and the specified policy must defined in policylist. 284. task filter: Default filefilter for projects under this task, this field is required and the specified filefilter must defined in filefilterlist. 295. task project: Projects to be checked, the path field define the source root dir of the project. 30 31 32policyList: 331. policy: All policyitems will be merged to default OAT.xml rules, the name of policy doesn't affect OAT check process. 342. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is: 35<policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/> 363. policyitem type: 37 "compatibility" is used to check license compatibility in the specified path; 38 "license" is used to check source license header in the specified path; 39 "copyright" is used to check source copyright header in the specified path; 40 "import" is used to check source dependency in the specified path, such as import ... ,include ... 41 "filetype" is used to check file type in the specified path, supported file types: archive, binary 42 "filename" is used to check whether the specified file exists in the specified path(support projectroot in default OAT.xml), supported file names: LICENSE, README, README.OpenSource 43 444. policyitem name: This field is used for define the license, copyright, "*" means match all, the "!" prefix means could not match this value. For example, "!GPL" means can not use GPL license. 455. policyitem path: This field is used for define the source file scope to apply this policyitem, the "!" prefix means exclude the files. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem. 466. policyitem rule and group: These two fields are used together to merge policy results. "may" policyitems in the same group means any one in this group passed, the result will be passed. 477. policyitem filefilter: Used to bind filefilter which define filter rules. 488. filefilter: Filter rules, the type filename is used to filter file name, the type filepath is used to filter file path. 49 50Note:If the text contains special characters, please escape them according to the following rules: 51" == > 52& == > 53' == > 54< == > 55> == > 56--> 57<configuration> 58 <oatconfig> 59 <licensefile>docs/license.rst</licensefile> 60 <policylist> 61 <policy name="projectPolicy" desc=""> 62 <policyitem type="compatibility" name="HPND-sell-variant" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 63 <policyitem type="compatibility" name="HPND" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 64 <policyitem type="compatibility" name="SGI-B-2.0" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 65 <policyitem type="compatibility" name="Khronos License" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 66 <policyitem type="compatibility" name="BSL-1.0" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 67 <policyitem type="compatibility" name="SPDX:GPL-2.0 WITH Linux-syscall-note" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 68 <policyitem type="compatibility" name="SPDX:GPL-1.0+ WITH Linux-syscall-note" path=".*" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter" desc=""/> 69 </policy> 70 </policylist> 71 <filefilterlist> 72 <filefilter name="defaultFilter" desc="Files not to check"> 73 <filteritem type="filepath" name="docs/.*" desc="docs"/> 74 <filteritem type="filepath" name="src/microsoft/compiler/dxcapi.h" desc="未找到对应LICENSE.TXT"/> 75 <filteritem type="filepath" name="src/imgui/imstb_textedit.h" desc="LICENSE是MIT,在文件末尾"/> 76 <filteritem type="filepath" name="src/freedreno/registers/rules-ng.xsd" desc="没有LICENSE"/> 77 <filteritem type="filepath" name="src/freedreno/registers/rules-fd.xsd" desc="没有LICENSE"/> 78 <filteritem type="filepath" name="ohos/BUILD.gn" desc="没有LICENSE"/> 79 <filteritem type="filename" name="*.rst" desc="third party"/> 80 <filteritem type="filepath" name="licenses/*" desc="licenses"/> 81 </filefilter> 82 <filefilter name="defaultPolicyFilter" desc="Filters for compatibility,license header policies"> 83 <filteritem type="filename" name="README.OpenSource"/> 84 <filteritem type="filename" name="README"/> 85 <filteritem type="filename" name="*.pc"/> 86 <filteritem type="filename" name="doxygen.ini.in" desc="not used in ohos"/> 87 <filteritem type="filename" name="COPYING" desc="data/COPYING not used in ohos"/> 88 <filteritem type="filename" name="DCO-1.1.txt" desc="not used in ohos"/> 89 <filteritem type="filepath" name="include/drm-uapi/sync_file.h" desc="not used in ohos"/> 90 <filteritem type="filename" name="gc_feature_database.h" desc="not used in ohos"/> 91 <filteritem type="filepath" name="src/util/perf/gpuvis_trace_utils.h" desc="not used in ohos"/> 92 <filteritem type="filepath" name="src/amd/vpelib/src/core/geometric_scaling.c" desc="not used in ohos"/> 93 </filefilter> 94 <filefilter name="copyrightPolicyFilter" desc="Filters for copyright header policies" > 95 <filteritem type="filename" name="README.OpenSource"/> 96 <filteritem type="filename" name="README"/> 97 </filefilter> 98 <filefilter name="binaryFileTypePolicyFilter" desc="Filters for binary file policies"> 99 <filteritem type="filename" name="*.bmp|*.png|*.jpg" desc="binary not used and belonged to weston"/> 100 <filteritem type="filename" name="*.tflite" desc="not used in ohos"/> 101 </filefilter> 102 </filefilterlist> 103 <licensematcherlist> 104 <licensematcher name="MIT" desc="If the scanning result is InvalidLicense, you can define matching rules here. Note that quotation marks must be escaped."> 105 <licensetext name=" 106 * Permission is hereby granted, free of charge, to any person obtaining a 107 * copy of this software and associated documentation files (the 108 * >Software>), to deal in the Software without restriction, including 109 * without limitation the rights to use, copy, modify, merge, publish, 110 * distribute, sub license, and/or sell copies of the Software, and to 111 * permit persons to whom the Software is furnished to do so, subject to 112 * the following conditions: 113 * 114 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 115 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 116 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 117 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 118 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 119 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 120 * USE OR OTHER DEALINGS IN THE SOFTWARE. 121 * 122 * The above copyright notice and this permission notice (including the 123 * next paragraph) shall be included in all copies or substantial portions 124 * of the Software. 125 " desc=""/> 126 <licensetext name=" 127 * Permission is hereby granted, free of charge, to any person obtaining a 128 * copy of this software and associated documentation files (the >Soft- 129 * ware>), to deal in the Software without restriction, including without 130 * limitation the rights to use, copy, modify, merge, publish, distribute, 131 * and/or sell copies of the Software, and to permit persons to whom the 132 * Software is furnished to do so, provided that the above copyright 133 * notice(s) and this permission notice appear in all copies of the Soft- 134 * ware and that both the above copyright notice(s) and this permission 135 * notice appear in supporting documentation. 136 * 137 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS 138 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- 139 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY 140 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN 141 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE- 142 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 143 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 144 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR- 145 * MANCE OF THIS SOFTWARE. 146 * 147 * Except as contained in this notice, the name of a copyright holder shall 148 * not be used in advertising or otherwise to promote the sale, use or 149 * other dealings in this Software without prior written authorization of 150 * the copyright holder. 151 " desc=""/> 152 <licensetext name=" 153 * Permission is hereby granted, free of charge, to any person obtaining a 154 * copy of this software and associated documentation files (the >Software>), 155 * to deal in the Software without restriction, including without limitation 156 * on the rights to use, copy, modify, merge, publish, distribute, sub 157 * license, and/or sell copies of the Software, and to permit persons to whom 158 * the Software is furnished to do so, subject to the following conditions: 159 * 160 * The above copyright notice and this permission notice (including the next 161 * paragraph) shall be included in all copies or substantial portions of the 162 * Software. 163 * 164 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 165 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 166 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 167 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, 168 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 169 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 170 * USE OR OTHER DEALINGS IN THE SOFTWARE. */ 171 " desc=""/> 172 <licensetext name=" 173 * Permission is hereby granted, free of charge, f, to any person obtaining a 174 * copy of this software and associated documentation files (the >Software>), 175 * to deal in the Software without restriction, including without limitation 176 * on the rights to use, f, copy, modify, merge, f, publish, distribute, f, sub 177 * license, f, and/or sell copies of the Software, f, and to permit persons to whom 178 * the Software is furnished to do so, subject to the following conditions: 179 * 180 * The above copyright notice and this permission notice (including the next 181 * paragraph) shall be included in all copies or substantial portions of the 182 * Software. 183 * 184 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 185 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 186 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 187 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, 188 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 189 * OTHERWISe, f, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 190 * USE OR OTHER DEALINGS IN THE SOFTWARE. */ 191 " desc=""/> 192 <licensetext name=" 193 * Permission is hereby granted, free of charge, to any person obtaining a 194 * copy of this software and associated documentation files (the >Software>), 195 * to deal in the Software without restriction, including without limitation 196 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 197 * and/or sell copies of the Software, and to permit persons to whom the 198 * 199 * The above copyright notice and this permission notice (including the next 200 * paragraph) shall be included in all copies or substantial portions of the 201 * Software. 202 * 203 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 204 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 205 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 206 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 207 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 208 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 209 * DEALINGS IN THE SOFTWARE. 210 " desc=""/> 211 <licensetext name=" 212 * Permission is hereby granted, free of charge, to any person obtaining a 213 * constant of this software and associated documentation files (the >Software>), 214 * to deal in the Software without restriction, including without limitation 215 * the rights to use, constant, modify, merge, publish, distribute, sublicense, 216 * and/or sell copies of the Software, and to permit persons to whom the 217 * Software is furnished to do so, subject to the following conditions: 218 * 219 * The above constantright notice and this permission notice (including the next 220 * paragraph) shall be included in all copies or substantial portions of the 221 * Software. 222 * 223 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 224 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 225 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 226 * THE AUTHORS OR CONSTANTRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 227 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 228 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 229 * DEALINGS IN THE SOFTWARE. 230 " desc=""/> 231 <licensetext name=" 232 * Permission is hereby granted, free of charge, to any person obtaining a 233 * constant of this software and associated documentation files (the >Software>), 234 * to deal in the Software without restriction, including without limitation 235 * the rights to use, constant, modify, merge, publish, distribute, sublicense, 236 * and/or sell copies of the Software, and to permit persons to whom the 237 * Software is furnished to do so, subject to the following conditions: 238 * 239 * The above constantright notice and this permission notice (including the next 240 * paragraph) shall be included in all copies or substantial portions of the 241 * Software. 242 * 243 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 244 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 245 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 246 * THE AUTHORS OR CONSTANTRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 247 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 248 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 249 * DEALINGS IN THE SOFTWARE. 250 " desc=""/> 251 <licensetext name=" 252 # Permission is hereby granted, free of charge, to any person obtaining a 253 # copy of this software and associated documentation files (the >Software>), 254 # to deal in the Software without restriction, including without limitation 255 # on the rights to use, copy, modify, merge, publish, distribute, sub 256 # license, and/or sell copies of the Software, and to permit persons to whom 257 # the Software is furnished to do so, subject to the following conditions: 258 # 259 # The above copyright notice and this permission notice (including the next 260 # paragraph) shall be included in all copies or substantial portions of the 261 # Software. 262 " desc=""/> 263 <licensetext name=" 264 * Permission is hereby granted, free of charge, to any person obtaining a 265 * copy of this software and associated documentation files (the >Software>), 266 * to deal in the Software without restriction, including without limitation 267 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 268 * and/or sell copies of the Software, and to permit persons to whom the 269 * Software is furnished to do so, subject to the following conditions: 270 * 271 * The above copyright notice and this permission notice (including the next 272 * paragraph) shall be included in all copies or substantial portions of the 273 * Software. 274 * 275 * THE SOFTWARE IS PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 276 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTAagxLITY, 277 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 278 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 279 * LIAagxLITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 280 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 281 * SOFTWARE. 282 " desc=""/> 283 284 </licensematcher> 285 <licensematcher name="BSD-2-Clause" desc="If the scanning result is InvalidLicense, you can define matching rules here. Note that quotation marks must be escaped."> 286 <licensetext name=" 287 * Redistribution and use in source and binary forms, with or without 288 * modification, are permitted provided that the following conditions 289 * are met: 290 * 1. Redistributions of source code must retain the above copyright 291 * notice, this list of conditions and the following disclaimer. 292 * 2. Redistributions in binary form must reproduce the above copyright 293 * notice, this list of conditions and the following disclaimer in the 294 * documentation and/or other materials provided with the distribution. 295 * 296 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' 297 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 298 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 299 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS 300 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 301 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 302 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 303 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 304 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 305 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 306 * THE POSSIBILITY OF SUCH DAMAGE. 307 " desc=""/> 308 <licensetext name=" 309 * Redistribution and use in source and binary forms, with or without 310 * modification, are permitted provided that the following conditions are met: 311 * 312 * 1. Redistributions of source code must retain the above copyright notice, 313 * this list of conditions and the following disclaimer. 314 * 315 * 2. Redistributions in binary form must reproduce the following statement: 316 * 317 * >Uses Jimenez's MLAA. Copyright (C) 2010 by Jorge Jimenez, Belen Masia, 318 * Jose I. Echevarria, Fernando Navarro and Diego Gutierrez.> 319 * 320 * Only for use in the Mesa project, this point 2 is filled by naming the 321 * technique Jimenez's MLAA in the Mesa config options. 322 * 323 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS 324 * IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 325 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 326 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS OR CONTRIBUTORS 327 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 328 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 329 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 330 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 331 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 332 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 333 * POSSIBILITY OF SUCH DAMAGE. 334 * 335 * The views and conclusions contained in the software and documentation are 336 * those of the authors and should not be interpreted as representing official 337 * policies, either expressed or implied, of the copyright holders. 338 " desc=""/> 339 </licensematcher> 340 <licensematcher name="HPND-sell-variant" desc="If the scanning result is InvalidLicense, you can define matching rules here. Note that quotation marks must be escaped."> 341 <licensetext name=" 342 * Permission to use, copy, modify, distribute, and sell this software and its 343 * documentation for any purpose is hereby granted without fee, provided that 344 * the above copyright notice appear in all copies and that both that copyright 345 * notice and this permission notice appear in supporting documentation, and 346 * that the name of the copyright holders not be used in advertising or 347 * publicity pertaining to distribution of the software without specific, 348 * written prior permission. The copyright holders make no representations 349 * about the suitability of this software for any purpose. It is provided >as 350 * is > without express or implied warranty. 351 * 352 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 353 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 354 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR 355 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 356 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 357 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 358 * OF THIS SOFTWARE. 359 " desc=""/> 360 <licensetext name=" 361 Permission to use, copy, modify, distribute, and sell this 362 software and its documentation for any purpose is hereby granted 363 without fee, provided that\n the above copyright notice appear in 364 all copies and that both that copyright notice and this permission 365 notice appear in supporting documentation, and that the name of 366 the copyright holders not be used in advertising or publicity 367 pertaining to distribution of the software without specific, 368 written prior permission. The copyright holders make no 369 representations about the suitability of this software for any 370 purpose. It is provided >as is> without express or implied 371 warranty. 372 373 THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS 374 SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 375 FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY 376 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 377 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN 378 AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 379 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 380 THIS SOFTWARE. 381 " desc=""/> 382 </licensematcher> 383 <licensematcher name="HPND" desc="If the scanning result is InvalidLicense, you can define matching rules here. Note that quotation marks must be escaped."> 384 <licensetext name=" 385 * Permission to use, copy, modify, and distribute this software and its 386 * documentation for any purpose and without fee is hereby granted, provided 387 * that the above copyright notice appear in all copies and that both that 388 * copyright notice and this permission notice appear in supporting 389 * documentation, and that the name of the Vrije Universiteit not be used in 390 * advertising or publicity pertaining to distribution of the software without 391 * specific, written prior permission. The Vrije Universiteit makes no 392 * representations about the suitability of this software for any purpose. 393 * It is provided >as is> without express or implied warranty. 394 * 395 * The Vrije Universiteit DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS 396 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, 397 * IN NO EVENT SHALL The Vrije Universiteit BE LIABLE FOR ANY SPECIAL, 398 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 399 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 400 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 401 * PERFORMANCE OF THIS SOFTWARE. 402 " desc=""/> 403 </licensematcher> 404 <licensematcher name="Khronos License" desc="If the scanning result is InvalidLicense, you can define matching rules here. Note that quotation marks must be escaped."> 405 <licensetext name=" 406 ** Permission is hereby granted, free of charge, to any person obtaining a 407 ** copy of this software and/or associated documentation files (the 408 ** >Materials>), to deal in the Materials without restriction, including 409 ** without limitation the rights to use, copy, modify, merge, publish, 410 ** distribute, sublicense, and/or sell copies of the Materials, and to 411 ** permit persons to whom the Materials are furnished to do so, subject to 412 ** the following conditions: 413 ** 414 ** The above copyright notice and this permission notice shall be included 415 ** in all copies or substantial portions of the Materials. 416 ** 417 ** THE MATERIALS ARE PROVIDED >AS IS>, WITHOUT WARRANTY OF ANY KIND, 418 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 419 ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 420 ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 421 ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 422 ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 423 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. 424 " desc=""/> 425 </licensematcher> 426 <licensematcher name="SGI-B-2.0" desc="If the scanning result is InvalidLicense, you can define matching rules here. Note that quotation marks must be escaped."> 427 <licensetext name=" 428 * This document is licensed under the SGI Free Software B License Version 429 * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . 430 " desc=""/> 431 </licensematcher> 432 </licensematcherlist> 433 </oatconfig> 434</configuration> 435