apache / netbeans

Apache NetBeans
https://netbeans.apache.org/
Apache License 2.0
2.63k stars 840 forks source link

Show Build Overview button is disabled with mvnd #7547

Closed Saljack closed 2 months ago

Saljack commented 2 months ago

Apache NetBeans version

Apache NetBeans 22

What happened

When I use mvnd for building projects then the Show Build Overview button is disabled and I cannot debug maven goals. It works find with normal mvn. image

Language / Project Type / NetBeans Component

Java Maven

How to reproduce

  1. Setup mvnd for building
  2. build application
  3. Show Build Overview - is disabled

Did this work correctly in an earlier version?

No / Don't know

Operating System

Windows 10

JDK

Temurin 21

Apache NetBeans packaging

Apache NetBeans provided installer

Anything else

No response

Are you willing to submit a pull request?

No

mbien commented 2 months ago

NB disables a few features if mvnd is run in parallel mode (e.g you see it on the folding bar in the output too), this is intended.

You should see that button again if you run mvnd in sequential mode, e.g by setting -T 1.

Saljack commented 2 months ago

You are right with -T 1 it works. It would be mentioned somewhere.