IntelliJ Community 2020.1, Windows 10. I added Lombok plugin, I added the dependency to my maven pom.xml, and I enabled annotation processing. IntelliJ editor shows auto complete for lombok annotated methods, and shows 0 errors. But it won't compile and keeps throwing out
Error:(3, 14) java: package lombok does not exist
Error:(10, 6) java: cannot find symbol
symbol: class Data
I have tried JDK1.8.0_162, Correto-1.8._252, and OpenJDK-14.0.1
Now doing exactly this works on my Mac. This issue is specifically isolated to windows. I haven't done much Java on Windows before. I've gone into IntelliJ and hit the checkbox for the lombok jar for my project, but when I try to build IntelliJ can't ever find the jar. I've tried every google result I can find
Is there something on windows/my class path/my build I need to allow it to find the jar? I tried adding my jar to VM options like this -javaagent:"C:\Users\d\.m2\repository\org\projectlombok\lombok\1.18.12\lombok-1.18.12.jar"
Please don't mark this as a duplicate this is different as the only fixes are using gradle, or don't fix it for windows. I spent 6 hours looking for an answer and none of the fixes were for windows :(