I'm using Eclipse 4.5 with m2e 1.6.1.20150625-2338, ADT 23.0.3.1327240, Android for Maven Eclipse 1.1.0, and 23.0.6.1720515. I have an Android project marked as "Is Library":
If I do a Maven|Update Project... on the project, the .classpath
is modified to contain the following:
<classpathentry kind="output" path="target/classes"/>
But then when I build the project, Eclipse changes that line to:
<classpathentry kind="output" path="bin/classes"/>
Apparently there is a disconnect between what Eclipse thinks the classpath should be and what m2e thinks it should be. Obviously this does havoc for my Subversion files.
Is there some setting that will get m2e and Eclipse to agree on the classpath and not modify it?