This rule checks that dataaccess layer does not depend on service layer. From the dataaccess layer, only dependencies to the common layer are allowed.

Noncompliant Code Example

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

    import com.devonfw.ide.sonarqube.service.api.Bar;
    
    public class MyClass {}