Water Cooler v2
Water Cooler v2

Reputation: 33850

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

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?

Upvotes: 6

Views: 8036

Answers (4)

Webomatik
Webomatik

Reputation: 836

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

Upvotes: 0

khakishoiab
khakishoiab

Reputation: 10768

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.

Upvotes: 0

GhostCat
GhostCat

Reputation: 140417

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"?!

Upvotes: 0

Vasan
Vasan

Reputation: 4956

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

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

Upvotes: 10

Related Questions