From 70a2998798143c9424fcbce290e8721a2910abbd Mon Sep 17 00:00:00 2001 From: Arthur Chan Date: Wed, 23 Aug 2023 09:47:45 +0100 Subject: [PATCH] apache-common-configuration: Add TARGET_PACKAGE_PREFIX environment variable (#10875) Add TARGET_PACKAGE_PREFIX environment variable for fuzz-introspector to ignore analysing on dependency classes. Signed-off-by: Arthur Chan --- projects/apache-commons-configuration/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/apache-commons-configuration/Dockerfile b/projects/apache-commons-configuration/Dockerfile index ef19c5a0b..d650df58d 100644 --- a/projects/apache-commons-configuration/Dockerfile +++ b/projects/apache-commons-configuration/Dockerfile @@ -22,6 +22,7 @@ RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache- rm -f maven.zip ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn +ENV TARGET_PACKAGE_PREFIX org.apache.commons.configuration2.* # Clone the commons-configuration library source code RUN git clone --depth=1 "https://gitbox.apache.org/repos/asf/commons-configuration.git" commons-configuration