Is it possible to configure the MyBatis Generator Eclipse plugin to generate the SqlMap files in the src/main/resources directory?
When I use a path for targetProject, I get an error. When I use only the project, the SqlMap XML files are created in src/main/java (and I have to use maven to copy them to src/main/resources.
<sqlMapGenerator targetPackage="xml.fabric" targetProject="domain/src/main/resources" >
</sqlMapGenerator>
This results in the error:
Cannot find source folder domain/src/main/resources
src/main/resources exists.