├── .asf.yaml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── deploysettings.xml ├── flink-shaded-asm-9 ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ ├── NOTICE │ └── licenses │ └── LICENSE.asm ├── flink-shaded-force-shading └── pom.xml ├── flink-shaded-guava-33 ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── NOTICE ├── flink-shaded-jackson-parent ├── flink-shaded-jackson-2 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE ├── flink-shaded-jackson-module-jsonSchema-2 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE ├── flink-shaded-jsonpath │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE └── pom.xml ├── flink-shaded-netty-4 ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── NOTICE ├── flink-shaded-netty-tcnative-dynamic ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── NOTICE ├── flink-shaded-netty-tcnative-static ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── NOTICE ├── flink-shaded-swagger ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ ├── NOTICE │ └── licenses │ └── LICENSE.jakarta_edl-v10 ├── flink-shaded-zookeeper-parent ├── flink-shaded-zookeeper-35 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE ├── flink-shaded-zookeeper-36 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE ├── flink-shaded-zookeeper-37 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE ├── flink-shaded-zookeeper-38 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── NOTICE └── pom.xml ├── pom.xml └── tools ├── ci └── log4j.properties ├── releasing ├── create_release_branch.sh ├── create_source_release.sh ├── deploy_staging_jars.sh └── update_branch_version.sh └── update_notice_year.sh /.asf.yaml: -------------------------------------------------------------------------------- 1 | notifications: 2 | commits: commits@flink.apache.org 3 | issues: issues@flink.apache.org 4 | pullrequests: issues@flink.apache.org 5 | jira_options: link label 6 | 7 | github: 8 | enabled_merge_buttons: 9 | squash: true 10 | merge: false 11 | rebase: true 12 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | name: Java 8 Build 17 | 18 | on: [push, pull_request] 19 | 20 | jobs: 21 | build: 22 | runs-on: ubuntu-latest 23 | env: 24 | MVN_COMMON_OPTIONS: -U -B --no-transfer-progress -Pinclude-netty-tcnative-static 25 | MVN_BUILD_OUTPUT_FILE: "/tmp/mvn_build_output.out" 26 | MVN_VALIDATION_DIR: "/tmp/flink-validation-deployment" 27 | 28 | steps: 29 | - uses: actions/checkout@v2 30 | 31 | - name: Set JDK 32 | uses: actions/setup-java@v2 33 | with: 34 | java-version: 8 35 | distribution: 'temurin' 36 | cache: 'maven' 37 | 38 | - name: Set Maven 3.8.6 39 | uses: stCarolas/setup-maven@v4.2 40 | with: 41 | maven-version: 3.8.6 42 | 43 | - name: Build 44 | run: | 45 | set -o pipefail 46 | 47 | mvn clean deploy ${{ env.MVN_COMMON_OPTIONS }} \ 48 | -DaltDeploymentRepository=validation_repository::default::file:${{ env.MVN_VALIDATION_DIR }} \ 49 | -Plicense-check \ 50 | | tee ${{ env.MVN_BUILD_OUTPUT_FILE }} 51 | 52 | - name: Check licensing 53 | run: | 54 | mvn ${MVN_COMMON_OPTIONS} exec:java@check-license -N \ 55 | -Dexec.args="${{ env.MVN_BUILD_OUTPUT_FILE }} $(pwd) ${{ env.MVN_VALIDATION_DIR }}" \ 56 | -Dlog4j.configurationFile=file://$(pwd)/tools/ci/log4j.properties -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .idea 3 | target 4 | *.iml 5 | tools/release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Apache Flink 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 19 | 20 | # Apache Flink Shaded Dependencies 21 | 22 | This repository contains a number of shaded dependencies for the [Apache Flink](https://flink.apache.org/) project. 23 | 24 | The purpose of these dependencies is to provide a single instance of a shaded dependency in the Flink distribution, instead of each individual module shading the dependency. 25 | 26 | Shaded dependencies contained here do not expose any transitive dependencies. They may or may not be self-contained. 27 | 28 | When using these dependencies it is recommended to work directly against the shaded namespaces. 29 | 30 | ## Sources 31 | 32 | We currently do not release jars containing the shaded sources due to the unanswered legal questions raised [here](https://github.com/apache/flink-shaded/issues/25). 33 | 34 | However, it is possible to build these jars locally by cloning the repository and calling `mvn clean package -Dshade-sources`. 35 | 36 | ## About 37 | 38 | Apache Flink is an open source project of [The Apache Software Foundation](https://apache.org/) (ASF). 39 | -------------------------------------------------------------------------------- /deploysettings.xml: -------------------------------------------------------------------------------- 1 | 20 | 21 | 25 | 26 | 27 | apache.snapshots.https 28 | ${sonatype_user} 29 | ${sonatype_pw} 30 | 31 | 32 | apache.releases.https 33 | ${sonatype_user} 34 | ${sonatype_pw} 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /flink-shaded-asm-9/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-asm-${asm.major.version} 32 | ${asm.version}-21.0 33 | 34 | jar 35 | 36 | 37 | 9 38 | ${asm.major.version}.6 39 | 40 | 41 | 42 | 43 | org.ow2.asm 44 | asm 45 | ${asm.version} 46 | 47 | 48 | 49 | org.ow2.asm 50 | asm-tree 51 | ${asm.version} 52 | 53 | 54 | 55 | org.ow2.asm 56 | asm-analysis 57 | ${asm.version} 58 | 59 | 60 | 61 | org.ow2.asm 62 | asm-commons 63 | ${asm.version} 64 | 65 | 66 | 67 | 68 | 69 | 70 | org.apache.maven.plugins 71 | maven-shade-plugin 72 | 73 | 74 | shade-flink 75 | package 76 | 77 | shade 78 | 79 | 80 | true 81 | ${project.basedir}/target/dependency-reduced-pom.xml 82 | 83 | 84 | org.ow2.asm:* 85 | 86 | 87 | 88 | 89 | org.objectweb 90 | ${shading.prefix}.asm${asm.major.version}.org.objectweb 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | org.codehaus.mojo 101 | flatten-maven-plugin 102 | 103 | 104 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /flink-shaded-asm-9/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-asm9 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the BSD license. 8 | See bundled license files for details. 9 | 10 | - org.ow2.asm:asm-analysis:9.6 11 | - org.ow2.asm:asm-commons:9.6 12 | - org.ow2.asm:asm-tree:9.6 13 | - org.ow2.asm:asm:9.6 -------------------------------------------------------------------------------- /flink-shaded-asm-9/src/main/resources/META-INF/licenses/LICENSE.asm: -------------------------------------------------------------------------------- 1 | ASM: a very small and fast Java bytecode manipulation framework 2 | 3 | Copyright (c) 2000-2011 INRIA, France Telecom 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions 8 | are met: 9 | 10 | 1. Redistributions of source code must retain the above copyright 11 | notice, this list of conditions and the following disclaimer. 12 | 13 | 2. Redistributions in binary form must reproduce the above copyright 14 | notice, this list of conditions and the following disclaimer in the 15 | documentation and/or other materials provided with the distribution. 16 | 17 | 3. Neither the name of the copyright holders nor the names of its 18 | contributors may be used to endorse or promote products derived from 19 | this software without specific prior written permission. 20 | 21 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 22 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 25 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 31 | THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- /flink-shaded-force-shading/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | flink-shaded 27 | org.apache.flink 28 | 21.0 29 | 30 | 31 | flink-shaded-force-shading 32 | flink-shaded-force-shading 33 | jar 34 | 35 | -------------------------------------------------------------------------------- /flink-shaded-guava-33/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-guava${flink.ci.license.suffix} 32 | flink-shaded-guava-33 33 | ${guava.version}-21.0 34 | 35 | jar 36 | 37 | 38 | 39 | com.google.guava 40 | guava 41 | ${guava.version} 42 | 43 | 44 | 45 | com.google.guava 46 | listenablefuture 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | license-check 55 | 56 | -33 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | org.apache.maven.plugins 65 | maven-shade-plugin 66 | 67 | 68 | shade-flink 69 | package 70 | 71 | shade 72 | 73 | 74 | true 75 | ${project.basedir}/target/dependency-reduced-pom.xml 76 | 77 | 78 | com.google.guava:* 79 | 80 | 81 | 82 | 83 | com.google 84 | ${shading.prefix}.guava33.com.google 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | org.codehaus.mojo 95 | flatten-maven-plugin 96 | 97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /flink-shaded-guava-33/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-guava-33 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.google.guava:guava:33.4.0-jre 10 | - com.google.guava:failureaccess:1.0.2 -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-jackson-parent 28 | 2.18.2-21.0 29 | 30 | 31 | flink-shaded-jackson${flink.ci.license.suffix} 32 | flink-shaded-jackson-2 33 | 34 | 35 | 36 | com.fasterxml.jackson.core 37 | jackson-core 38 | 39 | 40 | com.fasterxml.jackson.core 41 | jackson-annotations 42 | 43 | 44 | com.fasterxml.jackson.core 45 | jackson-databind 46 | 47 | 48 | com.fasterxml.jackson.dataformat 49 | jackson-dataformat-yaml 50 | 51 | 52 | com.fasterxml.jackson.dataformat 53 | jackson-dataformat-csv 54 | 55 | 56 | com.fasterxml.jackson.dataformat 57 | jackson-dataformat-smile 58 | 59 | 60 | 61 | com.fasterxml.jackson.datatype 62 | jackson-datatype-jsr310 63 | 64 | 65 | 66 | com.fasterxml.jackson.datatype 67 | jackson-datatype-jdk8 68 | 69 | 70 | 71 | 72 | 73 | license-check 74 | 75 | -2 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | org.apache.maven.plugins 84 | maven-shade-plugin 85 | 86 | 87 | shade-flink 88 | 89 | 90 | 91 | org.yaml:snakeyaml 92 | 93 | 94 | 95 | 96 | org.yaml 97 | ${shading.prefix}.jackson2.org.yaml 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | org.codehaus.mojo 109 | flatten-maven-plugin 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-jackson 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.fasterxml.jackson.core:jackson-annotations:2.18.2 10 | - com.fasterxml.jackson.core:jackson-core:2.18.2 11 | - com.fasterxml.jackson.core:jackson-databind:2.18.2 12 | - com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.18.2 13 | - com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.18.2 14 | - com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.2 15 | - com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.18.2 16 | - com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2 17 | - org.yaml:snakeyaml:2.3 18 | -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-module-jsonSchema-2/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-jackson-parent 28 | 2.18.2-21.0 29 | 30 | 31 | flink-shaded-jackson-module-jsonSchema${flink.ci.license.suffix} 32 | flink-shaded-jackson-module-jsonSchema-2 33 | 34 | 35 | 36 | com.fasterxml.jackson.core 37 | jackson-core 38 | 39 | 40 | com.fasterxml.jackson.core 41 | jackson-annotations 42 | 43 | 44 | com.fasterxml.jackson.core 45 | jackson-databind 46 | 47 | 48 | com.fasterxml.jackson.module 49 | jackson-module-jsonSchema 50 | 51 | 52 | 53 | 54 | 55 | license-check 56 | 57 | -2 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-shade-plugin 67 | 68 | 69 | shade-flink 70 | 71 | 72 | 73 | javax.validation:validation-api 74 | 75 | 76 | 77 | 78 | javax.validation 79 | ${shading.prefix}.jackson2.javax.validation 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | org.codehaus.mojo 91 | flatten-maven-plugin 92 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-module-jsonSchema-2/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-jackson-module-jsonSchema 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.fasterxml.jackson.core:jackson-annotations:2.18.2 10 | - com.fasterxml.jackson.core:jackson-core:2.18.2 11 | - com.fasterxml.jackson.core:jackson-databind:2.18.2 12 | - com.fasterxml.jackson.module:jackson-module-jsonSchema:2.18.2 13 | - javax.validation:validation-api:1.1.0.Final -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jsonpath/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-jackson-parent 28 | 2.18.2-21.0 29 | 30 | 31 | flink-shaded-jsonpath 32 | flink-shaded-jsonpath 33 | 34 | 2.9.0-21.0 35 | 36 | 37 | 38 | com.jayway.jsonpath 39 | json-path 40 | ${jsonpath.version} 41 | 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-shade-plugin 49 | 50 | 51 | shade-flink 52 | 53 | 54 | 55 | com.jayway.jsonpath:json-path 56 | 57 | 58 | 59 | 60 | com.jayway.jsonpath 61 | ${shading.prefix}.com.jayway.jsonpath 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | org.codehaus.mojo 73 | flatten-maven-plugin 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jsonpath/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-jsonpath 2 | Copyright 2014-2024 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.jayway.jsonpath:json-path:2.9.0 10 | -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-jackson-parent 32 | flink-shaded-jackson-parent 33 | pom 34 | 2.18.2-21.0 35 | 36 | 37 | flink-shaded-jackson-2 38 | flink-shaded-jackson-module-jsonSchema-2 39 | 42 | flink-shaded-jsonpath 43 | 44 | 45 | 46 | 47 | 48 | com.fasterxml.jackson 49 | jackson-bom 50 | ${jackson.version} 51 | import 52 | pom 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | org.apache.maven.plugins 61 | maven-shade-plugin 62 | 63 | 64 | shade-flink 65 | package 66 | 67 | shade 68 | 69 | 70 | true 71 | ${project.basedir}/target/dependency-reduced-pom.xml 72 | 73 | 74 | com.fasterxml.jackson.*:* 75 | 76 | 77 | 78 | 79 | 80 | com.fasterxml.jackson 81 | ${shading.prefix}.jackson2.com.fasterxml.jackson 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /flink-shaded-netty-4/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-netty${flink.ci.license.suffix} 32 | flink-shaded-netty-4 33 | ${netty.version}-21.0 34 | 35 | 36 | 37 | io.netty 38 | netty-all 39 | ${netty.version} 40 | 41 | 42 | 43 | 44 | 45 | license-check 46 | 47 | -4 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-shade-plugin 57 | 58 | 59 | shade-flink 60 | package 61 | 62 | shade 63 | 64 | 65 | true 66 | ${project.basedir}/target/dependency-reduced-pom.xml 67 | 68 | 69 | io.netty:* 70 | 71 | 72 | 73 | 74 | io.netty 75 | ${shading.prefix}.netty4.io.netty 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | org.apache.maven.plugins 84 | maven-antrun-plugin 85 | 1.7 86 | 87 | 88 | rename-native-library 89 | package 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | run 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | org.codehaus.mojo 113 | flatten-maven-plugin 114 | 115 | 116 | 117 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /flink-shaded-netty-4/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-netty 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - io.netty:netty-all:4.1.100.Final 10 | - io.netty:netty-buffer:4.1.100.Final 11 | - io.netty:netty-codec-dns:4.1.100.Final 12 | - io.netty:netty-codec-haproxy:4.1.100.Final 13 | - io.netty:netty-codec-http2:4.1.100.Final 14 | - io.netty:netty-codec-http:4.1.100.Final 15 | - io.netty:netty-codec-memcache:4.1.100.Final 16 | - io.netty:netty-codec-mqtt:4.1.100.Final 17 | - io.netty:netty-codec-redis:4.1.100.Final 18 | - io.netty:netty-codec-smtp:4.1.100.Final 19 | - io.netty:netty-codec-socks:4.1.100.Final 20 | - io.netty:netty-codec-stomp:4.1.100.Final 21 | - io.netty:netty-codec-xml:4.1.100.Final 22 | - io.netty:netty-codec:4.1.100.Final 23 | - io.netty:netty-common:4.1.100.Final 24 | - io.netty:netty-handler-proxy:4.1.100.Final 25 | - io.netty:netty-handler-ssl-ocsp:4.1.100.Final 26 | - io.netty:netty-handler:4.1.100.Final 27 | - io.netty:netty-resolver-dns-classes-macos:4.1.100.Final 28 | - io.netty:netty-resolver-dns-native-macos:osx-aarch_64:4.1.100.Final 29 | - io.netty:netty-resolver-dns-native-macos:osx-x86_64:4.1.100.Final 30 | - io.netty:netty-resolver-dns:4.1.100.Final 31 | - io.netty:netty-resolver:4.1.100.Final 32 | - io.netty:netty-transport-classes-epoll:4.1.100.Final 33 | - io.netty:netty-transport-classes-kqueue:4.1.100.Final 34 | - io.netty:netty-transport-native-epoll:linux-aarch_64:4.1.100.Final 35 | - io.netty:netty-transport-native-epoll:linux-x86_64:4.1.100.Final 36 | - io.netty:netty-transport-native-kqueue:osx-aarch_64:4.1.100.Final 37 | - io.netty:netty-transport-native-kqueue:osx-x86_64:4.1.100.Final 38 | - io.netty:netty-transport-native-unix-common:4.1.100.Final 39 | - io.netty:netty-transport-rxtx:4.1.100.Final 40 | - io.netty:netty-transport-sctp:4.1.100.Final 41 | - io.netty:netty-transport-udt:4.1.100.Final 42 | - io.netty:netty-transport:4.1.100.Final -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-dynamic/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-netty-tcnative-dynamic 32 | flink-shaded-netty-tcnative-dynamic 33 | ${netty.tcnative.version}-21.0 34 | 35 | 36 | 37 | 2.0.62.Final 38 | 39 | 40 | 41 | 42 | 43 | io.netty 44 | netty-tcnative 45 | ${netty.tcnative.version} 46 | 47 | 48 | 49 | 50 | 51 | 52 | org.apache.maven.plugins 53 | maven-shade-plugin 54 | 55 | 56 | shade-flink 57 | package 58 | 59 | shade 60 | 61 | 62 | true 63 | ${project.basedir}/target/dependency-reduced-pom.xml 64 | 65 | 66 | io.netty:netty-tcnative 67 | io.netty:netty-tcnative-classes 68 | 69 | 70 | 71 | 72 | io.netty 73 | ${shading.prefix}.netty4.io.netty 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | org.apache.maven.plugins 82 | maven-dependency-plugin 83 | 3.1.1 84 | 85 | 86 | copy 87 | package 88 | 89 | copy 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | io.netty 98 | netty-tcnative 99 | ${netty.tcnative.version} 100 | linux-x86_64 101 | jar 102 | false 103 | ${project.build.directory}/native_libs 104 | 105 | 106 | io.netty 107 | netty-tcnative 108 | ${netty.tcnative.version} 109 | linux-x86_64-fedora 110 | jar 111 | false 112 | ${project.build.directory}/native_libs 113 | 114 | 115 | io.netty 116 | netty-tcnative 117 | ${netty.tcnative.version} 118 | osx-x86_64 119 | jar 120 | false 121 | ${project.build.directory}/native_libs 122 | 123 | 124 | io.netty 125 | netty-tcnative 126 | ${netty.tcnative.version} 127 | linux-aarch_64-fedora 128 | jar 129 | false 130 | ${project.build.directory}/native_libs 131 | 132 | 133 | 134 | 135 | 136 | org.apache.maven.plugins 137 | maven-antrun-plugin 138 | 1.7 139 | 140 | 141 | rename-native-library 142 | package 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | run 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | org.codehaus.mojo 178 | flatten-maven-plugin 179 | 180 | 181 | 182 | 183 | 184 | 185 | -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-dynamic/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-netty-openssl-static 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - io.netty:netty-tcnative-classes:2.0.62.Final 10 | - io.netty:netty-tcnative:2.0.62.Final 11 | - io.netty:netty-tcnative:linux-aarch_64-fedora:2.0.62.Final 12 | - io.netty:netty-tcnative:linux-x86_64-fedora:2.0.62.Final 13 | - io.netty:netty-tcnative:linux-x86_64:2.0.62.Final 14 | - io.netty:netty-tcnative:osx-x86_64:2.0.62.Final -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-static/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-netty-tcnative-static 32 | flink-shaded-netty-tcnative-static 33 | ${netty.tcnative.version}-21.0 34 | 35 | 36 | 37 | 2.0.62.Final 38 | 39 | 40 | 41 | 42 | 43 | io.netty 44 | netty-tcnative-boringssl-static 45 | ${netty.tcnative.version} 46 | 47 | 48 | 49 | 50 | 51 | 52 | org.apache.maven.plugins 53 | maven-shade-plugin 54 | 55 | 56 | shade-flink 57 | package 58 | 59 | shade 60 | 61 | 62 | true 63 | ${project.basedir}/target/dependency-reduced-pom.xml 64 | 65 | 66 | io.netty:netty-tcnative-classes 67 | io.netty:netty-tcnative-boringssl-static 68 | 69 | 70 | 71 | 72 | io.netty 73 | ${shading.prefix}.netty4.io.netty 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | org.apache.maven.plugins 82 | maven-antrun-plugin 83 | 1.7 84 | 85 | 86 | rename-native-library 87 | package 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | run 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | org.codehaus.mojo 111 | flatten-maven-plugin 112 | 113 | 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-static/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-netty-openssl-static 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - io.netty:netty-tcnative-boringssl-static:2.0.62.Final 10 | - io.netty:netty-tcnative-boringssl-static:linux-aarch_64:2.0.62.Final 11 | - io.netty:netty-tcnative-boringssl-static:linux-x86_64:2.0.62.Final 12 | - io.netty:netty-tcnative-boringssl-static:osx-aarch_64:2.0.62.Final 13 | - io.netty:netty-tcnative-boringssl-static:osx-x86_64:2.0.62.Final 14 | - io.netty:netty-tcnative-boringssl-static:windows-x86_64:2.0.62.Final 15 | - io.netty:netty-tcnative-classes:2.0.62.Final 16 | 17 | This project bundles the following dependencies under the OpenSSL license. 18 | See bundled license files for details. 19 | 20 | - BoringSSL (statically linked native libraries) 21 | -------------------------------------------------------------------------------- /flink-shaded-swagger/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 23 | 24 | 4.0.0 25 | 26 | 27 | org.apache.flink 28 | flink-shaded 29 | 21.0 30 | 31 | 32 | flink-shaded-swagger 33 | flink-shaded-swagger 34 | 35 | 36 | 37 | io.swagger.core.v3 38 | swagger-core 39 | 2.2.19 40 | 41 | 42 | org.slf4j 43 | slf4j-api 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | org.yaml 53 | snakeyaml 54 | 2.1 55 | 56 | 57 | com.fasterxml.jackson 58 | jackson-bom 59 | ${jackson.version} 60 | import 61 | pom 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | org.apache.maven.plugins 70 | maven-shade-plugin 71 | 72 | 73 | shade-flink 74 | package 75 | 76 | shade 77 | 78 | 79 | true 80 | ${project.basedir}/target/dependency-reduced-pom.xml 81 | 82 | 83 | 84 | 85 | com.fasterxml.jackson.core:* 86 | 87 | 88 | 89 | 90 | 91 | com.fasterxml.jackson 92 | ${shading.prefix}.jackson2.com.fasterxml.jackson 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /flink-shaded-swagger/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-swagger 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This project includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.2 10 | - com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2 11 | - io.swagger.core.v3:swagger-annotations:2.2.19 12 | - io.swagger.core.v3:swagger-core:2.2.19 13 | - io.swagger.core.v3:swagger-models:2.2.19 14 | - jakarta.validation:jakarta.validation-api:2.0.2 15 | - org.apache.commons:commons-lang3:3.13.0 16 | - org.yaml:snakeyaml:2.1 17 | 18 | This project bundles the following dependencies under the Eclipse Distribution License 1.0 (https://www.eclipse.org/org/documents/edl-v10.php) 19 | 20 | - jakarta.activation:jakarta.activation-api:1.2.1 21 | - jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 -------------------------------------------------------------------------------- /flink-shaded-swagger/src/main/resources/META-INF/licenses/LICENSE.jakarta_edl-v10: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved. 2 | 3 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 4 | 5 | Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 6 | 7 | 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. 8 | 9 | Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 10 | 11 | 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 OWNER 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. 12 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-35/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-zookeeper-parent 28 | 21.0 29 | 30 | 31 | flink-shaded-zookeeper-3${flink.ci.license.suffix} 32 | flink-shaded-zookeeper-3.5 33 | ${zookeeper.version}-21.0 34 | 35 | 36 | 3.5.10 37 | 5.4.0 38 | 39 | 40 | 41 | 42 | org.apache.zookeeper 43 | zookeeper 44 | 45 | 46 | 47 | log4j 48 | log4j 49 | 50 | 51 | 52 | org.apache.yetus 53 | audience-annotations 54 | 55 | 56 | 57 | org.slf4j 58 | * 59 | 60 | 61 | 62 | 63 | org.apache.curator 64 | curator-recipes 65 | ${curator.version} 66 | 67 | 68 | 69 | com.google.code.findbugs 70 | jsr305 71 | 72 | 73 | 74 | com.google.errorprone 75 | error_prone_annotations 76 | 77 | 78 | 79 | com.google.guava 80 | failureaccess 81 | 82 | 83 | 84 | com.google.guava 85 | listenablefuture 86 | 87 | 88 | 89 | com.google.j2objc 90 | j2objc-annotations 91 | 92 | 93 | 94 | org.checkerframework 95 | checker-qual 96 | 97 | 98 | 99 | org.codehaus.mojo 100 | animal-sniffer-annotations 101 | 102 | 103 | 104 | org.slf4j 105 | slf4j-api 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | org.apache.zookeeper 115 | zookeeper 116 | ${zookeeper.version} 117 | 118 | 119 | io.netty 120 | netty-bom 121 | ${netty.version} 122 | pom 123 | import 124 | 125 | 126 | 127 | com.google.guava 128 | guava 129 | ${guava.version} 130 | 131 | 132 | 133 | 134 | 135 | 136 | license-check 137 | 138 | 5 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-35/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-zookeeper-3 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.google.guava:guava:33.4.0-jre 10 | - io.netty:netty-buffer:4.1.100.Final 11 | - io.netty:netty-codec:4.1.100.Final 12 | - io.netty:netty-common:4.1.100.Final 13 | - io.netty:netty-handler:4.1.100.Final 14 | - io.netty:netty-resolver:4.1.100.Final 15 | - io.netty:netty-transport-classes-epoll:4.1.100.Final 16 | - io.netty:netty-transport-native-epoll:4.1.100.Final 17 | - io.netty:netty-transport-native-unix-common:4.1.100.Final 18 | - io.netty:netty-transport:4.1.100.Final 19 | - org.apache.curator:curator-client:5.4.0 20 | - org.apache.curator:curator-framework:5.4.0 21 | - org.apache.curator:curator-recipes:5.4.0 22 | - org.apache.zookeeper:zookeeper-jute:3.5.10 23 | - org.apache.zookeeper:zookeeper:3.5.10 24 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-36/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-zookeeper-parent 28 | 21.0 29 | 30 | 31 | flink-shaded-zookeeper-3${flink.ci.license.suffix} 32 | flink-shaded-zookeeper-3.6 33 | ${zookeeper.version}-21.0 34 | 35 | 36 | 3.6.4 37 | 5.4.0 38 | 39 | 40 | 41 | 42 | org.apache.zookeeper 43 | zookeeper 44 | 45 | 46 | 47 | log4j 48 | log4j 49 | 50 | 51 | 52 | org.apache.yetus 53 | audience-annotations 54 | 55 | 56 | 57 | org.slf4j 58 | slf4j-api 59 | 60 | 61 | 62 | org.slf4j 63 | slf4j-log4j12 64 | 65 | 66 | 67 | 68 | 71 | io.dropwizard.metrics 72 | metrics-core 73 | 3.2.5 74 | 75 | 76 | 77 | org.slf4j 78 | slf4j-api 79 | 80 | 81 | 82 | org.slf4j 83 | slf4j-log4j12 84 | 85 | 86 | 87 | 88 | org.apache.curator 89 | curator-recipes 90 | ${curator.version} 91 | 92 | 93 | 94 | com.google.code.findbugs 95 | jsr305 96 | 97 | 98 | 99 | com.google.errorprone 100 | error_prone_annotations 101 | 102 | 103 | 104 | com.google.guava 105 | failureaccess 106 | 107 | 108 | 109 | com.google.guava 110 | listenablefuture 111 | 112 | 113 | 114 | com.google.j2objc 115 | j2objc-annotations 116 | 117 | 118 | 119 | org.checkerframework 120 | checker-qual 121 | 122 | 123 | 124 | org.codehaus.mojo 125 | animal-sniffer-annotations 126 | 127 | 128 | 129 | org.slf4j 130 | slf4j-api 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | org.apache.zookeeper 140 | zookeeper 141 | ${zookeeper.version} 142 | 143 | 144 | io.netty 145 | netty-bom 146 | ${netty.version} 147 | pom 148 | import 149 | 150 | 151 | 152 | com.google.guava 153 | guava 154 | ${guava.version} 155 | 156 | 157 | 158 | 159 | 160 | 161 | license-check 162 | 163 | 6 164 | 165 | 166 | 167 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-36/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-zookeeper-3 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.google.guava:guava:33.4.0-jre 10 | - io.dropwizard.metrics:metrics-core:3.2.5 11 | - io.netty:netty-buffer:4.1.100.Final 12 | - io.netty:netty-codec:4.1.100.Final 13 | - io.netty:netty-common:4.1.100.Final 14 | - io.netty:netty-handler:4.1.100.Final 15 | - io.netty:netty-resolver:4.1.100.Final 16 | - io.netty:netty-transport-classes-epoll:4.1.100.Final 17 | - io.netty:netty-transport-native-epoll:4.1.100.Final 18 | - io.netty:netty-transport-native-unix-common:4.1.100.Final 19 | - io.netty:netty-transport:4.1.100.Final 20 | - org.apache.curator:curator-client:5.4.0 21 | - org.apache.curator:curator-framework:5.4.0 22 | - org.apache.curator:curator-recipes:5.4.0 23 | - org.apache.zookeeper:zookeeper-jute:3.6.4 24 | - org.apache.zookeeper:zookeeper:3.6.4 25 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-37/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-zookeeper-parent 28 | 21.0 29 | 30 | 31 | flink-shaded-zookeeper-3${flink.ci.license.suffix} 32 | flink-shaded-zookeeper-3.7 33 | ${zookeeper.version}-21.0 34 | 35 | 36 | 3.7.2 37 | 5.4.0 38 | 39 | 40 | 41 | 42 | org.apache.zookeeper 43 | zookeeper 44 | 45 | 46 | 47 | org.apache.yetus 48 | audience-annotations 49 | 50 | 51 | 52 | org.slf4j 53 | slf4j-api 54 | 55 | 56 | 57 | 58 | 61 | io.dropwizard.metrics 62 | metrics-core 63 | 4.1.12.1 64 | 65 | 66 | 67 | org.slf4j 68 | slf4j-api 69 | 70 | 71 | 72 | 73 | org.apache.curator 74 | curator-recipes 75 | ${curator.version} 76 | 77 | 78 | 79 | com.google.code.findbugs 80 | jsr305 81 | 82 | 83 | 84 | com.google.errorprone 85 | error_prone_annotations 86 | 87 | 88 | 89 | com.google.guava 90 | failureaccess 91 | 92 | 93 | 94 | com.google.guava 95 | listenablefuture 96 | 97 | 98 | 99 | com.google.j2objc 100 | j2objc-annotations 101 | 102 | 103 | 104 | org.checkerframework 105 | checker-qual 106 | 107 | 108 | 109 | org.codehaus.mojo 110 | animal-sniffer-annotations 111 | 112 | 113 | 114 | org.slf4j 115 | slf4j-api 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | org.apache.zookeeper 125 | zookeeper 126 | ${zookeeper.version} 127 | 128 | 129 | io.netty 130 | netty-bom 131 | ${netty.version} 132 | pom 133 | import 134 | 135 | 136 | 137 | com.google.guava 138 | guava 139 | ${guava.version} 140 | 141 | 142 | 143 | 144 | 145 | 146 | license-check 147 | 148 | 7 149 | 150 | 151 | 152 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-37/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-zookeeper-3 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.google.guava:guava:33.4.0-jre 10 | - io.dropwizard.metrics:metrics-core:4.1.12.1 11 | - io.netty:netty-buffer:4.1.100.Final 12 | - io.netty:netty-codec:4.1.100.Final 13 | - io.netty:netty-common:4.1.100.Final 14 | - io.netty:netty-handler:4.1.100.Final 15 | - io.netty:netty-resolver:4.1.100.Final 16 | - io.netty:netty-transport-classes-epoll:4.1.100.Final 17 | - io.netty:netty-transport-native-epoll:4.1.100.Final 18 | - io.netty:netty-transport-native-unix-common:4.1.100.Final 19 | - io.netty:netty-transport:4.1.100.Final 20 | - org.apache.curator:curator-client:5.4.0 21 | - org.apache.curator:curator-framework:5.4.0 22 | - org.apache.curator:curator-recipes:5.4.0 23 | - org.apache.zookeeper:zookeeper-jute:3.7.2 24 | - org.apache.zookeeper:zookeeper:3.7.2 25 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-38/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded-zookeeper-parent 28 | 21.0 29 | 30 | 31 | flink-shaded-zookeeper-3${flink.ci.license.suffix} 32 | flink-shaded-zookeeper-3.8 33 | ${zookeeper.version}-21.0 34 | 35 | 36 | 3.8.4 37 | 5.4.0 38 | 39 | 40 | 41 | 42 | org.apache.zookeeper 43 | zookeeper 44 | 45 | 46 | 47 | org.apache.yetus 48 | audience-annotations 49 | 50 | 51 | 52 | org.slf4j 53 | slf4j-api 54 | 55 | 56 | ch.qos.logback 57 | * 58 | 59 | 60 | 61 | 62 | 65 | io.dropwizard.metrics 66 | metrics-core 67 | 4.1.12.1 68 | 69 | 70 | 71 | org.slf4j 72 | slf4j-api 73 | 74 | 75 | 76 | 77 | org.apache.curator 78 | curator-recipes 79 | ${curator.version} 80 | 81 | 82 | 83 | com.google.code.findbugs 84 | jsr305 85 | 86 | 87 | 88 | com.google.errorprone 89 | error_prone_annotations 90 | 91 | 92 | 93 | com.google.guava 94 | failureaccess 95 | 96 | 97 | 98 | com.google.guava 99 | listenablefuture 100 | 101 | 102 | 103 | com.google.j2objc 104 | j2objc-annotations 105 | 106 | 107 | 108 | org.checkerframework 109 | checker-qual 110 | 111 | 112 | 113 | org.codehaus.mojo 114 | animal-sniffer-annotations 115 | 116 | 117 | 118 | org.slf4j 119 | slf4j-api 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | org.apache.zookeeper 129 | zookeeper 130 | ${zookeeper.version} 131 | 132 | 133 | io.netty 134 | netty-bom 135 | ${netty.version} 136 | pom 137 | import 138 | 139 | 140 | 141 | com.google.guava 142 | guava 143 | ${guava.version} 144 | 145 | 146 | 147 | 148 | 149 | 150 | license-check 151 | 152 | 8 153 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-38/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- 1 | flink-shaded-zookeeper-3 2 | Copyright 2014-2023 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This project bundles the following dependencies under the Apache Software License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) 8 | 9 | - com.google.guava:guava:33.4.0-jre 10 | - commons-io:commons-io:2.11.0 11 | - io.dropwizard.metrics:metrics-core:4.1.12.1 12 | - io.netty:netty-buffer:4.1.100.Final 13 | - io.netty:netty-codec:4.1.100.Final 14 | - io.netty:netty-common:4.1.100.Final 15 | - io.netty:netty-handler:4.1.100.Final 16 | - io.netty:netty-resolver:4.1.100.Final 17 | - io.netty:netty-transport-classes-epoll:4.1.100.Final 18 | - io.netty:netty-transport-native-epoll:4.1.100.Final 19 | - io.netty:netty-transport-native-unix-common:4.1.100.Final 20 | - io.netty:netty-transport:4.1.100.Final 21 | - org.apache.curator:curator-client:5.4.0 22 | - org.apache.curator:curator-framework:5.4.0 23 | - org.apache.curator:curator-recipes:5.4.0 24 | - org.apache.zookeeper:zookeeper-jute:3.8.4 25 | - org.apache.zookeeper:zookeeper:3.8.4 26 | -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.flink 27 | flink-shaded 28 | 21.0 29 | 30 | 31 | flink-shaded-zookeeper-parent 32 | flink-shaded-zookeeper-parent 33 | pom 34 | 35 | 36 | flink-shaded-zookeeper-35 37 | flink-shaded-zookeeper-36 38 | flink-shaded-zookeeper-37 39 | flink-shaded-zookeeper-38 40 | 41 | 42 | 43 | ${shading.prefix}.zookeeper3 44 | ${shading.prefix}.curator5 45 | 46 | 47 | 48 | 49 | 50 | org.apache.maven.plugins 51 | maven-shade-plugin 52 | 53 | 54 | shade-flink 55 | package 56 | 57 | shade 58 | 59 | 60 | true 61 | ${project.basedir}/target/dependency-reduced-pom.xml 62 | 63 | 64 | * 65 | 66 | 67 | 68 | 69 | org.apache.zookeeper 70 | ${shading.zookeeper.prefix}.org.apache.zookeeper 71 | 72 | 73 | io.netty 74 | ${shading.zookeeper.prefix}.io.netty 75 | 76 | 77 | org.apache.jute 78 | ${shading.zookeeper.prefix}.org.apache.jute 79 | 80 | 81 | com.codahale.metrics 82 | ${shading.zookeeper.prefix}.com.codahale.metrics 83 | 84 | 85 | org.apache.curator 86 | ${shading.curator.prefix}.org.apache.curator 87 | 88 | 89 | com.google 90 | ${shading.curator.prefix}.com.google 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | org.codehaus.mojo 101 | flatten-maven-plugin 102 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache 27 | apache 28 | 18 29 | 30 | 31 | org.apache.flink 32 | flink-shaded 33 | 21.0 34 | 35 | flink-shaded 36 | pom 37 | http://flink.apache.org 38 | 2014 39 | 40 | 41 | 42 | The Apache Software License, Version 2.0 43 | http://www.apache.org/licenses/LICENSE-2.0.txt 44 | repo 45 | 46 | 47 | 48 | 49 | https://github.com/apache/flink-shaded 50 | git@github.com:apache/flink-shaded.git 51 | scm:git:https://github.com/apache/flink-shaded.git 52 | 53 | 54 | 55 | 56 | 57 | apache.snapshots.https 58 | ${distMgmtSnapshotsName} 59 | ${distMgmtSnapshotsUrl} 60 | 61 | 62 | 63 | 64 | org.apache.flink.shaded 65 | 4.1.100.Final 66 | 2.18.2 67 | 2.9.0 68 | 33.4.0-jre 69 | 73 | 74 | 75 | 76 | 77 | flink-shaded-force-shading 78 | flink-shaded-asm-9 79 | flink-shaded-guava-33 80 | flink-shaded-netty-4 81 | flink-shaded-netty-tcnative-dynamic 82 | flink-shaded-jackson-parent 83 | flink-shaded-zookeeper-parent 84 | flink-shaded-swagger 85 | 86 | 87 | 88 | 92 | 93 | include-netty-tcnative-static 94 | 95 | 96 | include-netty-tcnative-static 97 | 98 | 99 | 100 | flink-shaded-netty-tcnative-static 101 | 102 | 103 | 104 | 105 | release 106 | 107 | 108 | 109 | org.apache.maven.plugins 110 | maven-gpg-plugin 111 | 1.4 112 | 113 | 114 | sign-artifacts 115 | verify 116 | 117 | sign 118 | 119 | 120 | 121 | 122 | 123 | org.apache.maven.plugins 124 | maven-enforcer-plugin 125 | 126 | 127 | enforce-maven 128 | 129 | enforce 130 | 131 | 132 | 133 | 134 | 1.8.0 135 | 136 | 137 | 139 | [3.8.6] 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | java11 151 | 152 | 11 153 | 154 | 155 | 156 | 157 | 158 | 159 | org.apache.maven.plugins 160 | maven-shade-plugin 161 | 3.6.0 162 | 163 | 164 | 165 | 166 | 167 | 168 | shade-sources 169 | 170 | 171 | shade-sources 172 | 173 | 174 | 175 | 176 | 177 | 178 | org.apache.maven.plugins 179 | maven-shade-plugin 180 | 181 | true 182 | true 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | org.apache.maven.plugins 196 | maven-shade-plugin 197 | 198 | 199 | 200 | * 201 | 202 | META-INF/maven/** 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | Apache Flink-shaded 212 | UTF-8 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | org.codehaus.mojo 221 | flatten-maven-plugin 222 | 1.2.7 223 | 224 | 225 | flatten 226 | package 227 | 228 | flatten 229 | 230 | 231 | 232 | resolveCiFriendliesOnly 233 | 235 | ${project.build.directory} 236 | 237 | 238 | 239 | flatten.clean 240 | clean 241 | 242 | clean 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | org.apache.maven.plugins 253 | maven-enforcer-plugin 254 | 255 | 256 | dependency-convergence 257 | 258 | enforce 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | org.apache.rat 271 | apache-rat-plugin 272 | 0.11 273 | false 274 | 275 | 276 | verify 277 | 278 | check 279 | 280 | 281 | 282 | 283 | false 284 | 0 285 | 286 | 302 | 303 | AL2 304 | Apache License 2.0 305 | 306 | 307 | Licensed to the Apache Software Foundation (ASF) under one 308 | 309 | 310 | 311 | 312 | 313 | Apache License 2.0 314 | 315 | 316 | 317 | 318 | .asf.yaml 319 | .github/** 320 | 321 | **/*.iml 322 | 323 | **/target/** 324 | 325 | **/licenses/LICENSE.* 326 | 327 | **/release/** 328 | 329 | 330 | 331 | 332 | 333 | org.codehaus.mojo 334 | exec-maven-plugin 335 | 3.1.0 336 | false 337 | 338 | 339 | check-license 340 | 341 | none 342 | 343 | java 344 | 345 | 346 | org.apache.flink.tools.ci.licensecheck.LicenseChecker 347 | 348 | 349 | 350 | 351 | true 352 | false 353 | 354 | 355 | 356 | org.apache.flink 357 | flink-ci-tools 358 | 1.18.0 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | -------------------------------------------------------------------------------- /tools/ci/log4j.properties: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | ################################################################################ 18 | 19 | rootLogger.level = INFO 20 | rootLogger.appenderRef.out.ref = ConsoleAppender 21 | 22 | # ----------------------------------------------------------------------------- 23 | # Console (use 'console') 24 | # ----------------------------------------------------------------------------- 25 | 26 | appender.console.name = ConsoleAppender 27 | appender.console.type = CONSOLE 28 | appender.console.layout.type = PatternLayout 29 | appender.console.layout.pattern = %d{HH:mm:ss,SSS} [%20t] %-5p %-60c %x - %m%n 30 | 31 | # ----------------------------------------------------------------------------- 32 | # File (use 'file') 33 | # ----------------------------------------------------------------------------- 34 | appender.file.name = FileAppender 35 | appender.file.type = FILE 36 | appender.file.fileName = ${sys:log.dir}/mvn-${sys:mvn.forkNumber:-output}.log 37 | appender.file.layout.type = PatternLayout 38 | appender.file.layout.pattern = %d{HH:mm:ss,SSS} [%20t] %-5p %-60c %x - %m%n 39 | appender.file.createOnDemand = true 40 | 41 | # suppress the irrelevant (wrong) warnings from the netty channel handler 42 | logger.netty.name = org.jboss.netty.channel.DefaultChannelPipeline 43 | logger.netty.level = ERROR 44 | -------------------------------------------------------------------------------- /tools/releasing/create_release_branch.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # 4 | # Licensed to the Apache Software Foundation (ASF) under one or more 5 | # contributor license agreements. See the NOTICE file distributed with 6 | # this work for additional information regarding copyright ownership. 7 | # The ASF licenses this file to You under the Apache License, Version 2.0 8 | # (the "License"); you may not use this file except in compliance with 9 | # the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | ## 21 | ## Variables with defaults (if not overwritten by environment) 22 | ## 23 | RELEASE_CANDIDATE=${RELEASE_CANDIDATE:-none} 24 | MVN=${MVN:-mvn} 25 | 26 | # fail immediately 27 | set -o errexit 28 | set -o nounset 29 | # print command before executing 30 | set -o xtrace 31 | 32 | CURR_DIR=`pwd` 33 | if [[ `basename ${CURR_DIR}` != "tools" ]] ; then 34 | echo "You have to call the script from the tools/ dir" 35 | exit 1 36 | fi 37 | 38 | ########################### 39 | 40 | if [ -z "${RELEASE_VERSION}" ]; then 41 | echo "RELEASE_VERSION is unset" 42 | exit 1 43 | fi 44 | 45 | cd .. 46 | 47 | target_branch=release-${RELEASE_VERSION} 48 | if [ "${RELEASE_CANDIDATE}" != "none" ]; then 49 | target_branch=${target_branch}-rc${RELEASE_CANDIDATE} 50 | fi 51 | 52 | git checkout -b ${target_branch} 53 | 54 | RELEASE_HASH=`git rev-parse HEAD` 55 | echo "Echo created release hash $RELEASE_HASH" 56 | 57 | echo "Done. Don't forget to create the release tag on GitHub and push the changes." 58 | -------------------------------------------------------------------------------- /tools/releasing/create_source_release.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # 4 | # Licensed to the Apache Software Foundation (ASF) under one or more 5 | # contributor license agreements. See the NOTICE file distributed with 6 | # this work for additional information regarding copyright ownership. 7 | # The ASF licenses this file to You under the Apache License, Version 2.0 8 | # (the "License"); you may not use this file except in compliance with 9 | # the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | ## 21 | ## Variables with defaults (if not overwritten by environment) 22 | ## 23 | MVN=${MVN:-mvn} 24 | 25 | # fail immediately 26 | set -o errexit 27 | set -o nounset 28 | # print command before executing 29 | set -o xtrace 30 | 31 | CURR_DIR=`pwd` 32 | if [[ `basename $CURR_DIR` != "tools" ]] ; then 33 | echo "You have to call the script from the tools/ dir" 34 | exit 1 35 | fi 36 | 37 | if [ "$(uname)" == "Darwin" ]; then 38 | SHASUM="shasum -a 512" 39 | else 40 | SHASUM="sha512sum" 41 | fi 42 | 43 | ########################### 44 | 45 | RELEASE_VERSION=${RELEASE_VERSION} 46 | 47 | if [ -z "${RELEASE_VERSION}" ]; then 48 | echo "RELEASE_VERSION is unset" 49 | exit 1 50 | fi 51 | 52 | rm -rf release 53 | mkdir release 54 | cd .. 55 | 56 | echo "Creating source package" 57 | 58 | # create a temporary git clone to ensure that we have a pristine source release 59 | git clone . tools/release/flink-shaded-tmp-clone 60 | cd tools/release/flink-shaded-tmp-clone 61 | 62 | trap 'cd ${CURR_DIR};rm -rf release' ERR 63 | 64 | rsync -a \ 65 | --exclude ".git" --exclude ".gitignore" --exclude ".gitattributes" \ 66 | --exclude ".asf.yaml" --exclude ".github" \ 67 | --exclude "deploysettings.xml" --exclude "target" \ 68 | --exclude ".idea" --exclude "*.iml" --exclude ".DS_Store" \ 69 | . flink-shaded-$RELEASE_VERSION 70 | 71 | tar czf flink-shaded-${RELEASE_VERSION}-src.tgz flink-shaded-$RELEASE_VERSION 72 | gpg --armor --detach-sig flink-shaded-$RELEASE_VERSION-src.tgz 73 | $SHASUM flink-shaded-$RELEASE_VERSION-src.tgz > flink-shaded-$RELEASE_VERSION-src.tgz.sha512 74 | 75 | mv flink-shaded-$RELEASE_VERSION-src.* ../ 76 | cd .. 77 | rm -rf flink-shaded-tmp-clone 78 | -------------------------------------------------------------------------------- /tools/releasing/deploy_staging_jars.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # 4 | # Licensed to the Apache Software Foundation (ASF) under one or more 5 | # contributor license agreements. See the NOTICE file distributed with 6 | # this work for additional information regarding copyright ownership. 7 | # The ASF licenses this file to You under the Apache License, Version 2.0 8 | # (the "License"); you may not use this file except in compliance with 9 | # the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | ## 21 | ## Variables with defaults (if not overwritten by environment) 22 | ## 23 | MVN=${MVN:-mvn} 24 | 25 | # fail immediately 26 | set -o errexit 27 | set -o nounset 28 | # print command before executing 29 | set -o xtrace 30 | 31 | CURR_DIR=`pwd` 32 | if [[ `basename $CURR_DIR` != "tools" ]] ; then 33 | echo "You have to call the script from the tools/ dir" 34 | exit 1 35 | fi 36 | 37 | ########################### 38 | COMMON_OPTIONS="-Prelease -DskipTests -DretryFailedDeploymentCount=10 " 39 | 40 | cd .. 41 | 42 | echo "Deploying to repository.apache.org" 43 | $MVN clean deploy $COMMON_OPTIONS 44 | -------------------------------------------------------------------------------- /tools/releasing/update_branch_version.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # 4 | # Licensed to the Apache Software Foundation (ASF) under one or more 5 | # contributor license agreements. See the NOTICE file distributed with 6 | # this work for additional information regarding copyright ownership. 7 | # The ASF licenses this file to You under the Apache License, Version 2.0 8 | # (the "License"); you may not use this file except in compliance with 9 | # the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | # 19 | 20 | ## 21 | ## Variables with defaults (if not overwritten by environment) 22 | ## 23 | MVN=${MVN:-mvn} 24 | 25 | # fail immediately 26 | set -o errexit 27 | set -o nounset 28 | # print command before executing 29 | set -o xtrace 30 | 31 | CURR_DIR=`pwd` 32 | if [[ `basename $CURR_DIR` != "tools" ]] ; then 33 | echo "You have to call the script from the tools/ dir" 34 | exit 1 35 | fi 36 | 37 | ########################### 38 | 39 | OLD_VERSION=${OLD_VERSION} 40 | NEW_VERSION=${NEW_VERSION} 41 | 42 | 43 | if [ -z "${OLD_VERSION}" ]; then 44 | echo "OLD_VERSION is unset" 45 | exit 1 46 | fi 47 | 48 | if [ -z "${NEW_VERSION}" ]; then 49 | echo "NEW_VERSION is unset" 50 | exit 1 51 | fi 52 | 53 | cd .. 54 | 55 | #change version in all pom files 56 | find . -name 'pom.xml' -type f -exec perl -pi -e 's#'$OLD_VERSION'#'$NEW_VERSION'#; s#-'$OLD_VERSION'#-'$NEW_VERSION'#' {} \; 57 | 58 | git commit -am "Update version to $NEW_VERSION" 59 | 60 | echo "Don't forget to push the change." 61 | -------------------------------------------------------------------------------- /tools/update_notice_year.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ################################################################################ 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, software 14 | # distributed under the License is distributed on an "AS IS" BASIS, 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | # See the License for the specific language governing permissions and 17 | # limitations under the License. 18 | ################################################################################ 19 | 20 | # This script updates the year in all NOTICE files 21 | 22 | set -Eeuo pipefail 23 | 24 | FLINK_SHADED_DIR=${1:-} 25 | 26 | USAGE="update_notice_year " 27 | 28 | if [[ -z "${FLINK_SHADED_DIR}" || "${FLINK_SHADED_DIR}" = "-h" ]]; then 29 | echo "${USAGE}" 30 | exit 0 31 | fi 32 | 33 | NEW_YEAR=`date +'%Y'` 34 | 35 | for path in $(find "${FLINK_SHADED_DIR}" -name "NOTICE*"); do 36 | echo "Updating: ${path}" 37 | sed "s/Copyright 2014-.* The Apache Software Foundation/Copyright 2014-${NEW_YEAR} The Apache Software Foundation/" "${path}" > "${path}_new" 38 | mv "${path}_new" "${path}" 39 | done 40 | 41 | echo "The script is just a helper tool. Please verify the performed changes manually again!" --------------------------------------------------------------------------------