This rule checks that the batch layer of one component does not depend on the logic layer of another component. Allowed dependencies from the batch layer:

Noncompliant Code Example

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

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

    public class MyClass {}