Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: native2ascii
-
Labels:None
-
Complexity:Intermediate
-
Patch Submitted:Yes
-
Number of attachments :
Description
This patch provides basic filename globmapper and flattenmapper support for the native2ascii ant task used in this mojo. For example its now possible to do:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native2ascii-maven-plugin</artifactId>
<configuration>
<encoding>UTF8</encoding>
<includes>*/.properties.UTF-8</includes>
<excludes>*/.properties,src,target,pom.xml,.*</excludes>
<mapFrom>*.properties.UTF-8</mapFrom>
<mapTo>*.properties</mapTo>
<flatten>true</flatten>
<src>$
</src>
</configuration>
</plugin>