I need to set a URL via a maven property (to be replaced per profile). The problem is that this URL contains some & and maven doesn't like this (if URL contains &_program):

"The reference to entity "_program" must end with the ';' delimiter." error occurs in pom on this line.

So how to escape this character or how to escape a hole line that might contain some "special" characters. (What other characters are forbidden in property-values?)

link|improve this question

62% accept rate
feedback

1 Answer

up vote 3 down vote accepted

I've not used maven but from the sounds of it, standard XML escaping would get the job done. In your case you can try using

& instead of &

Where can I get a list of the XML document escape characters?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.