The updated okhttp and retrofit libraries weren't being included in the fatjar file after compilation. On line 72 in the build.gradle file it is set up to only copy dependencies using the compile keyword and not implementation. This PR is just a quick workaround which changes the implementations to compile
The updated okhttp and retrofit libraries weren't being included in the fatjar file after compilation. On line 72 in the
build.gradle
file it is set up to only copy dependencies using thecompile
keyword and notimplementation
. This PR is just a quick workaround which changes theimplementation
s tocompile