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?)