net.java.dev.jna:jna:jar:5.9.0-SNAPSHOT is missing when compiling module

When I compile my module, I have the following Warning.

[WARNING] The POM for net.java.dev.jna:jna:jar:5.9.0-SNAPSHOT is missing, no dependency information available

[INFO] ------------< com.byes.ignition:VideoViewerNextGen-common >-------------
[INFO] Building VideoViewerNextGen-common 1.0-SNAPSHOT                    [2/6]
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/com/inductiveautomation/ignitionsdk/ignition-common/8.1.7-SNAPSHOT/maven-metadata.xml
Downloaded from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/com/inductiveautomation/ignitionsdk/ignition-common/8.1.7-SNAPSHOT/maven-metadata.xml (629 B at 632 B/s)
Downloading from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/com/inductiveautomation/ignition/common/8.1.7-SNAPSHOT/maven-metadata.xml
Downloaded from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/com/inductiveautomation/ignition/common/8.1.7-SNAPSHOT/maven-metadata.xml (1.0 kB at 1.7 kB/s)
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/net/java/dev/jna/jna/maven-metadata.xml
Downloading from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/net/java/dev/jna/jna/maven-metadata.xml
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/net/java/dev/jna/jna/maven-metadata.xml
[IJ]-17-METADATA_DOWNLOADED-[IJ]-path=C:\Users\lionel\.m2\repository\net\java\dev\jna\jna\maven-metadata-snapshots.xml-[IJ]-artifactCoord=-[IJ]-error=Could not find metadata net.java.dev.jna:jna/maven-metadata.xml in snapshots (https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots)
Downloaded from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/net/java/dev/jna/jna/maven-metadata.xml (2.1 kB at 2.2 kB/s)
Downloading from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/net/java/dev/jna/jna/5.9.0-SNAPSHOT/maven-metadata.xml
Downloading from snapshots: https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots/net/java/dev/jna/jna/5.9.0-SNAPSHOT/jna-5.9.0-SNAPSHOT.pom
[WARNING] The POM for net.java.dev.jna:jna:jar:5.9.0-SNAPSHOT is missing, no dependency information available
[INFO] 

Initially, in my dependency, I use 5.8.0

        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna</artifactId>
            <version>5.8.0</version>
        </dependency>

        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna-platform</artifactId>
            <version>5.8.0</version>
        </dependency>

if I change to 5.9.0, I still have the same issue…