Are you trying to use an external xml file or are you just talking about
using properties?
In your pom you can use properties like this:
<project>
<modelVersion>4.0.0</modelVersion>
...
<properties>
<foo>bar</foo>
<foo1>bar1<foo1>
...
</properties>
...
Then you can use them like ${foo1} in the rest of your pom.
Not sure if that solves your issue.
HTH
Jim
On 9/25/07, Sonar, Nishant <[EMAIL PROTECTED]> wrote:
>
> Hi
>
>
>
> Does anyone knows an XML Properties file plugin , like we had XML
> property file in ANT
>
>
>
> <property name='foo' value='bar'>
>
> <property name='foo'1 value='bar1'>
>
> <property name='foo2' value='bar2'>
>
>
>
> I catch up with properties plugin from Zarar Siddiqui but it doesn't
> solve my problem
>
>
>
> Thanks
>
>
>
> Nishant
>
>