You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JavaDoc plugin fails with error "cannot find symbol @nullable".
It is a split package problem, because the javax.annotation.* is already in use by jakarta.annotation:jakarta.annotation-api which does not include the, never approved, JSR-305 annotations. See Making JSR 305 Work On Java 9 for more information.
This is no longer a problem as everything was migrated to the "jakarta" namespace.
Now there is no longer an overlap between the non-standard javax.annotation.* and ** jakarta.annotation.*** namespace.
The following dependency causes problems with Java 11:
JavaDoc plugin fails with error "cannot find symbol @nullable".
It is a split package problem, because the javax.annotation.* is already in use by jakarta.annotation:jakarta.annotation-api which does not include the, never approved, JSR-305 annotations. See Making JSR 305 Work On Java 9 for more information.
Best way would to add the JSR-305 annotations that project as discussed here:
jakartaee/common-annotations-api#5
The text was updated successfully, but these errors were encountered: