I need to detect package cycles such as what is seen here:
class ClassA
{
ClassB classB; //detect this package cycle!
}
class ClassB extends ClassA
{
}
which maven-enforcer-plugin rule will allow me to detect package cycle?
http://maven.apache.org/enforcer/enforcer-rules/index.html
Apache Maven Enforcer Rules - Standard
Rules<http://maven.apache.org/enforcer/enforcer-rules/index.html>
maven.apache.org
Standard Rules. The following standard rules ship along with the enforcer
plugin: alwaysFail - Always fail... used to test plugin configuration.
alwaysPass - Always ...
Thanks!
Martin
______________________________________________