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?
- pom properties Randy Kamradt
- Re: pom properties Gabriele Columbro
- Re: pom properties Brett Porter
