0

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

prosseek
  • 182,215
  • 215
  • 566
  • 871

3 Answers3

2

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.

Community
  • 1
  • 1
bellum
  • 3,642
  • 1
  • 17
  • 22
2

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.

Chris Gerken
  • 16,221
  • 6
  • 44
  • 59
0

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

prosseek
  • 182,215
  • 215
  • 566
  • 871