I am picking Json data from one topic, converting it to Avro format and then sending it to another topic using kafka streams.
For that I compiled Notification.avsc
( avro schema file ) using maven and I got Notification.java
file under folder
target/generated-sources/com/kafkastreams/examples/kafka/model.
Now I want to use this file in my program. But I could not import it. I tried writting import address manually also but getting error as
The import com.kafkastreams.examples.kafka.model cannot be resolved
Where am I wrong ?
I am using Visual studio code.