This rule checks that the dataaccess layers of different components don't depend on each other. From the dataaccess layer, only dependencies to the common layer are allowed.

Noncompliant Code Example

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

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

    public class MyClass {}