From d93fdb2632bb9b870c2637915120153baae41771 Mon Sep 17 00:00:00 2001 From: Elliott Freis <108356317+imply-elliott@users.noreply.github.com> Date: Fri, 3 Mar 2023 02:09:15 -0800 Subject: [PATCH] Bump CycloneDX module to address POM errors (#13878) * Bump CycloneDX module to address POM errors * Including web-console in the PR --------- Co-authored-by: Elliott Freis --- .github/workflows/standard-its.yml | 4 +--- it.sh | 4 +--- pom.xml | 2 +- web-console/script/druid | 4 +--- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/standard-its.yml b/.github/workflows/standard-its.yml index 8f2d236152b..9909ce012fe 100644 --- a/.github/workflows/standard-its.yml +++ b/.github/workflows/standard-its.yml @@ -106,9 +106,7 @@ jobs: runs-on: ubuntu-22.04 env: MVN: mvn --no-snapshot-updates - # Added -Dcyclonedx.skip=true to avoid ISO-8859-1 [ERROR]s - # May be fixed in the future - MAVEN_SKIP: -P skip-static-checks -Dweb.console.skip=true -Dmaven.javadoc.skip=true -Dcyclonedx.skip=true + MAVEN_SKIP: -P skip-static-checks -Dweb.console.skip=true -Dmaven.javadoc.skip=true CONFIG_FILE: k8s_run_config_file.json IT_TEST: -Dit.test=ITNestedQueryPushDownTest POD_NAME: int-test diff --git a/it.sh b/it.sh index f38dec3f12a..b03b7acb57e 100755 --- a/it.sh +++ b/it.sh @@ -193,9 +193,7 @@ fi CMD=$1 shift -# Added -Dcyclonedx.skip=true to avoid ISO-8859-1 [ERROR]s -# May be fixed in the future -MAVEN_IGNORE="-P skip-static-checks,skip-tests -Dmaven.javadoc.skip=true -Dcyclonedx.skip=true" +MAVEN_IGNORE="-P skip-static-checks,skip-tests -Dmaven.javadoc.skip=true" case $CMD in "help" ) diff --git a/pom.xml b/pom.xml index 99e29e2493a..ea6fe89494f 100644 --- a/pom.xml +++ b/pom.xml @@ -1536,7 +1536,7 @@ org.cyclonedx cyclonedx-maven-plugin - 2.7.3 + 2.7.5 package diff --git a/web-console/script/druid b/web-console/script/druid index b5f8feb1994..7ffbeeee2ac 100755 --- a/web-console/script/druid +++ b/web-console/script/druid @@ -55,10 +55,8 @@ function _build_distribution() { ( # Add HEAD as an allowed HTTP method since this is how we check when the Druid service is ready. - # Added -Dcyclonedx.skip=true to avoid ISO-8859-1 [ERROR]s - # May be fixed in the future. See https://github.com/apache/druid/pull/13867 cd "$(_get_code_root)" \ - && mvn -Pdist,skip-static-checks,skip-tests -Dmaven.javadoc.skip=true -Dcyclonedx.skip=true -q -T1C install \ + && mvn -Pdist,skip-static-checks,skip-tests -Dmaven.javadoc.skip=true -q -T1C install \ && cd distribution/target \ && tar xzf "apache-druid-$(_get_druid_version)-bin.tar.gz" \ && cd apache-druid-$(_get_druid_version) \