The commit samskivert/jmustache@9eda17f changes the default escape characters used by JMustache. This breaks the code-generation of bigDecimalAsString in the Java language because the annotation
@JsonSerialize(using = ToStringSerializer.class)
is written as
@JsonSerialize(using = ToStringSerializer.class)
You could avoid this by disabling the escaper in JMustache
The commit samskivert/jmustache@9eda17f changes the default escape characters used by JMustache. This breaks the code-generation of bigDecimalAsString in the Java language because the annotation
@JsonSerialize(using = ToStringSerializer.class)is written as
@JsonSerialize(using = ToStringSerializer.class)You could avoid this by disabling the escaper in JMustache