mirror of https://github.com/google/oss-fuzz.git
aspectj: Fix target package prefix for aspectj (#10873)
Add TARGET_PACKAGE_PREFIX environment variable for fuzz-introspector to ignore analysing on dependency classes. Signed-off-by: Arthur Chan <arthur.chan@adalogics.com>
This commit is contained in:
parent
26c397882e
commit
24f235b5fb
|
@ -21,6 +21,7 @@ unzip maven.zip -d $SRC/maven && \
|
|||
rm -rf maven.zip
|
||||
|
||||
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
|
||||
ENV TARGET_PACKAGE_PREFIX org.aspectj.*
|
||||
|
||||
WORKDIR ${SRC}
|
||||
#
|
||||
|
@ -30,4 +31,4 @@ RUN git clone https://github.com/eclipse/org.aspectj
|
|||
|
||||
ADD pom.xml build.sh ${SRC}/
|
||||
ADD src/ ${SRC}/src/
|
||||
WORKDIR ${SRC}/org.aspectj
|
||||
WORKDIR ${SRC}/org.aspectj
|
||||
|
|
Loading…
Reference in New Issue