1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<?xml version="1.0"?>
<document>
<properties>
<title>Using the Maven Clirr plugin</title>
<author>Vincent Massol</author>
</properties>
<body>
<section name="Using the Clirr plugin">
<ol>
<li>
Make sure you have the Clirr plugin <a href="installing.html">installed</a>.
</li>
<li>
Make sure you have the old versions of your project
<a href="http://maven.apache.org/reference/project-descriptor.html#versions">declared</a>
in your POM. The versions should be declared from oldest to youngest.
Clirr will check the current code against the latest released version, ingnoring
the current development version (version control tag 'HEAD').
<!-- TODO: docs for checking against a specific version -->
</li>
<li>
Type "maven clirr". This will create an XML file that contains all changes
in your public API. For each change, the file includes Clirr's compatibility
analysis.
</li>
</ol>
</section>
</body>
</document>
|