diff --git a/java-checks/src/main/resources/org/sonar/l10n/java/rules/squid/CycleBetweenPackages.html b/java-checks/src/main/resources/org/sonar/l10n/java/rules/squid/CycleBetweenPackages.html index bf753385145..1003ed185f8 100644 --- a/java-checks/src/main/resources/org/sonar/l10n/java/rules/squid/CycleBetweenPackages.html +++ b/java-checks/src/main/resources/org/sonar/l10n/java/rules/squid/CycleBetweenPackages.html @@ -1,2 +1,3 @@ -

When several packages are involved in a cycle (package A > package B > package C > package A where ">" means "depends upon"), that means that those packages are highly coupled and that there is no way to reuse/extract one of those packages without importing all the other packages. Such cycle could quickly increase the effort required to maintain an application and to embrace business change. SonarQube not only detect cycles between packages but also determines what is the minimum effort to break those cycles. This rule log a violation on each source file having an outgoing dependency to be cut in order to break a cycle.

+

When several packages are involved in a cycle (package A > package B > package C > package A, where ">" means "depends upon"), that means those packages are highly coupled, and there is no way to reuse/extract one of those packages without importing all the other packages. Such cycle could quickly increase the effort required to maintain an application and embrace business change.

+

SonarQube not only detect cycles between packages, but also calculates the minimum effort to break those cycles. This rule logs a violation on each source file having an outgoing dependency to be cut in order to break a cycle.