Was wondering if we can add a new feature (checkmark) -- to not copy over the annotations from the original fields that are defined Example: ``` @NotNull @Size(max = 250) private String name; ``` Currently: ``` public Builder withName(@NotNull @Size(max = 250) String val) { name = val; return this; } ``` Wanted feature: ``` public Builder withName(String val) { name = val; return this; } ``` Thank you for this already great plugin!