在 Eclipse 中找不到处理 avro-maven-plugin:1.8.2:idl-protocol 的市场条目。请参阅帮助以获取更多信息

No marketplace entries found to handle avro-maven-plugin:1.8.2:idl-protocol in Eclipse. Please see Help for more information

IDE 使用 ECLIPSE 我正在尝试引入一个使用 IDL 协议进行 AVRO 模式编译的项目。 我遇到了 Maven 的错误。

尝试过的解决方案: Error when importing Maven-GWT project ("No marketplace entries found to handle gwt-maven-plugin") 那对我不起作用。

<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>

这是我的错,我浏览了所有安装视频,并且都在使用 IntelliJ。在 Eclipse 中,您需要转到 运行 As -> Maven build 并进行编译。这将在 pom.xml 中提到的合适位置创建所需的 AVRO 类。之后发生异常