[myeclipse 4.0]
i currently have 3 projects named common, projecta and projectb
projecta and projectb both need to compile src from common into their classes
projectb additionally needs to compile projecta src into its classes
the common src tree is
a.b.common
the projecta src tree is
a.b.p.x
and projectb src tree is
a.b.p.y
i am finding that using the smart deployment facility, i can only get either/or common or projecta src compiled alongside projectb’s src, but not all.
for example, if i remove common as a project dependency i get classes at
a.b.p.x
a.b.p.y
if i now include common i get
a.b.common
a.b.p.y
is this a bug do we think?