intellij-idea Java:找不到插件:易出错

balp4ylt  于 2022-11-01  发布在  Java
关注(0)|答案(3)|浏览(193)

我有一个java项目,我有以下设置这个项目。
IDE:Intellij旗舰版2020.03 JDK:Oracle 11.0.1 Maven版本:3.6.3
然后,在编译器-〉Java编译器-〉重写每个模块的编译器参数下:编译optinos,我有

-parameters -XDcompilePolicy=byfile "-Xplugin:ErrorProne -Xep:ParameterName:OFF -Xep:FallThrough:OFF"

但是当我点击构建时,我总是得到这个错误-
java:未找到插件:易出错
我应该为此项目配置什么?

hpcdzsge

hpcdzsge1#

我在使用PATH中设置的JDK 11和Idea的项目配置14时也遇到了同样的问题。我只是将项目使用的版本改为11(或者应该设置为Idea能够找到的版本)。
我的配置很默认。

<plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.1</version>
    <configuration>
      <showWarnings>true</showWarnings>
      <showDeprecation>true</showDeprecation>
      <compilerArgs>
        <arg>-XDcompilePolicy=simple</arg>
        <arg>-Xplugin:ErrorProne
             -XepDisableWarningsInGeneratedCode
        </arg>
      </compilerArgs>
      <annotationProcessorPaths>
        <path>
          <groupId>com.google.errorprone</groupId>
          <artifactId>error_prone_core</artifactId>
          <version>2.4.0</version>
        </path>
      </annotationProcessorPaths>
    </configuration>
  </plugin>
axzmvihb

axzmvihb2#

我有非常相同的版本作为in the response by dhsrocha和唯一的区别是在版本的“maven编译器插件”,我的是“3.8.0”。
当换成较新的版本时,一切都开始工作了。

3ks5zfa0

3ks5zfa03#

Intellij--〉文件--〉项目结构--〉为SDK选择正确的JDK主路径

相关问题