Basic use means that you configure the plugin from the POM. However, it doesn't run automatically, but on demand:
mvn rat:check
To achieve that, a section like the following needs to be added to your POM:
<build>
<plugins>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rat-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
</plugin>
...
</plugins>
</build>