redhat-developer / vscode-java

Java Language Support for Visual Studio Code
Eclipse Public License 2.0
2.07k stars 433 forks source link

Maven and Java Build Status Colliding #1293

Open Palidino opened 4 years ago

Palidino commented 4 years ago

I'm not entirely sure when this started happening or if reporting this issue on the wrong Java extension, but I believe it has been at least a week or two, maybe longer. I use versions-maven-plugin from org.codehaus.mojo to automatically change my versions whenever I package my project. Up until recently, this has never been an issue.

The issue I'm experiencing is that I frequently (not always) run into an error while trying to package my project. What I believe is happening, is that vscode is automatically rebuilding as soon as it registers that the version has changed. The problem with this is I think is that Maven is still building, and they sometimes run into the issue of each messing with the same class file at the same time.

Example error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-jar-plugin:2.4:jar (default-jar) on project osrs-core: Error assembling JAR: java.lang.reflect.InvocationTargetException: /Users/palidino/Desktop/BattleScape/server/osrs-core/target/classes/com/palidinodh/osrscore/model/item/ItemArray.class -> [Help 1] 2nd package attempt, no changes: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project osrs-core: Execution default-compile of goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile failed.: NullPointerException -> [Help 1] 3rd attempt: No errors. Sometimes takes more attempts, sometimes less.

Environment
Steps To Reproduce
  1. Use org.codehaus.mojo build-helper-maven-plugin and versions-maven-plugin in build plugins during package phase to update versions.
  2. When the versions get changed, the java build status server is activated while maven is still working.
  3. Sometimes get an error.
fbricon commented 4 years ago

Please attach your pom.xml

Palidino commented 4 years ago

pom.txt

zoily commented 5 months ago

I think that this issue come from the activeProfile in : org.eclipse.m2e.core.prefs. You have to set it to the value from maven settings file. Having the same value saved me. I shared it already