-
Hi, I'm trying to build automatalib with the latest Community IDEA (2023.2.4), and I'm getting an error during "Parsing Java", which I haven't figured out how to work around. Any ideas? Thanks, John Notes:
Build error (snipping out a long boilerplate message):
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @jn1z, I have run into this issue as well. It is related to the switch to our in-house annotation processor which uses the For now, you should be fine with disabling the incremental annotation processing as suggested. At least this is what works for me (see below) |
Beta Was this translation helpful? Give feedback.
Hi @jn1z,
I have run into this issue as well. It is related to the switch to our in-house annotation processor which uses the
DocTrees
API that is not compatible with theProcessingEnvironment
that IntelliJ creates. I can workaround this in the annotation processor but I still need some time to think about whether I should do this or find an alternative for theDocTrees
API (since gradle users seem to encounter similar issues). Currently, I'm busy with the modularization of AutomataLib and LearnLib but I have it on my list as the next point after this.For now, you should be fine with disabling the incremental annotation processing as suggested. At least this is what works for me (see below)