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
Class
package com.example; import io.micronaut.core.annotation.Introspected; import io.micronaut.serde.annotation.Serdeable; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; @Data @Builder(builderClassName = "Builder") @Serdeable @NoArgsConstructor @AllArgsConstructor @Introspected(builder = @Introspected.IntrospectionBuilder(builderClass = RobotCpuData.Builder.class)) public final class RobotCpuData { private String id; private String manufacturer; }
can be compiled
Compilation fails with the error
RobotCpuData.java:16: error: Builder class not found on compilation classpath: <error> public final class RobotCpuData { ^
Just add class above to the project and try to compile.
Any
No response
4.6.x
The text was updated successfully, but these errors were encountered:
Postpone to next round if annotation class is resolved. Fixes #11287
b22f2c6
9029a2a
graemerocher
Successfully merging a pull request may close this issue.
Expected Behavior
Class
can be compiled
Actual Behaviour
Compilation fails with the error
Steps To Reproduce
Just add class above to the project and try to compile.
Environment Information
Any
Example Application
No response
Version
4.6.x
The text was updated successfully, but these errors were encountered: