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
I was working on updating the build plugins when, after upgrading a test to use latest Micronaut core, it started failing.
The test checks that we generate configuration properties adoc files correctly. It uses a class which has:
/** * Generic config default value is {@value GenericConfig#DEFAULT_VALUE}. * * @param config */
In Micronaut 3.9.7, it generates the following adoc file:
| `+generic.config+` |int |Generic config default value is {@value GenericConfig#DEFAULT_VALUE}.
However in 4.0.0, it misses the description from @value:
@value
| `+normal.config+` |int |
I suspect this is related to an upgrade of Java Parser.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue description
I was working on updating the build plugins when, after upgrading a test to use latest Micronaut core, it started failing.
The test checks that we generate configuration properties adoc files correctly. It uses a class which has:
In Micronaut 3.9.7, it generates the following adoc file:
However in 4.0.0, it misses the description from
@value
:I suspect this is related to an upgrade of Java Parser.
The text was updated successfully, but these errors were encountered: