We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following error message or similar might be encountered:
java.lang.ClassNotFoundException: com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
This issue is a result of the listed Java versions, which have a default maximum signature file size smaller than some Java SDK JARs.
To resolve this problem, you can run Maven with the following parameter: -Djdk.jar.maxSignatureFileSize=16000000
-Djdk.jar.maxSignatureFileSize=16000000
If you're compiling with javac, you can use the following command: javac -J-Djdk.jar.maxSignatureFileSize=16000000 example.java
javac -J-Djdk.jar.maxSignatureFileSize=16000000 example.java
The low default value in Java will be addressed and resolved in upcoming minor Java version releases.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following error message or similar might be encountered:
This issue is a result of the listed Java versions, which have a default maximum signature file size smaller than some Java SDK JARs.
To resolve this problem, you can run Maven with the following parameter:
-Djdk.jar.maxSignatureFileSize=16000000
If you're compiling with javac, you can use the following command:
javac -J-Djdk.jar.maxSignatureFileSize=16000000 example.java
The low default value in Java will be addressed and resolved in upcoming minor Java version releases.
The text was updated successfully, but these errors were encountered: