simim wrote: > but A needs B only for the compilation (because a class from A > extends a class from B) and B needs A only for the runtime > (because B calls an object of the extended class per reflection). > i specified the dependency in B as <scope>runtime</scope> > and in A, B is referenced per default with the option > <scope>compile</scope>.
Try to completely eliminate the "cyclic" reference by using an interface in A, so that you don't need to specifiy a dependency from B to A Jan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
