diff --git a/pom.xml b/pom.xml index db93fa0da9..cfb4385876 100644 --- a/pom.xml +++ b/pom.xml @@ -636,7 +636,7 @@ commons-codec commons-codec - 1.21.0 + 1.22.0 @@ -649,7 +649,7 @@ commons-io commons-io - 2.21.0 + 2.22.0 @@ -777,7 +777,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.6 + 5.6.1 @@ -866,7 +866,7 @@ com.fasterxml.jackson.core jackson-databind - 2.21.2 + 2.21.3 diff --git a/scripts/runHorusec.sh b/scripts/runHorusec.sh deleted file mode 100755 index 1ae715ac0e..0000000000 --- a/scripts/runHorusec.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -# Check for install/updates at https://github.com/ZupIT/horusec - -source scripts/requireCommand.sh -requireCommand docker - -# Make sure we're using most recent version -docker pull horuszup/horusec-cli - -benchmark_version=$(scripts/getBenchmarkVersion.sh) -horusec_version=$(docker run --rm horuszup/horusec-cli horusec version 2>&1 | grep Version | awk '{print $NF}') - -result_file="./results/Benchmark_$benchmark_version-horusec-$horusec_version.json" -docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - -v "$(pwd)":/src horuszup/horusec-cli \ - horusec start -p /src -P "$(pwd)" -t 3600 \ - -i='results/*,scorecard/*,scripts/*' \ - -o="json" -O="$result_file" diff --git a/scripts/runSonarQube.sh b/scripts/runSonarQube.sh index 761294d373..a2972589ea 100755 --- a/scripts/runSonarQube.sh +++ b/scripts/runSonarQube.sh @@ -75,7 +75,7 @@ docker run --env SONAR_SCANNER_OPTS=-Xmx4g --rm -v ~/.m2:/root/.m2 -v "$(pwd)":" -Dsonar.host.url="$sonar_docker_host" \ -Dsonar.login="$sonar_token" \ -Dsonar.sources="src" \ - -Dsonar.exclusions="results/**,scorecard/**,scripts/**,tools/**,VMs/**" + -Dsonar.exclusions="results/**,scorecard/**,scripts/**,tools/**,VMs/**,**/*.js" echo "Waiting for SonarQube CE to finish task..."