Where in Eclipse do I see a project's build progress?
Asked Answered
K

4

6

Question

I am using Eclipse for Java EE, Mars 2, and when I build a project, I don't see any output in the Console window.

Where do I see project build progress and errors?

Kerwon answered 31/8, 2016 at 6:56 Comment(3)
There is a Problem view, where you can see compile Errors and warningsJoplin
@Joplin Oh, thank you.Kerwon
Just for suggestion Windows->Show View->Others->Problems Console appears in tab with Problem viewAppellate
D
10

Window -> Show View -> Progress (for progress)

Window -> Show View -> Markers (or) Problems (for errors)

Decoction answered 31/8, 2016 at 7:1 Comment(3)
Thank you. 7 more minutes before I mark this as the right answer.Kerwon
is there a way to see progress histry?Chanachance
The markers View seems to give me a better indication of the errors than the problem view, which often shows issues even when the app seems to have compiled just fine. I see no evidence of build progress in the progress view, nothing on the lower status bar. I'm new to Eclipse/Spring Tool Suite, which is what I am using.Vanscoy
A
0

you can see it in the right lower corner of IDE just above task bar.

or

Just configure the problem view to show only problems Click on the small triangle at the far right of the view. In the popup menu, select "Configure Contents..." Select each item in the "Configurations" list and click on "Scope: On any element in the same project"

If you want to see the compiler working, you need open the "Progress" view.

Plus

The built-in Java compiler is tightly integrated with Eclipse and JDT, and provides the source indexing that enables powerful IDE features such as refactoring and quick fix.

Plus, it enables incremental build in background after each file modification, hence no visible "java" invocation.

Alyciaalyda answered 31/8, 2016 at 6:58 Comment(1)
Nope. There's nothing there. I would have found it by now if it was that in plain a view.Kerwon
C
0

Have a look into the lower right corner; you should see something like

screenshot of build progress

there. Please note: you might only see that "going" for larger projects. Smaller projects might be built "instantly" without you getting much feedback on that.

In addition to that, you might check the Problems tab/page. Our project has like 100K warnings; so you can nicely see the number of warnings growing in there.

[ hint: resist the temptation to introduce so many warnings to your project that these counters matter to you ]

Finally: this might depend a bit on the View that you are using. Are you using the "Java EE" view; or just "Java"?!

Ciliate answered 31/8, 2016 at 7:1 Comment(1)
I actually looked everywhere and I don't see that happening at all in my IDE. I don't see anything like that in any corner.Kerwon
P
0

In Eclipse for PHP v4.32 (sept 2024), You can display the Progress tab through Window -> Show View -> Other -> General -> Progress

Pantaloons answered 5/9 at 15:46 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.