There has been some confusion in the past about accessing pom properties
using the ${} notation.  I know that to access the project version you
should use ${project.version}.  But for pom defined properties is the
project prefix required?  for instance, in a pom.xml:
 
<properties>
    <one>1</one>
</properties>
 
    ${project.one}
    or....
    ${one}
 
either seems to work, but is there a preferred method?

Reply via email to