The answer from @Rupert Madden-Abbott works. However, if you have a non-default constructor, e.g.,
Builder(String city, String country) {...}
Then you should annotate the parameters as below:
@JsonCreator
Builder(@JsonProperty("city") String city,
@JsonProperty("country") String country) {...}