I have a maven project (main) with two modules (each module has this main project as its parent). Everything works perfect but last week I noticed that I can store the launch configurations from eclipse into regular *.launch files.
So I created a folder under main like : main/conf
where I store all my run configurations (*.launch). But after a while I noticed that eclipse or maven creates a bin direcotry under the main project (main/bin) with an exact copy of the main project (including pom.xml and .project file).
The other both projects doesn't have this directory.
The problem is, that eclipse scans the whole direcotry tree for *.launch files and eclipse finds them in main/conf and main/bin/conf.
I thought that the assembly plugin from maven might be the problem and removed that but without any luck. I am not sure if this is a problem with maven because I have teamcity building my jars and on my build agents are no bin direcotries. So it might be a problem with eclipse?
Thanks, Hauke