coming from Raml 0.8 where annotations were generated on the generated pojos based on jsr303. I am unable to get this working via the cli tool. passing -g jsr303 does not create the annotations. what am i missing here?
pojos in 0.8 generated with the following, looking for the same with 1.0 and cannot seem to get it working
@JsonProperty("createdByUserId")
@Pattern(regexp = "^[a-f0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$")
@NotNull
private String createdByUserId;