-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
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
Class org.testcontainers.shaded.javax.annotation.CheckForNull not found #801
Comments
Reopening, as we decided to temporarily revert #802 to double-check our shading strategy. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you believe this is a mistake, please reply to this comment to keep it open. If there isn't one already, a PR to fix or at least reproduce the problem in a test case will always help us get back on track to tackle this. |
This issue has been automatically closed due to inactivity. We apologise if this is still an active problem for you, and would ask you to re-open the issue if this is the case. |
I am facing the same issue: package org.testcontainers.shaded.javax.ws.rs.core.Response does not exist.
Apache Maven 3.6.1 It is the same with Java 22. |
Hello,
Class
com.github.dockerjava.api.command.InspectContainerResponse
fromtestcontainers-1.8.1
haveand shading for
com.google.code.findbugs:jsr305
(#563), but have no class at bundle. Java have no problem with it due of ignorance of annotation missing imports, but while I compile code below with Scala 2.11catch the compile warning
The Scala compiler requires that all classes referenced in signatures of classes that in use available on the compile time classpath. With
-Xfatal-warnings
it was a problem.It possible to add missed lib to shaded?
The text was updated successfully, but these errors were encountered: