prosseek
prosseek

Reputation: 191159

The red ! mark after the build in eclipse

I'm trying to build eclipse source base in eclipse. After the build is done I have yellow ! mark, red ! mark, and red X mark.

enter image description here

I see that yellow mark as a waring, and red X mark as an error. However, I'm not sure what is the red ! mark is for? I opened the project, but I see nothing no errors inside the project files.

enter image description here

Upvotes: 0

Views: 338

Answers (3)

prosseek
prosseek

Reputation: 191159

Thanks to bellum and Chris, I could setup to show only the errors and projects for the project that I click on.

enter image description here

Now I see there are 2 errors to cause the "red !" for the project.

enter image description here

Upvotes: 0

Chris Gerken
Chris Gerken

Reputation: 16400

The red ! usually means that there's an error with the project configuration. The most common error is a missing jar.

If you think everything is in place and this is the first time you've tried to build this code, it could be that you haven't enabled a pre-req. Try creating a new Eclipse plugin to enable the eclipse plugin libraries, for example. The Problems view will tell you which classes can't be found. From that you can infer the missing jars and from that you can infer the pre-reqs to enable.

Upvotes: 2

bellum
bellum

Reputation: 3710

You can find information about these errors in Problems View.

EDIT
This answer can help you to filter out unnecessary stuff from Problems View and to observe errors about your specific packages.

Upvotes: 2

Related Questions