my project structure is as follows:
src/main/java
src/main/resources
src/main/generated
....
in the generated folder, I put the files that are generated by external software (for example, classes created by JAXB).
In Eclipse, all mentioned folders are marked as source folders.
Is it possible to mark the file in src / main / generated as "generated" or block them differently so that the developer in eclipse cannot change them?
source
share