Package org.nd4j.autodiff.validation.listeners not found in module

Trying create javafx app with deepleaning4j.
Got this error while trying to strat my app:
Error occurred during initialization of boot layer
java.lang.module.FindException: Error reading module: C:\Users\Migel.m2\repository\org\nd4j\nd4j-api\1.0.0-M2.1\nd4j-api-1.0.0-M2.1.jar
Caused by: java.lang.module.InvalidModuleDescriptorException: Package org.nd4j.autodiff.validation.listeners not found in module

my module-info:

module me.migel.test {
    requires javafx.controls;
    requires javafx.fxml;
    requires com.sun.jna.platform;
    requires com.sun.jna;
    requires java.desktop;
    requires org.apache.commons.io;
    requires datavec.data.image;
    requires nd4j.common;
    requires resources;


    opens me.migel.test to javafx.fxml;
    exports me.migel.test;
}

Using IntelijjIDEA

Adding this “–module-path “C:\Program Files\Java\javafx-sdk-21.0.3\lib” --add-modules javafx.controls,javafx.fxml” to VM options and deleting “module-info” file options fix my problem. But can any1 explain to me the problem I’m facing

@Migel077 this is likely due to the need to update the predefined definitions in the list of packages in M2.1.

I believe I’ve already tackled this on master.