Latest Avro compiler (1.8.2) generates java sources for dates logical types with Joda-Time based implementations. How can I configure Avro compiler to produce sources that u
With avro 1.9.2 you can use e.g. date for LocalDate:
LocalDate
{ "name": "Transaction", "type": "record", "fields": [ { "name": "time", "type": { "type": "int", "logicalType": "date" } },
See Logical Types for the other types.