Goals available for this plugin:
Goal | Description |
---|---|
bom:strip | Goal to detect and strip BOM's from files. Any file where the first
bytes of the file match the byte sequences EFBBBF ,
FEFF , or FFFE will produce a positive
match. The files will be re-written containing the exact same
contents but without the BOM bytes. |
The following specifies the minimum requirements to run this Maven plugin:
Maven | 2.0 |
JDK | 1.6 |
Memory | No minimum requirement. |
Disk Space | No minimum requirement. |
You should specify the version in your project's plugin configuration:
<project> ... <build> <!-- To define the plugin version in your parent POM --> <pluginManagement> <plugins> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>bom-maven-plugin</artifactId> <version>1.0.2</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>org.kuali.maven.plugins</groupId> <artifactId>bom-maven-plugin</artifactId> <version>1.0.2</version> </plugin> ... </plugins> </build> ... </project>
For more information, see "Guide to Configuring Plug-ins"