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/cldk/CodeAnalyzer.java
+5-10Lines changed: 5 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,8 @@ public class CodeAnalyzer implements Runnable {
69
69
@Option(names = {"--no-build"}, description = "Do not build your application. Use this option if you have already built your application.")
70
70
privatestaticbooleannoBuild = false;
71
71
72
-
@Option(names = {"--no-copy-dependencies"}, description = "Do copy dependencies to a temporary directory.")
73
-
privatestaticbooleannoCopyDeps = false;
72
+
@Option(names = {"-f", "--project-root-path"}, description = "Path to the root pom.xml file of the project.")
73
+
privatestaticStringprojectRootPom;
74
74
75
75
76
76
@Option(names = {"-a", "--analysis-level"}, description = "Level of analysis to perform. Options: 1 (for just symbol table) or 2 (for call graph). Default: 1")
0 commit comments