graphql-java: Fix missing dependency (#10780)

Fix missing slf4j dependencies for the GraphqlFuzzer.

Signed-off-by: Arthur Chan <arthur.chan@adalogics.com>
This commit is contained in:
Arthur Chan 2023-08-02 18:59:34 +01:00 committed by GitHub
parent f3e3810509
commit 1aa2994e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -28,8 +28,9 @@ rm -rf $HOME/.gradle/caches/
./gradlew --stop
cp "./build/libs/$(basename ./build/tmp/jar/*.jar)" $OUT/graphql-java.jar
cp $(find ~/.gradle/caches/modules-2/files-2.1/ -name "slf4j-api-2.0.7.jar") $OUT/slf4j-api.jar
ALL_JARS="graphql-java.jar"
ALL_JARS="graphql-java.jar slf4j-api.jar"
# The classpath at build-time includes the project jars in $OUT as well as the
# Jazzer API.