We use maven variable substitution with a property file:

Before Substitution
-------------
java.naming.provider.url = t3://${jms.url.provider}
jms.outputQueue.name = jms-x...@xxoutputqueue
java.naming.provider.url = t3://${jms.url.provider}
-------------

After Substitution 
-------------
java.naming.provider.url = t3://localhost:7001
jms.outputQueue.name = jms-x...@xxoutputqueue
java.naming.provider.url = t3://${jms.url.provider}
-------------

After character @ no more substitution is done. Why ? Is there a special
character list which contains @ ? Is there a special way to do substitution
while using special character like @ ?

-- 
View this message in context: 
http://maven.40175.n5.nabble.com/variable-substitution-failled-after-character-tp2805923p2805923.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to