import com.google.common.collect.ImmutableList; import lombok.Builder; import lombok.Singular; @Builder public class BuilderWithDeprecatedAnnOnly { @Deprecated int dep1; @Singular @Deprecated java.util.List strings; @Singular @Deprecated ImmutableList numbers; }