Escape filtering

You can escape filtering with configurable String.

This means expression ${ } and @ @ preceded will replace by the expression : \${java.home} -> ${java.home}.

The escapeString will be removed

  1. <project>
  2. ...
  3. <build>
  4. <plugins>
  5. <plugin>
  6. <groupId>org.apache.maven.plugins</groupId>
  7. <artifactId>maven-resources-plugin</artifactId>
  8. <version>3.3.1</version>
  9. <configuration>
  10. ...
  11. <escapeString>\</escapeString>
  12. ...
  13. </configuration>
  14. </plugin>
  15. </plugins>
  16. ...
  17. </build>
  18. ...
  19. </project>