Implement resolve classpath command

This commit is contained in:
nsingh
2018-03-08 15:18:42 -08:00
parent 319bc0124b
commit a305e2ce53
17 changed files with 318 additions and 26 deletions

View File

@@ -0,0 +1,4 @@
#!/bin/bash
set -e -x
npm install
npm run vsce-package

View File

@@ -38,15 +38,6 @@ export function activate(context: VSCode.ExtensionContext) {
}
}
};
setTimeout(() => {
VSCode.commands.executeCommand("java.execute.workspaceCommand", "sts.java.resolveClasspath", "Brocoli", "Cabbage")
.then(
(commandResult) => VSCode.window.showInformationMessage(""+commandResult),
(e) => {
VSCode.window.showErrorMessage("Error" + e);
}
);
}, 10000);
return commons.activate(options, context);
}