Index: InstallMojo.java =================================================================== --- InstallMojo.java (revisjon 16) +++ InstallMojo.java (arbeidskopi) @@ -118,7 +118,7 @@ value = systemProperties.getProperty(key); } if (value != null) { - s = s.replaceAll("\\$\\{" + key + "\\}", value); + s = s.replaceAll("\\$\\{" + key + "\\}", Matcher.quoteReplacement(value)); changed = true; } }