How to make Eclipse copy all the files (except .java) from the source directory to the output directory? I have some class-files under my sources, but they are filtered out. The setting "Preferences -> Java -> Compiler -> Building -> Filtered Resources" doesn't work for me.
Thanks!
EDIT:
I came out with a solution: add additional Builder to the Eclipse project. It's an Ant script:
<project name="example" default="copy_resources" basedir=".">
<target name="copy_resources" depends="" >
<copy todir="bin" overwrite="false">
<fileset dir="src">
<exclude name="**/*.java" />
</fileset>
</copy>
</target>
</project>
However I have to manually trigger the "Build Project" command in order to Ant script be executed. When I do "Clean" it is not executed...