This rule checks that api scope does not depend on base scope. Api scope is only allowed to depend on the api scope of another component.

Noncompliant Code Example

    package com.devonfw.ide.sonarqube.common.api;

    import com.devonfw.ide.sonarqube.common.base.Bar;
    
    public class MyClass {}