humanityANDpeace
humanityANDpeace

Reputation: 4657

How to tell that a java project build in eclipse succeeded?

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

Answers (1)

hagrawal7777
hagrawal7777

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.

enter image description here

enter image description here

And then build the project:

enter image description here

enter image description here

And you should get the progress information

enter image description here


As an aside: how to identify if Eclipse project has error? - If you project has build errors (it could be Java build problems, or JS or XML issues) then in the "Project Explorer" you will see a cross-mark-inside-red-square against that project, see a sample below:

enter image description here


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.

enter image description here


Further reading: this

Upvotes: 2

Related Questions