Maven Changes Plugin
This page provides a space for users to contribute examples, errata, tips and other useful information about the Maven Changes Plugin. Everybody is invited to share his/her thoughts about the plugin to help the community to improve it.
Note: Please do not use this page to report bugs or feature requests. Instead, please fill in an issue in the issue tracking system listed in the official plugin documentation.
Thanks!
- The Maven Team
Examples
Doing this and that:
<project> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.0</version> <configuration> <!-- your example configuration here --> </configuration> </plugin> </plugins> </reporting> </project>
FAQ
How do I validate changes.xml via xsd ?
You need to add the following namespace in your changes.xml:
<document xmlns="http://maven.apache.org/changes/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd"> ... </document>
Actual
How do I ...?
You need to ...
