File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
.devcontainer/local-features/setup-user Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ curl -sSL https://github.com/jhy/jsoup/archive/refs/tags/jsoup-1.15.3.tar.gz | t
3838jar cf ${GRADLE_PATH} /jsoup-1.15.3.jar /tmp/jsoup-jsoup-1.15.3
3939rm -rf /tmp/jsoup-jsoup-1.15.3
4040
41+ # Temporary: Due to https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-4065
42+ rm -f ${GRADLE_PATH} /testng-*
43+ curl -sSL https://github.com/cbeust/testng/archive/refs/tags/7.7.0.tar.gz | tar -xzC /tmp 2>&1
44+ jar cf ${GRADLE_PATH} /testng-7.7.0.jar /tmp/testng-7.7.0
45+ rm -rf /tmp/testng-7.7.0
46+
4147# Temporary: Due to https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29425
4248MAVEN_PATH=$( cd /usr/local/sdkman/candidates/maven/3* /lib/ && pwd)
4349rm -f ${MAVEN_PATH} /commons-io-*
Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ check "java-version-on-path-is-12.0.2" java --version | grep 12.0.2
174174GRADLE_PATH=$( cd /usr/local/sdkman/candidates/gradle/7* /lib/plugins && pwd)
175175check " aws-java-sdk-s3-plugin" bash -c " ls ${GRADLE_PATH} | grep aws-java-sdk-s3-1.12.363.jar"
176176check " jsoup-plugin" bash -c " ls ${GRADLE_PATH} | grep jsoup-1.15.3.jar"
177+ check " testng-plugin" bash -c " ls ${GRADLE_PATH} | grep testng-7.7.0.jar"
177178
178179MAVEN_PATH=$( cd /usr/local/sdkman/candidates/maven/3* /lib/ && pwd)
179180check " commons-io-lib" bash -c " ls ${MAVEN_PATH} | grep commons-io-2.11.jar"
You can’t perform that action at this time.
0 commit comments