I have added a reference to a jar in NetBeans that is the result of a Maven compile which uses the shade plugin to combine library references and the build results into one large JAR file. In the editor, referencing anything that was part of the original build result works fine. Referencing anything that was included in the JAR as a library does not however.
The compiler works fine because the JAR does contain the referenced types, but I get no code assistance while writing anything that references those types from the library.
My question is whether or not there is a way to get NetBeans to actually read the JAR instead of the local project to know which classes are available?