On Fri Feb 13 2015 at 1:34:56 PM Stephen Mallette <[email protected]>
wrote:

> I just added the Apache Rat plugin to the TinkerPop3 pom.xml.  It detects
> whether or not the Apache License Headers are all where they need to be.
> You can run the rat tests by doing from the root of the repo:
>
> mvn apache-rat:check
>

You should also have the root pom of the tinkerpop project have a parent of
the Apache maven project rather than sonatype:

<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>16</version>
</parent>

This should setup rat to run as part of the verify goal, which is executed
at a minimum on release.


> which will generate a report in target/rat.txt of all the projects and
> their compliance.  The command above, like many other useful maven
> commands, can be found in the README for future reference.
>

Reply via email to