I had a Maven Java 8 project that got updated for Java 11. As a result I had to update some of the dependencies, in particular de.jensd:fontawesomefx-commons, which I updated to the latest version 11.0 from JFrog Bintray.
Maven downloaded the updated dependencies. While some classes are successfully imported, others aren't:
Note that the compiler is missing GlyphsDude and the package de.jensd.fx.glyphs.fontawesome, and upon examining the JAR file in my local .m2 Maven repository I indeed do not see them. However, examining the source code in its Bitbucket repository (pointed at as the official source repository from the JFrog Bintray page) I do see de.jensd.fx.glyphs.fontawesome.FontAwesomeIcon, so why isn't it in the JAR too?
EDIT:The problem occurred even though I added all dependencies for fontawesomefx. I tried both 9.1.2 and 11.0 sets and the problem persists.

Sample App:
module-info
Main
POM
Output