I just played around a bit with jQAssistant v1.0.0 using the command line tool to scan a few JAR archives of my project like bin\jqassistant.cmd scan -f lib
. Unfortunately, this creates a sub-graph for every jar that are only connected through a common :Directory
node. For example, I get 15 nodes (:Type {name: "int"})
which is obviously not useful. Specifically, I cannot create any queries spanning the whole project that is divided in separate jars (e.g. layers, api, impl). So I get one :Archive
node that contains an interface and three other :Archive
nodes requiring that interface but with four different interface nodes having the same fqn.
Am I doing something wrong or is this not working across multiple JARs? Thanks in advance.