Stardog 9.2.0 cannot import Maven dependencies in Java

Hello there!
I've been working with previous versions of Stardog, and I always managed to import Maven dependencies in my Java application to start the Stardog server and do the query from the Java app.
However, recently when I tried to do the same in Stardog 9.2.0, the Maven dependencies cannot be unpacked to be used in Java.
Is there any compatibility issue between Java, Maven, and Stardog versioning?

I'm using Java 11 with Maven 3.8.1 and Stardog 9.2.0 free version on the cloud.
After running the Java app with Maven, it gives me a compilation error even though I have all the Maven dependencies of version 9.2.0 in my POM file:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project : Compilation failure: Compilation failure:
[ERROR] cannot find symbol
[ERROR] symbol: class stardog
[ERROR] location: package com.complexible
[ERROR] cannot find symbol
[ERROR] symbol: class Stardog
[ERROR] package com.complexible.stardog.reasoning does not exist
[ERROR] package com.complexible.stardog.reasoning.api does not exist

Any help would be highly appreciated!