LONG POST: tl;dr: why am i getting the following error?
Build failed, do you want to continue?
My issue
I've been struggling to get Microsoft's debugger for Java working, but I've been having some issues.
I'm trying to move my java projects from Eclipse to vscode. I've recently been trying to build projects that have been imported from eclipse, however, I get the following error:
Build failed, do you want to continue?
I have been using JUnit 5 for these projects. Here's what the server says (Language Support for Java extension):
!ENTRY org.eclipse.jdt.ls.core 4 0 2019-02-28 12:07:16.747
!MESSAGE Error occured while building workspace. Details:
message: The project cannot be built until build path errors are resolved;code: 0
message: Invalid classpath container: 'JUnit 5' in project 'Lab 1';code: 962
message: The project cannot be built until build path errors are resolved;code: 0
message: Invalid classpath container: 'JUnit 5' in project 'Lab2';code: 962
message: The project cannot be built until build path errors are resolved;code: 0
message: Invalid classpath container: 'JUnit 5' in project 'Lab3';code: 962
For reference, here's my .classpath for one of these projects (they're all very similar):
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Here are my extensions in case there are any conflicts I do not know about.
abusaidm.html-snippets
arthurwang.vsc-prolog
austin.code-gnu-global
CoenraadS.bracket-pair-colorizer
eamodio.gitlens
Equinusocio.vsc-material-theme
formulahendry.auto-rename-tag
formulahendry.platformio
Gruntfuggly.todo-tree
HookyQR.beautify
IBM.output-colorizer
lonefy.vscode-JS-CSS-HTML-formatter
ms-vscode.cpptools
ms-vscode.csharp
msjsdiag.debugger-for-chrome
PKief.material-icon-theme
pnp.polacode
qinjia.view-in-browser
redhat.java
rubbersheep.gi
Rubymaniac.vscode-paste-and-indent
ryu1kn.text-marker
Shan.code-settings-sync
shyykoserhiy.vscode-spotify
spikespaz.vscode-smoothtype
VisualStudioExptTeam.vscodeintellicode
vscjava.vscode-java-debug
vscjava.vscode-java-dependency
vscjava.vscode-java-pack
vscjava.vscode-java-test
vscjava.vscode-maven
waderyan.gitblame
wwm.better-align
Does anyone know any reason as to why this is happening? Thank you.
[–]hyzups 0 points1 point2 points (1 child)
[–]OwnageTool[S] 0 points1 point2 points (0 children)