My Maven project has two properties which are used when filtering a persistence configuration file:
<database-url>jdbc:mysql://localhost/${database-name}?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=UTF-8&amp;rewriteBatchedStatements=true&amp;useServerPrepStmts=false&amp;useCursorFetch=true</database-url>
<test-database-url>jdbc:mysql://localhost/${test-database-name}?autoReconnect=true&amp;useUnicode=true&amp;characterEncoding=UTF-8&amp;rewriteBatchedStatements=true&amp;useServerPrepStmts=false&amp;useCursorFetch=true</test-database-url>
The properties need to be doubly-XML-encoded since the configuration file itself is an XML document and Maven resolves XML entities during resource filtering.
I'd like to be able to run my tests directly from my IDE, so I created a profile and set one property to another.
<database-url>${test-database-url}</database-url>
The problem is that Maven resolves the entities in the setting of the property, and then again during the filtering of the configuration file, which means that my configuration file is invalid XML.
Is there a way to set one property to another without resolving the XML entities?