Reputation: 191159
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.
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.
Upvotes: 0
Views: 338
Reputation: 191159
Thanks to bellum and Chris, I could setup to show only the errors and projects for the project that I click on.
Now I see there are 2 errors to cause the "red !" for the project.
Upvotes: 0
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