Re: Compiler in Eclipse plugin ignores target/classes

2012-02-15 Thread Marcel Stör
The ugly workaround: - have the plugin generate the i18n properties to target/generated- sources/myplugin - add target/generated-sources/myplugin as a source folder to the Eclipse project - Eclipse will copy properties from target/generated-sources/myplugin to target/classes - GWT compiler is

Compiler in Eclipse plugin ignores target/classes

2012-02-14 Thread Marcel Stör
Context: multi-module Maven project in Eclipse Our i18n properties files are generated by a Maven plugin to target/classes (based on some files in src/main/resources). How do I tell the GWT compiler that it should look there when it tries to resolve i18n resources? Currently compilation fails