对于我正在创建的 Maven 插件,我在 IntelliJ 中收到不正确的错误消息。
我的 pom 中有以下依赖项:
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
我正在使用 IntelliJ 12.0
不正确的错误在屏幕截图中。有谁知道是什么原因造成的?
代码运行得很好clean install