I have an Eclipse Plug-in that contains two source folders:
- src/
- src-gen/
The reason is that, as the name implies, the second folder is filled with the results of code generation.
However, when I try an Eclipse PDE build, or even a single export of the plugin, the code in src/ that refers to generated classes will not compile. It seems the classes in src-gen are not used during the build, even though they are used in the IDE.
What could be the reason for this issue?