vscode-java icon indicating copy to clipboard operation
vscode-java copied to clipboard

When projects are built from maven tab, compilation results are not reflected in JAVA problems tab

Open palminha opened this issue 4 months ago • 19 comments

My project is composed by the following:

  • java, maven, spring boot
  • one main directory with several maven modules

Currently my settings are:

  "maven.executable.options": "-am",
  "java.configuration.updateBuildConfiguration": "automatic",
  "java.import.maven.enabled": true,
  "java.dependency.packagePresentation": "hierarchical",
  "java.dependency.syncWithFolderExplorer": true,
  "java.autobuild.enabled": false,
  "java.debug.settings.onBuildFailureProceed": true,

Since i disabled the java autobuild (following a suggestion from #4100 ), i build my project using maven (using the maven tab)

Image

When i build, i can see i can see the maven build logs in the terminal tab, but that outcome is not reflected in the problems tab.

Image

palminha avatar Jul 16 '25 08:07 palminha