├── .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 │ └── licenses │ └── LICENSE.boringssl.txt ├── 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 │ └── licenses │ └── LICENSE.boringssl.txt ├── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .idea 3 | target 4 | *.iml 5 | tools/release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/README.md -------------------------------------------------------------------------------- /deploysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/deploysettings.xml -------------------------------------------------------------------------------- /flink-shaded-asm-9/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-asm-9/pom.xml -------------------------------------------------------------------------------- /flink-shaded-asm-9/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-asm-9/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-asm-9/src/main/resources/META-INF/licenses/LICENSE.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-asm-9/src/main/resources/META-INF/licenses/LICENSE.asm -------------------------------------------------------------------------------- /flink-shaded-force-shading/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-force-shading/pom.xml -------------------------------------------------------------------------------- /flink-shaded-guava-33/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-guava-33/pom.xml -------------------------------------------------------------------------------- /flink-shaded-guava-33/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-guava-33/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-module-jsonSchema-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/flink-shaded-jackson-module-jsonSchema-2/pom.xml -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jackson-module-jsonSchema-2/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/flink-shaded-jackson-module-jsonSchema-2/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jsonpath/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/flink-shaded-jsonpath/pom.xml -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/flink-shaded-jsonpath/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/flink-shaded-jsonpath/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-jackson-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-jackson-parent/pom.xml -------------------------------------------------------------------------------- /flink-shaded-netty-4/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-4/pom.xml -------------------------------------------------------------------------------- /flink-shaded-netty-4/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-4/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-netty-4/src/main/resources/META-INF/licenses/LICENSE.boringssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-4/src/main/resources/META-INF/licenses/LICENSE.boringssl.txt -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-dynamic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-tcnative-dynamic/pom.xml -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-dynamic/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-tcnative-dynamic/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-static/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-tcnative-static/pom.xml -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-static/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-tcnative-static/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-netty-tcnative-static/src/main/resources/META-INF/licenses/LICENSE.boringssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-netty-tcnative-static/src/main/resources/META-INF/licenses/LICENSE.boringssl.txt -------------------------------------------------------------------------------- /flink-shaded-swagger/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-swagger/pom.xml -------------------------------------------------------------------------------- /flink-shaded-swagger/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-swagger/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-swagger/src/main/resources/META-INF/licenses/LICENSE.jakarta_edl-v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-swagger/src/main/resources/META-INF/licenses/LICENSE.jakarta_edl-v10 -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-35/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-35/pom.xml -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-35/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-35/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-36/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-36/pom.xml -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-36/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-36/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-37/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-37/pom.xml -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-37/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-37/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-38/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-38/pom.xml -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/flink-shaded-zookeeper-38/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/flink-shaded-zookeeper-38/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /flink-shaded-zookeeper-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/flink-shaded-zookeeper-parent/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/pom.xml -------------------------------------------------------------------------------- /tools/ci/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/tools/ci/log4j.properties -------------------------------------------------------------------------------- /tools/releasing/create_release_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/tools/releasing/create_release_branch.sh -------------------------------------------------------------------------------- /tools/releasing/create_source_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/tools/releasing/create_source_release.sh -------------------------------------------------------------------------------- /tools/releasing/deploy_staging_jars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/tools/releasing/deploy_staging_jars.sh -------------------------------------------------------------------------------- /tools/releasing/update_branch_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/tools/releasing/update_branch_version.sh -------------------------------------------------------------------------------- /tools/update_notice_year.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/flink-shaded/HEAD/tools/update_notice_year.sh --------------------------------------------------------------------------------