I downloaded 4.2.0 (BTW, great stuff!) and began the upgrade process from 4.1.0, but found that the portal-ejb.jar file that ships with the binary distributions is missing some compiled classes?
Specifically, I have some code that does this:
1import com.liferay.portal.service.model.Company;
2import com.liferay.portal.service.persistence.CompanyUtil;
3
4public static void main(String[] args)
5{
6 Company company = CompanyUtil.addCompany("mycompany.com");
7}
And rather than compile the entire Liferay source tree, I always put portal-ejb.jar in the compile.classpath, and was able to compile my code.
But it looks like now, that certain classes like Company.class and UserServiceUtil.class are not found in the portal-ejb.jar file. Perhaps this is because they are "interface" classes, and possibly not neccessary to include in the JAR for the JRE? Hmm...
Anyways, just wondering if I'll have to start compiling the source tree in order to compile the above code.
Thanks in advance,
Neil
Please sign in to flag this as inappropriate.