This message was deleted.
# community-support
s
This message was deleted.
s
possibly the app you are using has bad dependency management. it could also be a JDK mismatch issue...like, if it was meant to build with JDK 8 and you are with 9...it removed the javax.* namespace
you may want to check that, and also run
gradlew dependencies
and maybe that can tell you what's up
i am betting it is your JDK though, which needs to be < 9, or the app updated, and/or override/exclude those dependencies
c
Thank you for the response! Our app doesn't have many direct dependencies. I did check ./gradlew dependencies and didn't notice any "FAILED" or "ERROR" text But I am not a gradle expert! Here is the output from ./gradlew dependencies <Sorry I thought the snippet would follow the message!> ``````
I have JDK 8 (at least I think I have JDK 8)
Copy code
nzos@gpu-desktop2:~/dev/current$ java -version
openjdk version "1.8.0_292"
OpenJDK Runtime Environment (build 1.8.0_292-8u292-b10-0ubuntu1~16.04.1-b10)
OpenJDK 64-Bit Server VM (build 25.292-b10, mixed mode)
s
Run gradlew build -i and ensure it's choosing to use that jdk using the output. I'm just poking in the dark here with not much info
c
Thank you very much for your help! I'm running around in the dark with a blindfold on! Here is the output of ./gradlew build -i The working directory for the gradle daemon is /usr/lib/jvm/java-8-openjdk...