通过以下配置,如何确保检查有限类和包的签名?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<configuration>
<signature>
</signature>
<!-- How can I select packages/classes to check? -->
</configuration>
</execution>
</executions>
</plugin>