IDE used ECLIPSE I am trying to pull in a project which has AVRO schema compilation using IDL protocol. I am getting below error by Maven.
Solutions tried : Error when importing Maven-GWT project ("No marketplace entries found to handle gwt-maven-plugin") and thats not working for me.
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>${avro.version}</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>schema</goal>
<goal>protocol</goal>
<goal>idl-protocol</goal>
</goals>
<configuration>
<sourceDirectory>src/main/resources/avro</sourceDirectory>
</configuration>
</execution>
</executions>
</plugin>