You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Option(names = {"-i", "--input"}, description = "Path to the project root directory.")
59
+
@Option(names = {"-i", "--input"}, description = "Path to the project root directory.")
60
60
privatestaticStringinput;
61
61
62
-
@Option(names = {"-t", "--target-files"}, description = "Paths to files to be analyzed from the input application.")
62
+
@Option(names = { "-t",
63
+
"--target-files" }, description = "Paths to files to be analyzed from the input application.")
63
64
privatestaticList<String> targetFiles;
64
65
65
-
@Option(names = {"-s", "--source-analysis"}, description = "Analyze a single string of java source code instead the project.")
66
+
@Option(names = { "-s",
67
+
"--source-analysis" }, description = "Analyze a single string of java source code instead the project.")
66
68
privatestaticStringsourceAnalysis;
67
69
68
-
@Option(names = {"-o", "--output"}, description = "Destination directory to save the output graphs. By default, the SDG formatted as a JSON will be printed to the console.")
70
+
@Option(names = { "-o",
71
+
"--output" }, description = "Destination directory to save the output graphs. By default, the SDG formatted as a JSON will be printed to the console.")
69
72
privatestaticStringoutput;
70
73
71
-
@Option(names = {"-b", "--build-cmd"}, description = "Custom build command. Defaults to auto build.")
74
+
@Option(names = {"-b", "--build-cmd"}, description = "Custom build command. Defaults to auto build.")
72
75
privatestaticStringbuild;
73
76
74
-
@Option(names = {"--no-build"}, description = "Do not build your application. Use this option if you have already built your application.")
77
+
@Option(names = {
78
+
"--no-build" }, description = "Do not build your application. Use this option if you have already built your application.")
75
79
privatestaticbooleannoBuild = false;
76
80
77
-
@Option(names = {"--no-clean-dependencies"}, description = "Do not attempt to auto-clean dependencies")
81
+
@Option(names = {"--no-clean-dependencies"}, description = "Do not attempt to auto-clean dependencies")
78
82
publicstaticbooleannoCleanDependencies = false;
79
83
80
-
@Option(names = {"-f", "--project-root-path"}, description = "Path to the root pom.xml/build.gradle file of the project.")
84
+
@Option(names = { "-f",
85
+
"--project-root-path" }, description = "Path to the root pom.xml/build.gradle file of the project.")
81
86
publicstaticStringprojectRootPom;
82
87
83
-
@Option(names = {"-a", "--analysis-level"}, description = "Level of analysis to perform. Options: 1 (for just symbol table) or 2 (for call graph). Default: 1")
88
+
@Option(names = { "-a",
89
+
"--analysis-level" }, description = "Level of analysis to perform. Options: 1 (for just symbol table) or 2 (for call graph). Default: 1")
84
90
privatestaticintanalysisLevel = 1;
85
91
86
-
@Option(names = {"-v", "--verbose"}, description = "Print logs to console.")
0 commit comments