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>
</dependency
I 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.