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
I am working on a project where Lombok Builder and SuperBuilder annotations are being used for the modal classes. When I tried to generate the docs with the enunciate-gradle plugin, these fields are not being recognized in the final documentation.
Hi Team,
I am working on a project where Lombok Builder and SuperBuilder annotations are being used for the modal classes. When I tried to generate the docs with the enunciate-gradle plugin, these fields are not being recognized in the final documentation.
@Builder
@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@AllArgsConstructor(access = AccessLevel.PROTECTED)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class TestTO {
private String key;
private String path;
private String type;
}
Can you please let me know a way to achieve this?
Please note that I tried delombok task and generating a source jar from the delomobok sources. I still can't see the fields.
Thanks,
Abraham.
The text was updated successfully, but these errors were encountered: