I am currently working on a multi-module maven project. It has the following plugin :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<useDefaultDelimiters>false</useDefaultDelimiters>
<delimiters>
<delimiter>${*}</delimiter>
<delimiter>@@</delimiter>
</delimiters>
</configuration>
</plugin>
From Maven documentation it is not very clear what this is exactly trying to do. Can someone please help me understand this.