-
Notifications
You must be signed in to change notification settings - Fork 13k
typo #3523
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
typo #3523
Conversation
1e38efb Experimenting as the commit broke the Sonatype action.
Just a heads up. I understand there is a problem with the Javadoc, but deploying snapshots is more important. |
FYI, this SO thread may be related. |
I’m not sure if there’s an effective solution in this SO thread. |
I saw your comment, but I haven't done any test myself. I am still OK with merging a workaround if it does not break anything. And if you are not sure, we can just leave it as is. |
This issue also troubles me, as it seems that it is currently not possible to perform Github Action independently. |
Hi @guanchengang, I can see how you might want the github action we have for site to execute. That is branch based and very specific situation we have due to deficiencies in maven plugins during release processes where we may lose ability to publish the website so that isn't something we would generally expand out in usage. Most contributors are not generally likely to encounter site related issues such as here so I see that as more of an edge case and running 'mvn site' as noted is good enough to determine if issue is ok or not. Since you raised a new PR, that is pretty simple for us to pull and confirm before merging again. |
HTML entities will not render properly in



{@ code}
A single line starting with
* @Annotation({...
will result in abnormal macthing of the end flag of{@code
To avoid this situation, I used the form
* @Annotation(value = {...
(Although this is a bit redundant, it is also in line with Java syntax)After modification