From 2608d138399011aa848748136093b79d74531cbf Mon Sep 17 00:00:00 2001 From: Azamat Cherchesov Date: Fri, 25 Aug 2023 14:29:14 +0300 Subject: [PATCH] TECH: upgrade thirdPartyReport dependency (#557) * TECH: upgrade thirdPartyReport dependency * TECH: added new NOTICE files * TECH: renamed adb-server modules * TECH: Moved legal documents copying to convention (#562) * TECH: Moved legal documents copying to convention * TECH: Lint * TECH: deleted legal tasks from adbserver-desktop module * TECH: added LICENSE.txt file for excludes * TECH: tmp commented signing checks * TECH: reverted tmp commented signing checks --------- Co-authored-by: Nikita --- .../adb-server-command-types/NOTICE.txt | 153 ++ .../build.gradle.kts | 2 +- .../adbserver/commandtypes/AdbCommand.kt | 0 .../adbserver/commandtypes/CmdCommand.kt | 0 .../NOTICE.txt | 35 +- .../build.gradle.kts | 0 .../kaspersky/adbserver/common/api/Command.kt | 0 .../adbserver/common/api/CommandExecutor.kt | 0 .../adbserver/common/api/CommandResult.kt | 0 .../adbserver/common/log/LoggerFactory.kt | 0 .../log/filterlog/FullLoggerOptimiser.kt | 0 .../adbserver/common/log/filterlog/LogData.kt | 0 .../common/log/filterlog/LogRecorder.kt | 0 .../common/log/filterlog/RecordAnswers.kt | 0 .../common/log/fulllogger/FullLogger.kt | 0 .../log/fulllogger/FullLoggerSystemImpl.kt | 0 .../common/log/logger/DesktopLogger.kt | 0 .../adbserver/common/log/logger/LogLevel.kt | 0 .../adbserver/common/log/logger/Logger.kt | 0 .../adbserver/common/log/logger/LoggerImpl.kt | 0 .../common/log/utils/AdbLoggerReflection.kt | 0 .../common/log/filterlog/FullLoggerForTest.kt | 0 .../log/filterlog/LoggerAnalyzerTest.kt | 0 .../NOTICE.txt | 35 +- .../build.gradle.kts | 2 +- .../connection/api/BaseConnection.kt | 0 .../connection/api/ConnectionClient.kt | 0 .../api/ConnectionClientLifecycle.kt | 0 .../connection/api/ConnectionFactory.kt | 0 .../connection/api/ConnectionServer.kt | 0 .../api/ConnectionServerLifecycle.kt | 0 .../ConnectionClientImplBySocket.kt | 0 .../implementation/ConnectionMaker.kt | 0 .../ConnectionServerImplBySocket.kt | 0 .../connection/implementation/ResultWaiter.kt | 0 .../lightsocket/LightSocketWrapper.kt | 0 .../lightsocket/LightSocketWrapperImpl.kt | 0 .../transferring/ExpectedEOFException.kt | 0 .../transferring/MessageModels.kt | 0 .../SocketMessagesTransferring.kt | 0 .../NOTICE.txt | 35 +- .../build.gradle.kts | 4 +- .../DesktopDeviceSocketConnection.kt | 0 .../DesktopDeviceSocketConnectionFactory.kt | 0 ...esktopDeviceSocketConnectionForwardImpl.kt | 0 .../DesktopDeviceSocketConnectionType.kt | 0 .../NOTICE.txt | 35 +- .../build.gradle.kts | 8 +- .../gradle.properties | 0 .../kaspersky/adbserver/device/AdbTerminal.kt | 0 .../device/ConnectionTimeException.kt | 0 .../com/kaspersky/adbserver/device/Device.kt | 0 .../NOTICE.txt | 130 -- adb-server/adbserver-desktop/NOTICE.txt | 6 +- adb-server/adbserver-desktop/build.gradle.kts | 10 +- allure-support/NOTICE.txt | 1629 ++++++++------- allure-support/build.gradle.kts | 10 - ...vention.publication-android-lib.gradle.kts | 10 + ...nvention.publication-kotlin-lib.gradle.kts | 11 + compose-support/NOTICE.txt | 1816 +++++++++-------- compose-support/build.gradle.kts | 10 - gradle.properties | 2 +- gradle/libs.versions.toml | 2 +- kaspresso/NOTICE.txt | 1478 ++++++++------ kaspresso/build.gradle.kts | 12 +- kautomator/NOTICE.txt | 563 ++--- kautomator/build.gradle.kts | 10 - samples/adbserver-sample/build.gradle.kts | 2 +- settings.gradle.kts | 10 +- 69 files changed, 3241 insertions(+), 2779 deletions(-) create mode 100644 adb-server/adb-server-command-types/NOTICE.txt rename adb-server/{adbserver-command-types => adb-server-command-types}/build.gradle.kts (83%) rename adb-server/{adbserver-command-types => adb-server-command-types}/src/main/java/com/kaspersky/adbserver/commandtypes/AdbCommand.kt (100%) rename adb-server/{adbserver-command-types => adb-server-command-types}/src/main/java/com/kaspersky/adbserver/commandtypes/CmdCommand.kt (100%) rename adb-server/{adbserver-device => adb-server-common}/NOTICE.txt (86%) rename adb-server/{adbserver-common => adb-server-common}/build.gradle.kts (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/api/Command.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/api/CommandExecutor.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/api/CommandResult.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/LoggerFactory.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerOptimiser.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogData.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogRecorder.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/filterlog/RecordAnswers.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLogger.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLoggerSystemImpl.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/logger/DesktopLogger.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/logger/LogLevel.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/logger/Logger.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/logger/LoggerImpl.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/main/java/com/kaspersky/adbserver/common/log/utils/AdbLoggerReflection.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/test/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerForTest.kt (100%) rename adb-server/{adbserver-common => adb-server-common}/src/test/java/com/kaspersky/adbserver/common/log/filterlog/LoggerAnalyzerTest.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/NOTICE.txt (86%) rename adb-server/{adbserver-connection => adb-server-connection}/build.gradle.kts (83%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/api/BaseConnection.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClient.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClientLifecycle.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionFactory.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServer.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServerLifecycle.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionClientImplBySocket.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionMaker.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionServerImplBySocket.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/ResultWaiter.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapper.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapperImpl.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/ExpectedEOFException.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/MessageModels.kt (100%) rename adb-server/{adbserver-connection => adb-server-connection}/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/SocketMessagesTransferring.kt (100%) rename adb-server/{adbserver-command-types => adb-server-desktop-device-connection}/NOTICE.txt (86%) rename adb-server/{adbserver-desktop-device-connection => adb-server-desktop-device-connection}/build.gradle.kts (71%) rename adb-server/{adbserver-desktop-device-connection => adb-server-desktop-device-connection}/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnection.kt (100%) rename adb-server/{adbserver-desktop-device-connection => adb-server-desktop-device-connection}/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionFactory.kt (100%) rename adb-server/{adbserver-desktop-device-connection => adb-server-desktop-device-connection}/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionForwardImpl.kt (100%) rename adb-server/{adbserver-desktop-device-connection => adb-server-desktop-device-connection}/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionType.kt (100%) rename adb-server/{adbserver-common => adb-server-device}/NOTICE.txt (86%) rename adb-server/{adbserver-device => adb-server-device}/build.gradle.kts (57%) rename adb-server/{adbserver-device => adb-server-device}/gradle.properties (100%) rename adb-server/{adbserver-device => adb-server-device}/src/main/java/com/kaspersky/adbserver/device/AdbTerminal.kt (100%) rename adb-server/{adbserver-device => adb-server-device}/src/main/java/com/kaspersky/adbserver/device/ConnectionTimeException.kt (100%) rename adb-server/{adbserver-device => adb-server-device}/src/main/java/com/kaspersky/adbserver/device/Device.kt (100%) delete mode 100644 adb-server/adbserver-desktop-device-connection/NOTICE.txt diff --git a/adb-server/adb-server-command-types/NOTICE.txt b/adb-server/adb-server-command-types/NOTICE.txt new file mode 100644 index 000000000..daaf12829 --- /dev/null +++ b/adb-server/adb-server-command-types/NOTICE.txt @@ -0,0 +1,153 @@ +This file contains information about dependencies which are used in the Kaspresso/adb-server-command-types 1.5.3. + +org.jetbrains.kotlin:kotlin-stdlib 1.7.10 + * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- +The following modules contain third-party code and are incorporated into the Kotlin compiler and/or the Kotlin IntelliJ IDEA plugin: + +Path: libraries/stdlib/src/kotlin/collections + +License: Apache 2 (license/third_party/gwt_license.txt) +Origin: Derived from GWT, (C) 2007-08 Google Inc. + +Path: libraries/stdlib/unsigned/src/kotlin/UnsignedUtils.kt + +License: Apache 2 (license/third_party/guava_license.txt) +Origin: Derived from Guava's UnsignedLongs, (C) 2011 The Guava Authors + +Path: libraries/stdlib/jvm/src/kotlin/util/MathJVM.kt + +License: Boost Software License 1.0 (license/third_party/boost_LICENSE.txt) +Origin: Derived from boost special math functions, Copyright Eric Ford & Hubert Holin 2001. + +Path: libraries/stdlib/js/src/kotlin/collections + +License: Apache 2 (license/third_party/gwt_license.txt) +Origin: Derived from GWT, (C) 2007-08 Google Inc. + +Path: libraries/stdlib/native-wasm/src/kotlin/collections + +License: Apache 2 (license/third_party/gwt_license.txt) +Origin: Derived from GWT, (C) 2007-08 Google Inc. + +Path: libraries/stdlib/js-v1/src/js/long.js + +License: Apache 2 (license/third_party/closure-compiler_LICENSE.txt) +Origin: Google Closure Library, Copyright 2009 The Closure Library Authors + +Path: libraries/stdlib/js-v1/src/js/polyfills.js + +License: Boost Software License 1.0 (license/third_party/boost_LICENSE.txt) +Origin: Derived from boost special math functions, Copyright Eric Ford & Hubert Holin 2001. + +Path: libraries/stdlib/js/src/kotlin/js/math.polyfills.kt + +License: Boost Software License 1.0 (license/third_party/boost_LICENSE.txt) +Origin: Derived from boost special math functions, Copyright Eric Ford & Hubert Holin 2001. + +Path: libraries/stdlib/wasm/internal/kotlin/wasm/internal/Number2String.kt + +License: Apache 2 (third_party/assemblyscript_license.txt) +Origin: Derived from assemblyscript standard library + +Path: libraries/stdlib/wasm/src/kotlin/text/FloatingPointConverter.kt + +License: MIT ([license/third_party/asmble_license.txt][asmble]) +Origin: Copyright (C) 2018 Chad Retz + +Path: libraries/stdlib/wasm/src/kotlin/math/fdlibm/ + +License: SUN ([license/third_party/sun_license.txt][sun]) +Origin: Copyright (C) 1993 by Sun Microsystems, Inc. + +org.jetbrains.kotlin:kotlin-stdlib-common 1.7.10 +Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains:annotations 13.0 +Copyright 2000-2016 JetBrains s.r.o. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/adb-server/adbserver-command-types/build.gradle.kts b/adb-server/adb-server-command-types/build.gradle.kts similarity index 83% rename from adb-server/adbserver-command-types/build.gradle.kts rename to adb-server/adb-server-command-types/build.gradle.kts index 185ec8ec7..e097f9096 100644 --- a/adb-server/adbserver-command-types/build.gradle.kts +++ b/adb-server/adb-server-command-types/build.gradle.kts @@ -11,5 +11,5 @@ publish { dependencies { implementation(libs.kotlinStdlib) - implementation(projects.adbServer.adbserverCommon) + implementation(projects.adbServer.adbServerCommon) } diff --git a/adb-server/adbserver-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/AdbCommand.kt b/adb-server/adb-server-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/AdbCommand.kt similarity index 100% rename from adb-server/adbserver-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/AdbCommand.kt rename to adb-server/adb-server-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/AdbCommand.kt diff --git a/adb-server/adbserver-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/CmdCommand.kt b/adb-server/adb-server-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/CmdCommand.kt similarity index 100% rename from adb-server/adbserver-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/CmdCommand.kt rename to adb-server/adb-server-command-types/src/main/java/com/kaspersky/adbserver/commandtypes/CmdCommand.kt diff --git a/adb-server/adbserver-device/NOTICE.txt b/adb-server/adb-server-common/NOTICE.txt similarity index 86% rename from adb-server/adbserver-device/NOTICE.txt rename to adb-server/adb-server-common/NOTICE.txt index af0af5edb..7b2d3032e 100644 --- a/adb-server/adbserver-device/NOTICE.txt +++ b/adb-server/adb-server-common/NOTICE.txt @@ -1,4 +1,4 @@ -This file contains information about dependencies which are used in the Kaspresso/adbserver-device 1.5.2. +This file contains information about dependencies which are used in the Kaspresso/adb-server-common 1.5.3. org.jetbrains.kotlin:kotlin-stdlib 1.7.10 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. @@ -103,28 +103,51 @@ Distributed under the terms of the Apache License Version 2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/adb-server/adbserver-common/build.gradle.kts b/adb-server/adb-server-common/build.gradle.kts similarity index 100% rename from adb-server/adbserver-common/build.gradle.kts rename to adb-server/adb-server-common/build.gradle.kts diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/api/Command.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/api/Command.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/api/Command.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/api/Command.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/api/CommandExecutor.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/api/CommandExecutor.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/api/CommandExecutor.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/api/CommandExecutor.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/api/CommandResult.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/api/CommandResult.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/api/CommandResult.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/api/CommandResult.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/LoggerFactory.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/LoggerFactory.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/LoggerFactory.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/LoggerFactory.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerOptimiser.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerOptimiser.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerOptimiser.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerOptimiser.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogData.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogData.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogData.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogData.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogRecorder.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogRecorder.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogRecorder.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/LogRecorder.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/RecordAnswers.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/RecordAnswers.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/RecordAnswers.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/filterlog/RecordAnswers.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLogger.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLogger.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLogger.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLogger.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLoggerSystemImpl.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLoggerSystemImpl.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLoggerSystemImpl.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/fulllogger/FullLoggerSystemImpl.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/DesktopLogger.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/DesktopLogger.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/DesktopLogger.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/DesktopLogger.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LogLevel.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LogLevel.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LogLevel.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LogLevel.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/Logger.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/Logger.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/Logger.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/Logger.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LoggerImpl.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LoggerImpl.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LoggerImpl.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/logger/LoggerImpl.kt diff --git a/adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/utils/AdbLoggerReflection.kt b/adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/utils/AdbLoggerReflection.kt similarity index 100% rename from adb-server/adbserver-common/src/main/java/com/kaspersky/adbserver/common/log/utils/AdbLoggerReflection.kt rename to adb-server/adb-server-common/src/main/java/com/kaspersky/adbserver/common/log/utils/AdbLoggerReflection.kt diff --git a/adb-server/adbserver-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerForTest.kt b/adb-server/adb-server-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerForTest.kt similarity index 100% rename from adb-server/adbserver-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerForTest.kt rename to adb-server/adb-server-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/FullLoggerForTest.kt diff --git a/adb-server/adbserver-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/LoggerAnalyzerTest.kt b/adb-server/adb-server-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/LoggerAnalyzerTest.kt similarity index 100% rename from adb-server/adbserver-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/LoggerAnalyzerTest.kt rename to adb-server/adb-server-common/src/test/java/com/kaspersky/adbserver/common/log/filterlog/LoggerAnalyzerTest.kt diff --git a/adb-server/adbserver-connection/NOTICE.txt b/adb-server/adb-server-connection/NOTICE.txt similarity index 86% rename from adb-server/adbserver-connection/NOTICE.txt rename to adb-server/adb-server-connection/NOTICE.txt index 198e67861..dabcd66d1 100644 --- a/adb-server/adbserver-connection/NOTICE.txt +++ b/adb-server/adb-server-connection/NOTICE.txt @@ -1,4 +1,4 @@ -This file contains information about dependencies which are used in the Kaspresso/adbserver-connection 1.5.2. +This file contains information about dependencies which are used in the Kaspresso/adb-server-connection 1.5.3. org.jetbrains.kotlin:kotlin-stdlib 1.7.10 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. @@ -103,28 +103,51 @@ Distributed under the terms of the Apache License Version 2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/adb-server/adbserver-connection/build.gradle.kts b/adb-server/adb-server-connection/build.gradle.kts similarity index 83% rename from adb-server/adbserver-connection/build.gradle.kts rename to adb-server/adb-server-connection/build.gradle.kts index 063ce3c6f..c81e96dc8 100644 --- a/adb-server/adbserver-connection/build.gradle.kts +++ b/adb-server/adb-server-connection/build.gradle.kts @@ -11,5 +11,5 @@ publish { dependencies { implementation(libs.kotlinStdlib) - implementation(projects.adbServer.adbserverCommon) + implementation(projects.adbServer.adbServerCommon) } diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/BaseConnection.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/BaseConnection.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/BaseConnection.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/BaseConnection.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClient.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClient.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClient.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClient.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClientLifecycle.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClientLifecycle.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClientLifecycle.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionClientLifecycle.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionFactory.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionFactory.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionFactory.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionFactory.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServer.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServer.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServer.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServer.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServerLifecycle.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServerLifecycle.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServerLifecycle.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/api/ConnectionServerLifecycle.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionClientImplBySocket.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionClientImplBySocket.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionClientImplBySocket.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionClientImplBySocket.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionMaker.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionMaker.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionMaker.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionMaker.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionServerImplBySocket.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionServerImplBySocket.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionServerImplBySocket.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ConnectionServerImplBySocket.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ResultWaiter.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ResultWaiter.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ResultWaiter.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/ResultWaiter.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapper.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapper.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapper.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapper.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapperImpl.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapperImpl.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapperImpl.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/lightsocket/LightSocketWrapperImpl.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/ExpectedEOFException.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/ExpectedEOFException.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/ExpectedEOFException.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/ExpectedEOFException.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/MessageModels.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/MessageModels.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/MessageModels.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/MessageModels.kt diff --git a/adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/SocketMessagesTransferring.kt b/adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/SocketMessagesTransferring.kt similarity index 100% rename from adb-server/adbserver-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/SocketMessagesTransferring.kt rename to adb-server/adb-server-connection/src/main/java/com/kaspersky/adbserver/connection/implementation/transferring/SocketMessagesTransferring.kt diff --git a/adb-server/adbserver-command-types/NOTICE.txt b/adb-server/adb-server-desktop-device-connection/NOTICE.txt similarity index 86% rename from adb-server/adbserver-command-types/NOTICE.txt rename to adb-server/adb-server-desktop-device-connection/NOTICE.txt index 3dba9db27..f4f48148e 100644 --- a/adb-server/adbserver-command-types/NOTICE.txt +++ b/adb-server/adb-server-desktop-device-connection/NOTICE.txt @@ -1,4 +1,4 @@ -This file contains information about dependencies which are used in the Kaspresso/adbserver-command-types 1.5.2. +This file contains information about dependencies which are used in the Kaspresso/adb-server-desktop-device-connection 1.5.3. org.jetbrains.kotlin:kotlin-stdlib 1.7.10 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. @@ -103,28 +103,51 @@ Distributed under the terms of the Apache License Version 2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/adb-server/adbserver-desktop-device-connection/build.gradle.kts b/adb-server/adb-server-desktop-device-connection/build.gradle.kts similarity index 71% rename from adb-server/adbserver-desktop-device-connection/build.gradle.kts rename to adb-server/adb-server-desktop-device-connection/build.gradle.kts index 724af355d..cfb1b167d 100644 --- a/adb-server/adbserver-desktop-device-connection/build.gradle.kts +++ b/adb-server/adb-server-desktop-device-connection/build.gradle.kts @@ -11,6 +11,6 @@ publish { dependencies { implementation(libs.kotlinStdlib) - implementation(projects.adbServer.adbserverCommon) - implementation(projects.adbServer.adbserverCommandTypes) + implementation(projects.adbServer.adbServerCommon) + implementation(projects.adbServer.adbServerCommandTypes) } diff --git a/adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnection.kt b/adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnection.kt similarity index 100% rename from adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnection.kt rename to adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnection.kt diff --git a/adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionFactory.kt b/adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionFactory.kt similarity index 100% rename from adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionFactory.kt rename to adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionFactory.kt diff --git a/adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionForwardImpl.kt b/adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionForwardImpl.kt similarity index 100% rename from adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionForwardImpl.kt rename to adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionForwardImpl.kt diff --git a/adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionType.kt b/adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionType.kt similarity index 100% rename from adb-server/adbserver-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionType.kt rename to adb-server/adb-server-desktop-device-connection/src/main/java/com/kaspersky/adbserver/desdevconnection/DesktopDeviceSocketConnectionType.kt diff --git a/adb-server/adbserver-common/NOTICE.txt b/adb-server/adb-server-device/NOTICE.txt similarity index 86% rename from adb-server/adbserver-common/NOTICE.txt rename to adb-server/adb-server-device/NOTICE.txt index df6a2fb99..02508beef 100644 --- a/adb-server/adbserver-common/NOTICE.txt +++ b/adb-server/adb-server-device/NOTICE.txt @@ -1,4 +1,4 @@ -This file contains information about dependencies which are used in the Kaspresso/adbserver-common 1.5.2. +This file contains information about dependencies which are used in the Kaspresso/adb-server-device 1.5.3. org.jetbrains.kotlin:kotlin-stdlib 1.7.10 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. @@ -103,28 +103,51 @@ Distributed under the terms of the Apache License Version 2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS + +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/adb-server/adbserver-device/build.gradle.kts b/adb-server/adb-server-device/build.gradle.kts similarity index 57% rename from adb-server/adbserver-device/build.gradle.kts rename to adb-server/adb-server-device/build.gradle.kts index 7cc51e805..1c64e458a 100644 --- a/adb-server/adbserver-device/build.gradle.kts +++ b/adb-server/adb-server-device/build.gradle.kts @@ -11,8 +11,8 @@ publish { dependencies { implementation(libs.kotlinStdlib) - api(projects.adbServer.adbserverCommon) - api(projects.adbServer.adbserverCommandTypes) - api(projects.adbServer.adbserverConnection) - api(projects.adbServer.adbserverDesktopDeviceConnection) + api(projects.adbServer.adbServerCommon) + api(projects.adbServer.adbServerCommandTypes) + api(projects.adbServer.adbServerConnection) + api(projects.adbServer.adbServerDesktopDeviceConnection) } diff --git a/adb-server/adbserver-device/gradle.properties b/adb-server/adb-server-device/gradle.properties similarity index 100% rename from adb-server/adbserver-device/gradle.properties rename to adb-server/adb-server-device/gradle.properties diff --git a/adb-server/adbserver-device/src/main/java/com/kaspersky/adbserver/device/AdbTerminal.kt b/adb-server/adb-server-device/src/main/java/com/kaspersky/adbserver/device/AdbTerminal.kt similarity index 100% rename from adb-server/adbserver-device/src/main/java/com/kaspersky/adbserver/device/AdbTerminal.kt rename to adb-server/adb-server-device/src/main/java/com/kaspersky/adbserver/device/AdbTerminal.kt diff --git a/adb-server/adbserver-device/src/main/java/com/kaspersky/adbserver/device/ConnectionTimeException.kt b/adb-server/adb-server-device/src/main/java/com/kaspersky/adbserver/device/ConnectionTimeException.kt similarity index 100% rename from adb-server/adbserver-device/src/main/java/com/kaspersky/adbserver/device/ConnectionTimeException.kt rename to adb-server/adb-server-device/src/main/java/com/kaspersky/adbserver/device/ConnectionTimeException.kt diff --git a/adb-server/adbserver-device/src/main/java/com/kaspersky/adbserver/device/Device.kt b/adb-server/adb-server-device/src/main/java/com/kaspersky/adbserver/device/Device.kt similarity index 100% rename from adb-server/adbserver-device/src/main/java/com/kaspersky/adbserver/device/Device.kt rename to adb-server/adb-server-device/src/main/java/com/kaspersky/adbserver/device/Device.kt diff --git a/adb-server/adbserver-desktop-device-connection/NOTICE.txt b/adb-server/adbserver-desktop-device-connection/NOTICE.txt deleted file mode 100644 index c28abd574..000000000 --- a/adb-server/adbserver-desktop-device-connection/NOTICE.txt +++ /dev/null @@ -1,130 +0,0 @@ -This file contains information about dependencies which are used in the Kaspresso/adbserver-desktop-device-connection 1.5.2. - -org.jetbrains.kotlin:kotlin-stdlib 1.7.10 - * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ -The following modules contain third-party code and are incorporated into the Kotlin compiler and/or the Kotlin IntelliJ IDEA plugin: - -Path: libraries/stdlib/src/kotlin/collections - -License: Apache 2 (license/third_party/gwt_license.txt) -Origin: Derived from GWT, (C) 2007-08 Google Inc. - -Path: libraries/stdlib/unsigned/src/kotlin/UnsignedUtils.kt - -License: Apache 2 (license/third_party/guava_license.txt) -Origin: Derived from Guava's UnsignedLongs, (C) 2011 The Guava Authors - -Path: libraries/stdlib/jvm/src/kotlin/util/MathJVM.kt - -License: Boost Software License 1.0 (license/third_party/boost_LICENSE.txt) -Origin: Derived from boost special math functions, Copyright Eric Ford & Hubert Holin 2001. - -Path: libraries/stdlib/js/src/kotlin/collections - -License: Apache 2 (license/third_party/gwt_license.txt) -Origin: Derived from GWT, (C) 2007-08 Google Inc. - -Path: libraries/stdlib/native-wasm/src/kotlin/collections - -License: Apache 2 (license/third_party/gwt_license.txt) -Origin: Derived from GWT, (C) 2007-08 Google Inc. - -Path: libraries/stdlib/js-v1/src/js/long.js - -License: Apache 2 (license/third_party/closure-compiler_LICENSE.txt) -Origin: Google Closure Library, Copyright 2009 The Closure Library Authors - -Path: libraries/stdlib/js-v1/src/js/polyfills.js - -License: Boost Software License 1.0 (license/third_party/boost_LICENSE.txt) -Origin: Derived from boost special math functions, Copyright Eric Ford & Hubert Holin 2001. - -Path: libraries/stdlib/js/src/kotlin/js/math.polyfills.kt - -License: Boost Software License 1.0 (license/third_party/boost_LICENSE.txt) -Origin: Derived from boost special math functions, Copyright Eric Ford & Hubert Holin 2001. - -Path: libraries/stdlib/wasm/internal/kotlin/wasm/internal/Number2String.kt - -License: Apache 2 (third_party/assemblyscript_license.txt) -Origin: Derived from assemblyscript standard library - -Path: libraries/stdlib/wasm/src/kotlin/text/FloatingPointConverter.kt - -License: MIT ([license/third_party/asmble_license.txt][asmble]) -Origin: Copyright (C) 2018 Chad Retz - -Path: libraries/stdlib/wasm/src/kotlin/math/fdlibm/ - -License: SUN ([license/third_party/sun_license.txt][sun]) -Origin: Copyright (C) 1993 by Sun Microsystems, Inc. - -org.jetbrains.kotlin:kotlin-stdlib-common 1.7.10 -Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains:annotations 13.0 -Copyright 2000-2016 JetBrains s.r.o. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS diff --git a/adb-server/adbserver-desktop/NOTICE.txt b/adb-server/adbserver-desktop/NOTICE.txt index 1921637c3..d51008b4d 100644 --- a/adb-server/adbserver-desktop/NOTICE.txt +++ b/adb-server/adbserver-desktop/NOTICE.txt @@ -1,4 +1,4 @@ -This file contains information about dependencies which are used in the Kaspresso/adbserver-desktop. This file is made for Kaspresso release 1.5.1 +This file contains information about dependencies which are used in the Kaspresso/adbserver-desktop. This file is made for Kaspresso release 1.5.3 org.jetbrains.kotlin:kotlin-stdlib 1.7.10 @@ -154,7 +154,7 @@ Distributed under the terms of the Apache License Version 2.0 Apache License Version 2.0, January 2004 -http://www.apache.org/licenses/ +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. @@ -179,4 +179,4 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS \ No newline at end of file +END OF TERMS AND CONDITIONS diff --git a/adb-server/adbserver-desktop/build.gradle.kts b/adb-server/adbserver-desktop/build.gradle.kts index 68fabbf13..139270205 100644 --- a/adb-server/adbserver-desktop/build.gradle.kts +++ b/adb-server/adbserver-desktop/build.gradle.kts @@ -1,16 +1,15 @@ plugins { id("convention.kotlin-app") id("convention.third-party-report") - id("convention.legal-documents") } dependencies { implementation(libs.kotlinStdlib) implementation(libs.kotlinCli) - implementation(projects.adbServer.adbserverCommon) - implementation(projects.adbServer.adbserverCommandTypes) - implementation(projects.adbServer.adbserverConnection) - implementation(projects.adbServer.adbserverDesktopDeviceConnection) + implementation(projects.adbServer.adbServerCommon) + implementation(projects.adbServer.adbServerCommandTypes) + implementation(projects.adbServer.adbServerConnection) + implementation(projects.adbServer.adbServerDesktopDeviceConnection) } setProperty("mainClassName", "com.kaspersky.adbserver.desktop.MainKt") @@ -25,4 +24,5 @@ tasks.withType().configureEach { exclude("META-INF/**/**/module-info.class") } exclude("NOTICE.txt") + exclude("LICENSE.txt") } diff --git a/allure-support/NOTICE.txt b/allure-support/NOTICE.txt index 3cf5ebaf6..60a7e73cd 100644 --- a/allure-support/NOTICE.txt +++ b/allure-support/NOTICE.txt @@ -1,531 +1,580 @@ -This file contains information about dependencies which are used in the Kaspresso/allure-support 1.5.2. - -androidx.activity:activity 1.2.3 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation 1.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation-experimental 1.3.0 -Copyright 2019 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.appcompat:appcompat 1.3.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.appcompat:appcompat-resources 1.3.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.arch.core:core-common 2.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.arch.core:core-runtime 2.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.cardview:cardview 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.collection:collection 1.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.concurrent:concurrent-futures 1.1.0 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.constraintlayout:constraintlayout 2.0.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.constraintlayout:constraintlayout-solver 2.0.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.coordinatorlayout:coordinatorlayout 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.core:core 1.9.0 -Copyright (C) 2014 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.cursoradapter:cursoradapter 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.customview:customview 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.documentfile:documentfile 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.drawerlayout:drawerlayout 1.1.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.dynamicanimation:dynamicanimation 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.fragment:fragment 1.3.4 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.interpolator:interpolator 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.legacy:legacy-support-core-utils 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-common 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-livedata 2.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-livedata-core 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-runtime 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel-savedstate 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.loader:loader 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.localbroadcastmanager:localbroadcastmanager 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.multidex:multidex 2.0.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.print:print 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.recyclerview:recyclerview 1.2.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.savedstate:savedstate 1.1.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.swiperefreshlayout:swiperefreshlayout 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-contrib 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-core 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-idling-resource 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-intents 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-web 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.ext:junit 1.1.4 -Copyright (C) 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.ext:junit-ktx 1.1.4 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.services:storage 1.4.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.uiautomator:uiautomator 2.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:annotation 1.0.1 -Copyright (C) 2015 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:core 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:monitor 1.6.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:rules 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:runner 1.5.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.tracing:tracing 1.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.transition:transition 1.2.0 -https://developer.android.com/jetpack/androidx/migrate/artifact-mappings ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.vectordrawable:vectordrawable 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.vectordrawable:vectordrawable-animated 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.versionedparcelable:versionedparcelable 1.1.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.viewpager2:viewpager2 1.0.0 -https://developer.android.com/jetpack/androidx/releases/viewpager2 ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.viewpager:viewpager 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework 4.0.0 -Copyright (C) 2017 Google Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.android.material:material 1.4.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.auto.value:auto-value-annotations 1.8.1 -Copyright 2012 Google LLC ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.findbugs:jsr305 3.0.2 -https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.gson:gson 2.9.1 -Copyright 2008-2011 Google Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.errorprone:error_prone_annotations 2.14.0 -Copyright 2015 The Error Prone Authors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:failureaccess 1.0.1 -Copyright (C) 2018 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:guava 31.0.1-android -Copyright (C) 2010 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava -Copyright (C) 2009 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.j2objc:j2objc-annotations 1.3 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.truth:truth 1.1.3 -Copyright (c) 2014 Google, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.squareup:javawriter 2.1.1 -Copyright 2013 Square, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.github.kakaocup:kakao 3.2.3 -https://github.com/KakaoCup/Kakao ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.qameta.allure:allure-kotlin-android 2.4.0 -Copyright 2020 Qameta Software OÜ ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.qameta.allure:allure-kotlin-commons 2.4.0 -Copyright 2020 Qameta Software OÜ ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.qameta.allure:allure-kotlin-junit4 2.4.0 -Copyright 2020 Qameta Software OÜ ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.qameta.allure:allure-kotlin-model 2.4.0 -Copyright 2020 Qameta Software OÜ ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -javax.inject:javax.inject 1 -Copyright (C) 2009 The JSR-330 Expert Group ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.ccil.cowan.tagsoup:tagsoup 1.2.1 -Copyright 2002-2008 by John Cowan ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-reflect 1.5.0 +This file contains information about dependencies which are used in the Kaspresso/allure-support 1.5.3. + +androidx.activity:activity 1.6.0 +Copyright 2018-2022 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation 1.3.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation-experimental 1.3.0 +Copyright 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.appcompat:appcompat 1.6.0 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.appcompat:appcompat-resources 1.6.0 +Copyright (C) 2012 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.arch.core:core-common 2.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.arch.core:core-runtime 2.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.cardview:cardview 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.collection:collection 1.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.concurrent:concurrent-futures 1.1.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.constraintlayout:constraintlayout 2.0.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.constraintlayout:constraintlayout-solver 2.0.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.coordinatorlayout:coordinatorlayout 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.core:core 1.9.0 +Copyright (C) 2014 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.core:core-ktx 1.9.0 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.cursoradapter:cursoradapter 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.customview:customview 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.documentfile:documentfile 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.drawerlayout:drawerlayout 1.1.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.dynamicanimation:dynamicanimation 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.emoji2:emoji2 1.2.0 +Copyright 2021-2022 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.emoji2:emoji2-views-helper 1.2.0 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.fragment:fragment 1.3.6 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.interpolator:interpolator 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.legacy:legacy-support-core-utils 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-common 2.5.1 +Copyright (C) 2017-2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-livedata 2.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-livedata-core 2.5.1 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-process 2.4.1 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-runtime 2.5.1 +Copyright (C) 2017, 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel 2.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel-savedstate 2.5.1 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.loader:loader 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.localbroadcastmanager:localbroadcastmanager 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.multidex:multidex 2.0.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.print:print 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.recyclerview:recyclerview 1.2.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.resourceinspection:resourceinspection-annotation 1.0.1 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.savedstate:savedstate 1.2.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.startup:startup-runtime 1.1.1 +Copyright (C) 2020 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.swiperefreshlayout:swiperefreshlayout 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-contrib 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-core 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-idling-resource 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-intents 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-web 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.ext:junit 1.1.4 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.ext:junit-ktx 1.1.4 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.services:storage 1.4.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.uiautomator:uiautomator 2.2.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:annotation 1.0.1 +Copyright (C) 2015 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:core 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:monitor 1.6.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:rules 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:runner 1.5.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.tracing:tracing 1.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.transition:transition 1.2.0 +https://developer.android.com/jetpack/androidx/migrate/artifact-mappings +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.vectordrawable:vectordrawable 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.vectordrawable:vectordrawable-animated 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.versionedparcelable:versionedparcelable 1.1.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.viewpager2:viewpager2 1.0.0 +https://developer.android.com/jetpack/androidx/releases/viewpager2 +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.viewpager:viewpager 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework 4.0.0 +Copyright (C) 2017 Google Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.android.material:material 1.6.1 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.auto.value:auto-value-annotations 1.8.1 +Copyright 2012 Google LLC +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.findbugs:jsr305 3.0.2 +https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.gson:gson 2.9.1 +Copyright 2008-2011 Google Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.errorprone:error_prone_annotations 2.14.0 +Copyright 2015 The Error Prone Authors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:failureaccess 1.0.1 +Copyright (C) 2018 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:guava 31.0.1-android +Copyright (C) 2010 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava +Copyright (C) 2009 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.j2objc:j2objc-annotations 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.truth:truth 1.1.3 +Copyright (c) 2014 Google, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.squareup:javawriter 2.1.1 +Copyright 2013 Square, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:kakao 3.4.1 +https://github.com/KakaoCup/Kakao +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:kakao-ext-clicks 1.0.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.qameta.allure:allure-kotlin-android 2.4.0 +Copyright 2020 Qameta Software OÜ +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.qameta.allure:allure-kotlin-commons 2.4.0 +Copyright 2020 Qameta Software OÜ +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.qameta.allure:allure-kotlin-junit4 2.4.0 +Copyright 2020 Qameta Software OÜ +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.qameta.allure:allure-kotlin-model 2.4.0 +Copyright 2020 Qameta Software OÜ +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +javax.inject:javax.inject 1 +Copyright (C) 2009 The JSR-330 Expert Group +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.ccil.cowan.tagsoup:tagsoup 1.2.1 +Copyright 2002-2008 by John Cowan +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-reflect 1.5.0 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. * @@ -539,17 +588,17 @@ org.jetbrains.kotlin:kotlin-reflect 1.5.0 * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and - * limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib 1.7.21 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ + * limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib 1.7.21 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- The Apache 2 license applies to all code in this repository which is copyright by JetBrains. The following sections of the repository contain third-party code, to which different licenses may apply: @@ -652,51 +701,122 @@ Sun License Developed at SunSoft, a Sun Microsystems, Inc. business. Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice -is preserved. - -org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib-jdk7 1.5.0 +is preserved. + +org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib-jdk7 1.6.0 Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-serialization-core 1.2.1 -Copyright 2017-2020 JetBrains s.r.o. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-serialization-core-jvm 1.2.1 -Copyright 2017-2020 JetBrains s.r.o. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-serialization-json 1.2.1 -Copyright 2017-2019 JetBrains s.r.o. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-serialization-json-jvm 1.2.1 -Copyright 2017-2019 JetBrains s.r.o. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib-jdk8 1.6.0 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. -org.jetbrains:annotations 13.0 +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-android 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-bom 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-core 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-serialization-core 1.2.1 +Copyright 2017-2020 JetBrains s.r.o. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-serialization-core-jvm 1.2.1 +Copyright 2017-2020 JetBrains s.r.o. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-serialization-json 1.2.1 +Copyright 2017-2019 JetBrains s.r.o. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-serialization-json-jvm 1.2.1 +Copyright 2017-2019 JetBrains s.r.o. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains:annotations 13.0 Copyright 2000-2016 JetBrains s.r.o. Licensed under the Apache License, Version 2.0 (the "License"); @@ -709,155 +829,176 @@ Copyright 2000-2016 JetBrains s.r.o. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS - - -com.google.protobuf:protobuf-javalite 3.19.1 -Copyright 2008 Google Inc. All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest 2.2 + limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +com.google.protobuf:protobuf-javalite 3.19.1 +Copyright 2008 Google Inc. All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest 2.2 Copyright (c) 2000-2015 www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-core 2.2 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-core 2.2 Copyright (c) 2000-2015 www.hamcrest.org All rights reserved. - ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-integration 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-integration 1.3 Copyright (c) 2000-2006, www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-library 2.2 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-library 2.2 Copyright (c) 2000-2015 www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.ow2.asm:asm 9.1 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.ow2.asm:asm 9.1 Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -== -the BSD License (three-clause) -== -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -junit:junit 4.13.2 -Copyright (C) The JUnit Team ------------------------------------------------------------------------ -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS -"Contribution" means: -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. -"Contributor" means any person or entity that distributes the Program. -"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. -"Program" means the Contributions distributed in accordance with this Agreement. -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -2. GRANT OF RIGHTS -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. -When the Program is made available in source code form: -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. -Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. -4. COMMERCIAL DISTRIBUTION -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. -5. NO WARRANTY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. -6. DISCLAIMER OF LIABILITY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -7. GENERAL -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. ------------------------------------------------------------------------ - - -org.checkerframework.checker.nullness.qual 2.5.5 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +== +the BSD License (three-clause) +== +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +junit:junit 4.13.2 +Copyright (C) The JUnit Team +----------------------------------------------------------------------- +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. +1. DEFINITIONS +"Contribution" means: +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. +"Program" means the Contributions distributed in accordance with this Agreement. +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. +2. GRANT OF RIGHTS +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. +Contributors may not remove or alter any copyright notices contained within the Program. +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +7. GENERAL +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +----------------------------------------------------------------------- + + +org.checkerframework.checker (The annotations only) 2.5.5 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- The annotations are licensed under the MIT License. More specifically, all the parts of the Checker Framework that you might want to include with your own program use the MIT License. This is the checker-qual.jar file and all the files that @@ -885,26 +1026,26 @@ different licenses. The Checker Framework includes annotations for the JDK in directory checker/jdk/, and for some other libraries. Each annotated library uses -the same license as the unannotated version of the library. - -org.checkerframework:checker-qual 3.22.1 +the same license as the unannotated version of the library. + +org.checkerframework:checker-qual 3.22.1 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -org.jsoup:jsoup 1.15.1 -Copyright (c) 2009-2022 Jonathan Hedley ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -== -the MIT License -== -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +org.jsoup:jsoup 1.15.1 +Copyright (c) 2009-2022 Jonathan Hedley +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +== +the MIT License +== +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/allure-support/build.gradle.kts b/allure-support/build.gradle.kts index 6e5b24bc9..dac03c48a 100644 --- a/allure-support/build.gradle.kts +++ b/allure-support/build.gradle.kts @@ -5,16 +5,6 @@ plugins { id("convention.legal-documents") } -// TODO: move to publishing convention -android { - libraryVariants.configureEach { - packageLibraryProvider.configure { - from("$rootDir/LICENSE.txt") - from("NOTICE.txt") - } - } -} - publish { artifactId.set("kaspresso-allure-support") } diff --git a/build-logic/publication/src/main/kotlin/convention.publication-android-lib.gradle.kts b/build-logic/publication/src/main/kotlin/convention.publication-android-lib.gradle.kts index 0234df9ac..7e99323a8 100644 --- a/build-logic/publication/src/main/kotlin/convention.publication-android-lib.gradle.kts +++ b/build-logic/publication/src/main/kotlin/convention.publication-android-lib.gradle.kts @@ -2,6 +2,7 @@ import com.android.build.gradle.LibraryExtension import com.kaspersky.kaspresso.publication.KotlinLibraryPublishExtension plugins { + id("com.android.library") id("convention.publication-base") } @@ -26,3 +27,12 @@ publishing { } } } + +android { + libraryVariants.configureEach { + packageLibraryProvider.configure { + from("$rootDir/LICENSE.txt") + from("NOTICE.txt") + } + } +} diff --git a/build-logic/publication/src/main/kotlin/convention.publication-kotlin-lib.gradle.kts b/build-logic/publication/src/main/kotlin/convention.publication-kotlin-lib.gradle.kts index 4116a366c..8dc06f1d1 100644 --- a/build-logic/publication/src/main/kotlin/convention.publication-kotlin-lib.gradle.kts +++ b/build-logic/publication/src/main/kotlin/convention.publication-kotlin-lib.gradle.kts @@ -2,6 +2,7 @@ import com.kaspersky.kaspresso.publication.KotlinLibraryPublishExtension plugins { id("convention.publication-base") + `java-library` } plugins.withId("kotlin") { @@ -25,3 +26,13 @@ publishing { } } } + +sourceSets { + main { + resources { + srcDirs(".", "$rootDir") + include("NOTICE.txt") + include("LICENSE.txt") + } + } +} diff --git a/compose-support/NOTICE.txt b/compose-support/NOTICE.txt index 2a2d46851..ede6ce811 100644 --- a/compose-support/NOTICE.txt +++ b/compose-support/NOTICE.txt @@ -1,657 +1,692 @@ -This file contains information about dependencies which are used in the Kaspresso/compose-support 1.5.2. - -androidx.activity:activity 1.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.activity:activity-compose 1.3.0 -Copyright 2020 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.activity:activity-ktx 1.5.1 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation 1.5.0 -Copyright 2014 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation-experimental 1.3.0 -Copyright 2019 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.appcompat:appcompat 1.3.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.appcompat:appcompat-resources 1.3.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.arch.core:core-common 2.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.arch.core:core-runtime 2.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.autofill:autofill 1.0.0 -Copyright 2019 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.cardview:cardview 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.collection:collection 1.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.runtime:runtime 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ +This file contains information about dependencies which are used in the Kaspresso/compose-support 1.5.3. + +androidx.activity:activity 1.6.0 +Copyright 2018-2022 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.activity:activity-compose 1.3.0 +Copyright 2020 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.activity:activity-ktx 1.6.0 +Copyright 2018-2020 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation 1.5.0 +Copyright 2014 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation-experimental 1.3.0 +Copyright 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.appcompat:appcompat 1.6.0 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.appcompat:appcompat-resources 1.6.0 +Copyright (C) 2012 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.arch.core:core-common 2.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.arch.core:core-runtime 2.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.autofill:autofill 1.0.0 +Copyright 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.cardview:cardview 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.collection:collection 1.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.runtime:runtime 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- This project includes kotlinx: * Copyright 2016-2020 JetBrains s.r.o. - * Use of this source code is governed by the Apache 2.0 License - -androidx.compose.runtime:runtime-saveable 1.3.3 -Copyright 2021 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-geometry 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-graphics 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-test 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-test-junit4 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-text 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-unit 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.compose.ui:ui-util 1.3.3 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.concurrent:concurrent-futures 1.1.0 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.constraintlayout:constraintlayout 2.0.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.constraintlayout:constraintlayout-solver 2.0.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.coordinatorlayout:coordinatorlayout 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.core:core 1.9.0 -Copyright (C) 2014 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.core:core-ktx 1.9.0 -Copyright (C) 2017 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.cursoradapter:cursoradapter 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.customview:customview 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.customview:customview-poolingcontainer 1.0.0 -Copyright 2021 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.documentfile:documentfile 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.drawerlayout:drawerlayout 1.1.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.dynamicanimation:dynamicanimation 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.fragment:fragment 1.3.4 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.interpolator:interpolator 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.legacy:legacy-support-core-utils 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-common 2.5.1 -Copyright (C) 2017-2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-common-java8 2.5.1 -Copyright (C) 2017 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-livedata 2.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-livedata-core 2.5.1 -Copyright (C) 2017 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-runtime 2.5.1 -Copyright (C) 2017, 2019 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-runtime-ktx 2.5.1 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel 2.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel-ktx 2.5.1 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel-savedstate 2.5.1 -Copyright The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.loader:loader 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.localbroadcastmanager:localbroadcastmanager 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.multidex:multidex 2.0.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.print:print 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.profileinstaller:profileinstaller 1.2.0 -Copyright (C) 2021 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.recyclerview:recyclerview 1.2.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.savedstate:savedstate 1.2.0 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.savedstate:savedstate-ktx 1.2.0 -Copyright (C) 2020 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.startup:startup-runtime 1.1.1 -Copyright (C) 2020 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.swiperefreshlayout:swiperefreshlayout 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-contrib 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-core 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-idling-resource 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-intents 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-web 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.ext:junit 1.1.3 -Copyright 2021 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.services:storage 1.4.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.uiautomator:uiautomator 2.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:annotation 1.0.1 -Copyright (C) 2015 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:core 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:monitor 1.6.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:rules 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:runner 1.5.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.tracing:tracing 1.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.transition:transition 1.2.0 -https://developer.android.com/jetpack/androidx/migrate/artifact-mappings ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.vectordrawable:vectordrawable 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.vectordrawable:vectordrawable-animated 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.versionedparcelable:versionedparcelable 1.1.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.viewpager2:viewpager2 1.0.0 -https://developer.android.com/jetpack/androidx/releases/viewpager2 ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.viewpager:viewpager 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework 4.0.0 -Copyright (C) 2017 Google Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.android.material:material 1.4.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.auto.value:auto-value-annotations 1.8.1 -Copyright 2012 Google LLC ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.findbugs:jsr305 3.0.2 -https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.gson:gson 2.9.1 -Copyright 2008-2011 Google Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.errorprone:error_prone_annotations 2.14.0 -Copyright 2015 The Error Prone Authors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:failureaccess 1.0.1 -Copyright (C) 2018 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:guava 31.0.1-android -Copyright (C) 2010 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava -Copyright (C) 2009 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.j2objc:j2objc-annotations 1.3 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.truth:truth 1.1.3 -Copyright (c) 2014 Google, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.squareup:javawriter 2.1.1 -Copyright 2013 Square, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.github.kakaocup:compose 0.2.3 -https://github.com/KakaoCup/Compose ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.github.kakaocup:kakao 3.2.3 -https://github.com/KakaoCup/Kakao ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -javax.inject:javax.inject 1 -Copyright (C) 2009 The JSR-330 Expert Group ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.ccil.cowan.tagsoup:tagsoup 1.2.1 -Copyright 2002-2008 by John Cowan ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib 1.7.21 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ + * Use of this source code is governed by the Apache 2.0 License + +androidx.compose.runtime:runtime-saveable 1.3.3 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-geometry 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-graphics 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-test 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-test-junit4 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-text 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-unit 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.compose.ui:ui-util 1.3.3 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.concurrent:concurrent-futures 1.1.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.constraintlayout:constraintlayout 2.0.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.constraintlayout:constraintlayout-solver 2.0.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.coordinatorlayout:coordinatorlayout 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.core:core 1.9.0 +Copyright (C) 2014 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.core:core-ktx 1.9.0 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.cursoradapter:cursoradapter 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.customview:customview 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.customview:customview-poolingcontainer 1.0.0 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.documentfile:documentfile 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.drawerlayout:drawerlayout 1.1.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.dynamicanimation:dynamicanimation 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.emoji2:emoji2 1.2.0 +Copyright 2021-2022 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.emoji2:emoji2-views-helper 1.2.0 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.fragment:fragment 1.3.6 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.interpolator:interpolator 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.legacy:legacy-support-core-utils 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-common 2.5.1 +Copyright (C) 2017-2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-common-java8 2.5.1 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-livedata 2.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-livedata-core 2.5.1 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-process 2.4.1 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-runtime 2.5.1 +Copyright (C) 2017, 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-runtime-ktx 2.5.1 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel 2.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel-ktx 2.5.1 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel-savedstate 2.5.1 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.loader:loader 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.localbroadcastmanager:localbroadcastmanager 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.multidex:multidex 2.0.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.print:print 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.profileinstaller:profileinstaller 1.2.0 +Copyright (C) 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.recyclerview:recyclerview 1.2.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.resourceinspection:resourceinspection-annotation 1.0.1 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.savedstate:savedstate 1.2.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.savedstate:savedstate-ktx 1.2.0 +Copyright (C) 2020 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.startup:startup-runtime 1.1.1 +Copyright (C) 2020 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.swiperefreshlayout:swiperefreshlayout 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-contrib 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-core 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-idling-resource 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-intents 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-web 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.ext:junit 1.1.3 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.services:storage 1.4.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.uiautomator:uiautomator 2.2.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:annotation 1.0.1 +Copyright (C) 2015 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:core 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:monitor 1.6.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:rules 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:runner 1.5.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.tracing:tracing 1.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.transition:transition 1.2.0 +https://developer.android.com/jetpack/androidx/migrate/artifact-mappings +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.vectordrawable:vectordrawable 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.vectordrawable:vectordrawable-animated 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.versionedparcelable:versionedparcelable 1.1.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.viewpager2:viewpager2 1.0.0 +https://developer.android.com/jetpack/androidx/releases/viewpager2 +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.viewpager:viewpager 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework 4.0.0 +Copyright (C) 2017 Google Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.android.material:material 1.6.1 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.auto.value:auto-value-annotations 1.8.1 +Copyright 2012 Google LLC +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.findbugs:jsr305 3.0.2 +https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.gson:gson 2.9.1 +Copyright 2008-2011 Google Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.errorprone:error_prone_annotations 2.14.0 +Copyright 2015 The Error Prone Authors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:failureaccess 1.0.1 +Copyright (C) 2018 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:guava 31.0.1-android +Copyright (C) 2010 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava +Copyright (C) 2009 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.j2objc:j2objc-annotations 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.truth:truth 1.1.3 +Copyright (c) 2014 Google, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.squareup:javawriter 2.1.1 +Copyright 2013 Square, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:compose 0.2.3 +https://github.com/KakaoCup/Compose +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:kakao 3.4.1 +https://github.com/KakaoCup/Kakao +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:kakao-ext-clicks 1.0.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +javax.inject:javax.inject 1 +Copyright (C) 2009 The JSR-330 Expert Group +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.ccil.cowan.tagsoup:tagsoup 1.2.1 +Copyright 2002-2008 by John Cowan +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib 1.7.21 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- The Apache 2 license applies to all code in this repository which is copyright by JetBrains. The following sections of the repository contain third-party code, to which different licenses may apply: @@ -754,74 +789,74 @@ Sun License Developed at SunSoft, a Sun Microsystems, Inc. business. Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice -is preserved. - -org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib-jdk7 1.7.20 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib-jdk8 1.7.20 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-coroutines-android 1.6.4 -Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-coroutines-bom 1.6.4 -Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-coroutines-core 1.6.4 -Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm 1.6.4 -Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-coroutines-test 1.6.4 +is preserved. + +org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib-jdk7 1.7.20 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib-jdk8 1.7.20 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-android 1.6.4 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-bom 1.6.4 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-core 1.6.4 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm 1.6.4 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-test 1.6.4 kotlinx.coroutines library. -Copyright 2016-2021 JetBrains s.r.o and respective authors and developers ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm 1.6.4 +Copyright 2016-2021 JetBrains s.r.o and respective authors and developers +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm 1.6.4 kotlinx.coroutines library. -Copyright 2016-2021 JetBrains s.r.o and respective authors and developers ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains:annotations 13.0 +Copyright 2016-2021 JetBrains s.r.o and respective authors and developers +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains:annotations 13.0 Copyright 2000-2016 JetBrains s.r.o. Licensed under the Apache License, Version 2.0 (the "License"); @@ -834,155 +869,176 @@ Copyright 2000-2016 JetBrains s.r.o. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS - - -com.google.protobuf:protobuf-javalite 3.19.1 -Copyright 2008 Google Inc. All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest 2.2 + limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +com.google.protobuf:protobuf-javalite 3.19.1 +Copyright 2008 Google Inc. All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest 2.2 Copyright (c) 2000-2015 www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-core 2.2 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-core 2.2 Copyright (c) 2000-2015 www.hamcrest.org All rights reserved. - ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-integration 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-integration 1.3 Copyright (c) 2000-2006, www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-library 2.2 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-library 2.2 Copyright (c) 2000-2015 www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.ow2.asm:asm 9.1 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.ow2.asm:asm 9.1 Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -== -the BSD License (three-clause) -== -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -junit:junit 4.13.2 -Copyright (C) The JUnit Team ------------------------------------------------------------------------ -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS -"Contribution" means: -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. -"Contributor" means any person or entity that distributes the Program. -"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. -"Program" means the Contributions distributed in accordance with this Agreement. -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -2. GRANT OF RIGHTS -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. -When the Program is made available in source code form: -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. -Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. -4. COMMERCIAL DISTRIBUTION -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. -5. NO WARRANTY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. -6. DISCLAIMER OF LIABILITY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -7. GENERAL -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. ------------------------------------------------------------------------ - - -org.checkerframework.checker.nullness.qual 2.5.5 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +== +the BSD License (three-clause) +== +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +junit:junit 4.13.2 +Copyright (C) The JUnit Team +----------------------------------------------------------------------- +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. +1. DEFINITIONS +"Contribution" means: +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. +"Program" means the Contributions distributed in accordance with this Agreement. +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. +2. GRANT OF RIGHTS +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. +Contributors may not remove or alter any copyright notices contained within the Program. +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +7. GENERAL +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +----------------------------------------------------------------------- + + +org.checkerframework.checker (The annotations only) 2.5.5 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- The annotations are licensed under the MIT License. More specifically, all the parts of the Checker Framework that you might want to include with your own program use the MIT License. This is the checker-qual.jar file and all the files that @@ -1010,26 +1066,26 @@ different licenses. The Checker Framework includes annotations for the JDK in directory checker/jdk/, and for some other libraries. Each annotated library uses -the same license as the unannotated version of the library. - -org.checkerframework:checker-qual 3.22.1 +the same license as the unannotated version of the library. + +org.checkerframework:checker-qual 3.22.1 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -org.jsoup:jsoup 1.15.1 -Copyright (c) 2009-2022 Jonathan Hedley ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -== -the MIT License -== -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +org.jsoup:jsoup 1.15.1 +Copyright (c) 2009-2022 Jonathan Hedley +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +== +the MIT License +== +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/compose-support/build.gradle.kts b/compose-support/build.gradle.kts index 469c66074..6218ed373 100644 --- a/compose-support/build.gradle.kts +++ b/compose-support/build.gradle.kts @@ -5,16 +5,6 @@ plugins { id("convention.legal-documents") } -// TODO: move to publishing convention -android { - libraryVariants.configureEach { - packageLibraryProvider.configure { - from("$rootDir/LICENSE.txt") - from("NOTICE.txt") - } - } -} - publish { artifactId.set("kaspresso-compose-support") } diff --git a/gradle.properties b/gradle.properties index 7e10d0166..3606591a3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,4 +6,4 @@ kotlin.code.style=official android.useAndroidX = true -kaspresso.version=1.5.0 +kaspresso.version=1.5.3 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 543de9700..278dc38b6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -12,7 +12,7 @@ activityCompose = "1.4.0" androidXTest = "1.5.0" testOrchestrator = "1.4.2" lifecycle = "2.5.1" -thirdPartyReport = "0.17.798" +thirdPartyReport = "0.18.956" [libraries] # plugins diff --git a/kaspresso/NOTICE.txt b/kaspresso/NOTICE.txt index f1d6911f0..fe137c3f0 100644 --- a/kaspresso/NOTICE.txt +++ b/kaspresso/NOTICE.txt @@ -1,493 +1,542 @@ -This file contains information about dependencies which are used in the Kaspresso/kaspresso 1.5.2. - -androidx.activity:activity 1.2.3 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation 1.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation-experimental 1.3.0 -Copyright 2019 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.appcompat:appcompat 1.3.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.appcompat:appcompat-resources 1.3.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.arch.core:core-common 2.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.arch.core:core-runtime 2.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.cardview:cardview 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.collection:collection 1.1.0 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.concurrent:concurrent-futures 1.1.0 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.constraintlayout:constraintlayout 2.0.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.constraintlayout:constraintlayout-solver 2.0.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.coordinatorlayout:coordinatorlayout 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.core:core 1.9.0 -Copyright (C) 2014 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.cursoradapter:cursoradapter 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.customview:customview 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.documentfile:documentfile 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.drawerlayout:drawerlayout 1.1.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.dynamicanimation:dynamicanimation 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.fragment:fragment 1.3.4 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.interpolator:interpolator 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.legacy:legacy-support-core-utils 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-common 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-livedata 2.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-livedata-core 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-runtime 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-viewmodel-savedstate 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.loader:loader 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.localbroadcastmanager:localbroadcastmanager 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.multidex:multidex 2.0.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.print:print 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.recyclerview:recyclerview 1.2.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.savedstate:savedstate 1.1.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.swiperefreshlayout:swiperefreshlayout 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-contrib 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-core 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-idling-resource 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-intents 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.espresso:espresso-web 3.5.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.services:storage 1.4.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.uiautomator:uiautomator 2.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:annotation 1.0.1 -Copyright (C) 2015 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:core 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:monitor 1.6.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:rules 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:runner 1.5.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.tracing:tracing 1.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.transition:transition 1.2.0 -https://developer.android.com/jetpack/androidx/migrate/artifact-mappings ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.vectordrawable:vectordrawable 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.vectordrawable:vectordrawable-animated 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.versionedparcelable:versionedparcelable 1.1.1 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.viewpager2:viewpager2 1.0.0 -https://developer.android.com/jetpack/androidx/releases/viewpager2 ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.viewpager:viewpager 1.0.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework 4.0.0 -Copyright (C) 2017 Google Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.android.material:material 1.4.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.auto.value:auto-value-annotations 1.8.1 -Copyright 2012 Google LLC ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.findbugs:jsr305 3.0.2 -https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.gson:gson 2.9.1 -Copyright 2008-2011 Google Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.errorprone:error_prone_annotations 2.14.0 -Copyright 2015 The Error Prone Authors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:failureaccess 1.0.1 -Copyright (C) 2018 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:guava 31.0.1-android -Copyright (C) 2010 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava -Copyright (C) 2009 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.j2objc:j2objc-annotations 1.3 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.truth:truth 1.1.3 -Copyright (c) 2014 Google, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.squareup:javawriter 2.1.1 -Copyright 2013 Square, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -io.github.kakaocup:kakao 3.4.1 -https://github.com/KakaoCup/Kakao ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -javax.inject:javax.inject 1 -Copyright (C) 2009 The JSR-330 Expert Group ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.ccil.cowan.tagsoup:tagsoup 1.2.1 -Copyright 2002-2008 by John Cowan ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib 1.7.21 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ +This file contains information about dependencies which are used in the Kaspresso/kaspresso 1.5.3. + +androidx.activity:activity 1.6.0 +Copyright 2018-2022 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation 1.3.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation-experimental 1.3.0 +Copyright 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.appcompat:appcompat 1.6.0 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.appcompat:appcompat-resources 1.6.0 +Copyright (C) 2012 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.arch.core:core-common 2.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.arch.core:core-runtime 2.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.cardview:cardview 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.collection:collection 1.1.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.concurrent:concurrent-futures 1.1.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.constraintlayout:constraintlayout 2.0.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.constraintlayout:constraintlayout-solver 2.0.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.coordinatorlayout:coordinatorlayout 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.core:core 1.9.0 +Copyright (C) 2014 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.core:core-ktx 1.9.0 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.cursoradapter:cursoradapter 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.customview:customview 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.documentfile:documentfile 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.drawerlayout:drawerlayout 1.1.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.dynamicanimation:dynamicanimation 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.emoji2:emoji2 1.2.0 +Copyright 2021-2022 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.emoji2:emoji2-views-helper 1.2.0 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.fragment:fragment 1.3.6 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.interpolator:interpolator 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.legacy:legacy-support-core-utils 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-common 2.5.1 +Copyright (C) 2017-2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-livedata 2.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-livedata-core 2.5.1 +Copyright (C) 2017 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-process 2.4.1 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-runtime 2.5.1 +Copyright (C) 2017, 2019 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel 2.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-viewmodel-savedstate 2.5.1 +Copyright The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.loader:loader 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.localbroadcastmanager:localbroadcastmanager 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.multidex:multidex 2.0.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.print:print 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.recyclerview:recyclerview 1.2.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.resourceinspection:resourceinspection-annotation 1.0.1 +Copyright 2021 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.savedstate:savedstate 1.2.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.startup:startup-runtime 1.1.1 +Copyright (C) 2020 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.swiperefreshlayout:swiperefreshlayout 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-contrib 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-core 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-idling-resource 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-intents 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.espresso:espresso-web 3.5.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.services:storage 1.4.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.uiautomator:uiautomator 2.2.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:annotation 1.0.1 +Copyright (C) 2015 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:core 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:monitor 1.6.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:rules 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:runner 1.5.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.tracing:tracing 1.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.transition:transition 1.2.0 +https://developer.android.com/jetpack/androidx/migrate/artifact-mappings +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.vectordrawable:vectordrawable 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.vectordrawable:vectordrawable-animated 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.versionedparcelable:versionedparcelable 1.1.1 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.viewpager2:viewpager2 1.0.0 +https://developer.android.com/jetpack/androidx/releases/viewpager2 +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.viewpager:viewpager 1.0.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework 4.0.0 +Copyright (C) 2017 Google Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.android.material:material 1.6.1 +Copyright (C) 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.auto.value:auto-value-annotations 1.8.1 +Copyright 2012 Google LLC +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.findbugs:jsr305 3.0.2 +https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.gson:gson 2.9.1 +Copyright 2008-2011 Google Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.errorprone:error_prone_annotations 2.14.0 +Copyright 2015 The Error Prone Authors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:failureaccess 1.0.1 +Copyright (C) 2018 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:guava 31.0.1-android +Copyright (C) 2010 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava +Copyright (C) 2009 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.j2objc:j2objc-annotations 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.truth:truth 1.1.3 +Copyright (c) 2014 Google, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.squareup:javawriter 2.1.1 +Copyright 2013 Square, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:kakao 3.4.1 +https://github.com/KakaoCup/Kakao +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +io.github.kakaocup:kakao-ext-clicks 1.0.0 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +javax.inject:javax.inject 1 +Copyright (C) 2009 The JSR-330 Expert Group +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.ccil.cowan.tagsoup:tagsoup 1.2.1 +Copyright 2002-2008 by John Cowan +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib 1.7.21 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- The Apache 2 license applies to all code in this repository which is copyright by JetBrains. The following sections of the repository contain third-party code, to which different licenses may apply: @@ -589,17 +638,95 @@ Sun License Developed at SunSoft, a Sun Microsystems, Inc. business. Permission to use, copy, modify, and distribute this -software is freely granted, provided that this notice -is preserved. - -org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21 -Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains:annotations 13.0 +software is freely granted, provided that this notice +is preserved. + +org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib-jdk7 1.6.0 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib-jdk8 1.6.0 +Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-android 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-bom 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-core 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm 1.6.1 +Copyright 2000-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains:annotations 13.0 Copyright 2000-2016 JetBrains s.r.o. Licensed under the Apache License, Version 2.0 (the "License"); @@ -612,155 +739,176 @@ Copyright 2000-2016 JetBrains s.r.o. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS - - -com.google.protobuf:protobuf-javalite 3.19.1 -Copyright 2008 Google Inc. All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest 2.2 + limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +com.google.protobuf:protobuf-javalite 3.19.1 +Copyright 2008 Google Inc. All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest 2.2 Copyright (c) 2000-2015 www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-core 2.2 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-core 2.2 Copyright (c) 2000-2015 www.hamcrest.org All rights reserved. - ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-integration 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-integration 1.3 Copyright (c) 2000-2006, www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.hamcrest:hamcrest-library 2.2 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.hamcrest:hamcrest-library 2.2 Copyright (c) 2000-2015 www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -org.ow2.asm:asm 9.1 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +org.ow2.asm:asm 9.1 Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -== -the BSD License (three-clause) -== -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -junit:junit 4.13.2 -Copyright (C) The JUnit Team ------------------------------------------------------------------------ -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS -"Contribution" means: -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. -"Contributor" means any person or entity that distributes the Program. -"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. -"Program" means the Contributions distributed in accordance with this Agreement. -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -2. GRANT OF RIGHTS -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. -When the Program is made available in source code form: -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. -Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. -4. COMMERCIAL DISTRIBUTION -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. -5. NO WARRANTY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. -6. DISCLAIMER OF LIABILITY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -7. GENERAL -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. ------------------------------------------------------------------------ - - -org.checkerframework.checker.nullness.qual 2.5.5 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +== +the BSD License (three-clause) +== +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +junit:junit 4.13.2 +Copyright (C) The JUnit Team +----------------------------------------------------------------------- +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. +1. DEFINITIONS +"Contribution" means: +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. +"Program" means the Contributions distributed in accordance with this Agreement. +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. +2. GRANT OF RIGHTS +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. +Contributors may not remove or alter any copyright notices contained within the Program. +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +7. GENERAL +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +----------------------------------------------------------------------- + + +org.checkerframework.checker (The annotations only) 2.5.5 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- The annotations are licensed under the MIT License. More specifically, all the parts of the Checker Framework that you might want to include with your own program use the MIT License. This is the checker-qual.jar file and all the files that @@ -788,26 +936,26 @@ different licenses. The Checker Framework includes annotations for the JDK in directory checker/jdk/, and for some other libraries. Each annotated library uses -the same license as the unannotated version of the library. - -org.checkerframework:checker-qual 3.22.1 +the same license as the unannotated version of the library. + +org.checkerframework:checker-qual 3.22.1 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -org.jsoup:jsoup 1.15.1 -Copyright (c) 2009-2022 Jonathan Hedley ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -== -the MIT License -== -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +org.jsoup:jsoup 1.15.1 +Copyright (c) 2009-2022 Jonathan Hedley +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +== +the MIT License +== +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/kaspresso/build.gradle.kts b/kaspresso/build.gradle.kts index 8bd1f3772..023d1cd88 100644 --- a/kaspresso/build.gradle.kts +++ b/kaspresso/build.gradle.kts @@ -5,16 +5,6 @@ plugins { id("convention.legal-documents") } -// TODO: move to publishing convention -android { - libraryVariants.configureEach { - packageLibraryProvider.configure { - from("$rootDir/LICENSE.txt") - from("NOTICE.txt") - } - } -} - publish { artifactId.set("kaspresso") } @@ -30,7 +20,7 @@ dependencies { implementation(libs.kotlinStdlib) implementation(libs.gson) - implementation(projects.adbServer.adbserverDevice) + implementation(projects.adbServer.adbServerDevice) implementation(libs.appcompat) implementation(libs.material) diff --git a/kautomator/NOTICE.txt b/kautomator/NOTICE.txt index 36ddec026..1eff04bf4 100644 --- a/kautomator/NOTICE.txt +++ b/kautomator/NOTICE.txt @@ -1,132 +1,132 @@ -This file contains information about dependencies which are used in the Kaspresso/kautomator 1.5.2. - -androidx.annotation:annotation 1.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.annotation:annotation-experimental 1.1.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.concurrent:concurrent-futures 1.1.0 -Copyright 2018 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.lifecycle:lifecycle-common 2.3.1 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.services:storage 1.4.2 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test.uiautomator:uiautomator 2.2.0 -The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:annotation 1.0.1 -Copyright (C) 2015 The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:core 1.5.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.test:monitor 1.6.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -androidx.tracing:tracing 1.0.0 -Copyright (C) The Android Open Source Project ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.auto.value:auto-value-annotations 1.8.1 -Copyright 2012 Google LLC ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.code.findbugs:jsr305 3.0.2 -https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.errorprone:error_prone_annotations 2.7.1 -Copyright 2015 The Error Prone Authors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:failureaccess 1.0.1 -Copyright (C) 2018 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:guava 30.1.1-android -Copyright (C) 2012 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava -Copyright (C) 2009 The Guava Authors ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.j2objc:j2objc-annotations 1.3 - ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -com.google.truth:truth 1.1.3 -Copyright (c) 2014 Google, Inc. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains.kotlin:kotlin-stdlib 1.7.10 +This file contains information about dependencies which are used in the Kaspresso/kautomator 1.5.3. + +androidx.annotation:annotation 1.2.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.annotation:annotation-experimental 1.1.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.concurrent:concurrent-futures 1.1.0 +Copyright 2018 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.lifecycle:lifecycle-common 2.3.1 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.services:storage 1.4.2 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test.uiautomator:uiautomator 2.2.0 +The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:annotation 1.0.1 +Copyright (C) 2015 The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:core 1.5.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.test:monitor 1.6.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +androidx.tracing:tracing 1.0.0 +Copyright (C) The Android Open Source Project +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.auto.value:auto-value-annotations 1.8.1 +Copyright 2012 Google LLC +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.code.findbugs:jsr305 3.0.2 +https://repo1.maven.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.errorprone:error_prone_annotations 2.7.1 +Copyright 2015 The Error Prone Authors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:failureaccess 1.0.1 +Copyright (C) 2018 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:guava 30.1.1-android +Copyright (C) 2012 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.guava:listenablefuture 9999.0-empty-to-avoid-conflict-with-guava +Copyright (C) 2009 The Guava Authors +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.j2objc:j2objc-annotations 1.3 + +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +com.google.truth:truth 1.1.3 +Copyright (c) 2014 Google, Inc. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains.kotlin:kotlin-stdlib 1.7.10 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -139,10 +139,10 @@ org.jetbrains.kotlin:kotlin-stdlib 1.7.10 * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and - * limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ + * limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- The following modules contain third-party code and are incorporated into the Kotlin compiler and/or the Kotlin IntelliJ IDEA plugin: Path: libraries/stdlib/src/kotlin/collections @@ -198,16 +198,16 @@ Origin: Copyright (C) 2018 Chad Retz Path: libraries/stdlib/wasm/src/kotlin/math/fdlibm/ License: SUN ([license/third_party/sun_license.txt][sun]) -Origin: Copyright (C) 1993 by Sun Microsystems, Inc. - -org.jetbrains.kotlin:kotlin-stdlib-common 1.7.10 -Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -org.jetbrains:annotations 13.0 +Origin: Copyright (C) 1993 by Sun Microsystems, Inc. + +org.jetbrains.kotlin:kotlin-stdlib-common 1.7.10 +Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +org.jetbrains:annotations 13.0 Copyright 2000-2016 JetBrains s.r.o. Licensed under the Apache License, Version 2.0 (the "License"); @@ -220,97 +220,119 @@ Copyright 2000-2016 JetBrains s.r.o. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. ------------------------------------------------------------------------ -Distributed under the terms of the Apache License Version 2.0 ------------------------------------------------------------------------ - - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -1. Definitions. -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: -(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and -(b) You must cause any modified files to carry prominent notices stating that You changed the files; and -(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and -(d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS - - -junit:junit 4.13.2 -Copyright (C) The JUnit Team ------------------------------------------------------------------------ -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. -1. DEFINITIONS -"Contribution" means: -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: -i) changes to the Program, and -ii) additions to the Program; -where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. -"Contributor" means any person or entity that distributes the Program. -"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. -"Program" means the Contributions distributed in accordance with this Agreement. -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. -2. GRANT OF RIGHTS -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. -3. REQUIREMENTS -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: -a) it complies with the terms and conditions of this Agreement; and -b) its license agreement: -i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and -iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. -When the Program is made available in source code form: -a) it must be made available under this Agreement; and -b) a copy of this Agreement must be included with each copy of the Program. -Contributors may not remove or alter any copyright notices contained within the Program. -Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. -4. COMMERCIAL DISTRIBUTION -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. -5. NO WARRANTY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. -6. DISCLAIMER OF LIABILITY -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -7. GENERAL -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. ------------------------------------------------------------------------ - - -org.checkerframework.checker.nullness.qual 2.5.5 + limitations under the License. +----------------------------------------------------------------------- +Distributed under the terms of the Apache License Version 2.0 +----------------------------------------------------------------------- + + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +junit:junit 4.13.2 +Copyright (C) The JUnit Team +----------------------------------------------------------------------- +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. +1. DEFINITIONS +"Contribution" means: +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the Program. +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. +"Program" means the Contributions distributed in accordance with this Agreement. +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. +2. GRANT OF RIGHTS +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: +a) it complies with the terms and conditions of this Agreement; and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of the Program. +Contributors may not remove or alter any copyright notices contained within the Program. +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +7. GENERAL +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +----------------------------------------------------------------------- + + +org.checkerframework.checker (The annotations only) 2.5.5 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- The annotations are licensed under the MIT License. More specifically, all the parts of the Checker Framework that you might want to include with your own program use the MIT License. This is the checker-qual.jar file and all the files that @@ -338,45 +360,44 @@ different licenses. The Checker Framework includes annotations for the JDK in directory checker/jdk/, and for some other libraries. Each annotated library uses -the same license as the unannotated version of the library. - -org.checkerframework:checker-qual 3.13.0 +the same license as the unannotated version of the library. + +org.checkerframework:checker-qual 3.13.0 Checker Framework qualifiers -Copyright 2004-present by the Checker Framework developers ------------------------------------------------------------------------ -Distributed under the terms of the MIT License ------------------------------------------------------------------------ - - -== -the MIT License -== -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -org.hamcrest:hamcrest-core 1.3 +Copyright 2004-present by the Checker Framework developers +----------------------------------------------------------------------- +Distributed under the terms of the MIT License +----------------------------------------------------------------------- + + +== +the MIT License +== +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +org.hamcrest:hamcrest-core 1.3 Copyright (c) 2000-2006, www.hamcrest.org -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ -Neither the name of Hamcrest nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -org.ow2.asm:asm 9.1 +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- +Neither the name of Hamcrest nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +org.ow2.asm:asm 9.1 Copyright (c) 2000-2011 INRIA, France Telecom -All rights reserved. ------------------------------------------------------------------------ -Distributed under the terms of the BSD License (three-clause) ------------------------------------------------------------------------ - - -== -the BSD License (three-clause) -== -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +All rights reserved. +----------------------------------------------------------------------- +Distributed under the terms of the BSD License (three-clause) +----------------------------------------------------------------------- + + +== +the BSD License (three-clause) +== +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/kautomator/build.gradle.kts b/kautomator/build.gradle.kts index 7df1d0eef..936b5afa5 100644 --- a/kautomator/build.gradle.kts +++ b/kautomator/build.gradle.kts @@ -5,16 +5,6 @@ plugins { id("convention.legal-documents") } -// TODO: move to publishing convention -android { - libraryVariants.configureEach { - packageLibraryProvider.configure { - from("$rootDir/LICENSE.txt") - from("NOTICE.txt") - } - } -} - publish { artifactId.set("kautomator") } diff --git a/samples/adbserver-sample/build.gradle.kts b/samples/adbserver-sample/build.gradle.kts index 35a32975b..95453b4bc 100644 --- a/samples/adbserver-sample/build.gradle.kts +++ b/samples/adbserver-sample/build.gradle.kts @@ -11,6 +11,6 @@ android { dependencies { implementation(libs.kotlinStdlib) implementation(libs.appcompat) - implementation(projects.adbServer.adbserverDevice) + implementation(projects.adbServer.adbServerDevice) implementation(libs.multidex) } diff --git a/settings.gradle.kts b/settings.gradle.kts index 8679062d6..f334765f9 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -26,12 +26,12 @@ dependencyResolutionManagement { includeBuild("build-logic") include( - ":adb-server:adbserver-command-types", - ":adb-server:adbserver-common", - ":adb-server:adbserver-connection", + ":adb-server:adb-server-command-types", + ":adb-server:adb-server-common", + ":adb-server:adb-server-connection", ":adb-server:adbserver-desktop", - ":adb-server:adbserver-desktop-device-connection", - ":adb-server:adbserver-device", + ":adb-server:adb-server-desktop-device-connection", + ":adb-server:adb-server-device", ":kaspresso", ":kautomator",