My build script is failing because it is building class A before the dependency is built.
Is there a way to trace when exactly class A is being loaded during compilation? I know the task which fails but the task is compiling other classes C,D,E and There is no direct relations between them. The compiled classes import a Class B which is extended by Class A.
Like
Import Class B
Class C
{
}
Class A extends Class B
{
}
I am using eclipse to debug this. Ant verbose mode did not help either.
Any tips would be appreciated.
Thanks.