hi,
i have 3 projects; 1 java project and 2 web projects which i will call a, b and c respectively.
the web projects b and c both need to include classes from a. i have achieved this by adding project a to the project references section of the java build path.
the issue i face now, is that project c needs to include classes from project a AND project b (as well as it’s own). i add both a and b as project references.
my understanding of the myeclipse-web web project dependent project deployment policy, specifically the use smart deployment option, is that when i deploy my project c, it’s classes should be populated with the merged classes from a, b and c.
what i get is classes from a and c only, and no b.
the package hierarchy for the projects is as follows;
a) com.my.company.a
b) com.my.company.parent.b
c) com.my.company.parent.c
i am using MYIDE 5.0 M2 but this problem is also in 4.
consequently, i am having to define a JAR export in project b to get it into the lib of project c but it’s really nasty doing so, especially when smart deploy appears to partially work.
am i missing something extra to get a, b and c classes into one deployed classes folder?
many thanks