zentol commented on code in PR #23195: URL: https://github.com/apache/flink/pull/23195#discussion_r1297297491
########## tools/ci/verify_bundled_optional.sh: ########## @@ -17,31 +17,58 @@ # limitations under the License. # +usage() { + echo "Usage: $0 <maven-build-output>" + echo " <maven-build-output> A file containing the output of the Maven build." + echo "" + echo "mvnw clean package > <maven-build-output>" + echo "" + echo "The environment variable MVN is used to specify the Maven binaries; defaults to 'mvnw'." + echo "See further details in the JavaDoc of ShadeOptionalChecker." +} + +while getopts 'h' o; do + case "${o}" in + h) + usage + exit 0 + ;; + esac +done + +if [[ "$#" != "1" ]]; then + usage + exit 1 +fi + ## Checks that all bundled dependencies are marked as optional in the poms MVN_CLEAN_COMPILE_OUT=$1 -CI_DIR=$2 -FLINK_ROOT=$3 -source "${CI_DIR}/maven-utils.sh" +MVN=${MVN:-./mvnw} -cd "$FLINK_ROOT" || exit +dependency_plugin_output=/tmp/dependency_tree_optional.txt -dependency_plugin_output=${CI_DIR}/optional_dep.txt +$MVN dependency:tree -B -T1 > "${dependency_plugin_output}" Review Comment: yes, this could easily get lost int he commit history since it's not set on a separate line. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org