Reputation: 4657
Using eclipse to build a java project, I hit the Build Project button, there is no discerneable feedback/output whatsoever?
How can I tell that a build, happend and succeeded?
I have looked that in the filesystem the Project directory has indeed a /bin
directories with compiled *.class
files, so I now that something was build, but I look for a way to have eclipse give me that information.
How to configure eclipse to give output (i.e. to the console, status bar, if necessary message popupbox) about that some building happend.
Upvotes: 1
Views: 1397
Reputation: 14678
As such you should get a popup window (shown in my last screenshot) showing the progress of your build, but in case if you are not getting then you can follow below steps to get "Progress" view of the Eclipse which shows progress of everything in the Eclipse.
And then build the project:
And you should get the progress information
Update: Another possibility to double check - make sure you are not running progress bars in the background, to verify that go to Window --> Preferences --> General
and make sure "Always run in background" is NOT checked.
Further reading: this
Upvotes: 2