We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c1bd87d + 84ad741 commit 3b574a3Copy full SHA for 3b574a3
semanticdb-javac/src/main/java/com/sourcegraph/semanticdb_javac/SemanticdbOptionBuilder.java
@@ -27,7 +27,9 @@ public class SemanticdbOptionBuilder {
27
public void processArgument(String arg) {
28
oldArgs.add(arg);
29
arg = unwrapQuote(arg);
30
- if ("-processorpath".equals(previousArg) || "-classpath".equals(previousArg)) {
+ if ("-processorpath".equals(previousArg)
31
+ || "-classpath".equals(previousArg)
32
+ || "-cp".equals(previousArg)) {
33
isClasspathUpdated = true;
34
result.add(PLUGINPATH + File.pathSeparator + arg);
35
} else if (arg.startsWith("-J")) {
0 commit comments