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
Copy file name to clipboardExpand all lines: src/main/java/com/ibm/northstar/CodeAnalyzer.java
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,12 @@ public class CodeAnalyzer implements Runnable {
46
46
@Option(names = {"-i", "--input"}, required = true, description = "Path to the project root directory.")
47
47
privatestaticStringinput;
48
48
49
+
@Option(names = {"-b", "--build-cmd"}, description = "Custom build command. Defaults to auto build.")
50
+
privatestaticStringbuild;
51
+
52
+
@Option(names = {"--no-build"}, description = "Do not build your application. Use this option if you have already built your application.")
53
+
privatestaticbooleannoBuild = false;
54
+
49
55
@Option(names = {"-a", "--analysis-level"}, description = "[Optional] Level of analysis to perform. Options: 1 (for just symbol table) or 2 (for full analysis including the system depenedency graph). Default: 1")
0 commit comments