I have this configuration:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.webinf.dir>${basedir}/WebContent/WEB-INF</project.webinf.path>
</properties>
My autocomplete feature from custom properties in Maven 2 Eclipse (m2e) is not working for pom.xml files in the editor. The only thing that is working is the properties such as ${basedir}
, ${project.artifactId}
, etc.
The properties work, the problem is the autocomplete only.
EDIT: The properties do not work, I equivocated myself.
Is there any bug related to this or this could be a misconfiguration of my system?