Hello,
I am currently using gcloud credentials for authentication. added system environment variable using below batch script.
SET GOOGLE_APPLICATION_CREDENTIALS="D:\GoogleAPIKey\Credentials.json"
SETX GOOGLE_APPLICATION_CREDENTIALS %GOOGLE_APPLICATION_CREDENTIALS%
echo "Using Below Google Credentials.. "
type %GOOGLE_APPLICATION_CREDENTIALS%
it is working fine as expected below is the snip.
but while running a maven bundle it is giving me below error.

from eclipse, it is running smoothly without any issue but after building runnable jar causing an issue with GOOGLE_APPLICATION_CREDENTIALS
Please suggest if I am missing something.