This rule checks that the service layers of different components don't depend on each other. Allowed dependencies from the service layer:

Noncompliant Code Example

    package com.devonfw.ide.sonarqube.compA.service.api;

    import com.devonfw.ide.sonarqube.compB.service.api.Bar;

    public class MyClass {}