-
System Name: Name of the system (new or update).
-
Repo Systems: Directory where the generated files will be stored for the selected system.
-
Source: Txt file with the source path of the system. You could include more than one source path (one for each line of the txt file).
-
Jar Libraries: Txt file with the jar library path used by the system. You could include more than one jar library path (one for each line).
-
Xml File: Xml File generated by visualvm application for runtime analysis.
-
System Name: System to be analysed.
-
Type of Representation (Static Analysis): Package calls or method calls.
-
Type of Operation (Static Analysis): Show comparisons or variables or nothing for each class represented in the graph.
-
Self-Node call (Static Analysis): Show calls of the same node.
mv clean install
javapackager -createjar -appclass br.parser.ui.Parser4Java -srcdir src/ -outdir out -outfile Parser4Java.jar -v
-createjar creates a JavaFX JAR executable application.
-appclass br.parser.ui.Parser4Java specifies the fully qualified name of the class containing the main() method.
-srcdir . sets the top-level location of the parent directory holding the compiled classes (current directory).
-outdir out sets the destination where the packaged jar file will be created.
-outfile Parser4Java.jar specifies the name of the executable jar file.
-v allows verbose displays logging information when executing javafxpackager.