Hello, I'm using camel-quakus and, at the moment, I'm able to write a java object in avro format to a kafka topic. The class is generated through the avro-maven-plugin and therefore extends org.apache.avro.specific.SpecificRecordBase and implements org.apache.avro.specific.SpecificRecord. According to the official Camel Quarkus documentation, I can get the same result even without the maven plugin as long as I put the avsc file containing the avro schema inside the avro directory under the main src dir.
Anyone can give me a short source example on how to marshal a pojo into an avro message using the Jackson library with the Avro extension? In particular I couldn't figure out how to set up the schema resolver. Using this library I still need the generated class or the object can belong to any class? It must be annotated? many thanks
