After #178, IDEA no longer seems to be able to handle the build. If I try to run PackageURLTest I get
java: plug-in not found: ErrorProne
I think that using forceLegacyJavacApi might have worked in all cases.
If I explicitly add error_prone_core to the classpath, it works:
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId>
<version>${error.prone.core.version}</version>
<scope>provided</scope>
</dependencyI guess since it's provided this could actually work without adding a runtime dependency, but it's a hack and I am trying to find a better solution.
After #178, IDEA no longer seems to be able to handle the build. If I try to run
PackageURLTestI getI think that using forceLegacyJavacApi might have worked in all cases.
If I explicitly add error_prone_core to the classpath, it works:
I guess since it's
providedthis could actually work without adding a runtime dependency, but it's a hack and I am trying to find a better solution.