DG Christensen
DG Christensen
I have the same problem as wheezil on Linux. It seems worse in projects with code generation. On vanilla projects vscode is ok but in workspaces with code generation it...
I don't have too much to add; wheezil covered most of it. I use Java Immutables. If I run `mvn install` (or test, etc) while vscode is open then the...
I had this same problem. What solved it for me was changing my config from using `ClasspathHelper.forClassLoader()` to `ClasspathHelper.forJavaClassPath()`, so: ``` ConfigurationBuilder config = new ConfigurationBuilder() .setUrls( ClasspathHelper.forJavaClassPath() ) .addScanners(...