I'm following the
Introduction to Hibernate tutorial and am trying to compile the project after adding the HibernateUtil helper class (HibernateUtil.java). When I run ant, I get the following:
Code:
/src/util/HibernateUtil.java:3: package org.hibernate does not exist
...along with a bunch of other errors that are related to the compiler not finding this package.
The only files I have extracted from Hibernate are the files inthe /lib directory (as those files are the only ones that the tutorial states are required). Do I need to extract the rest of Hibernate to a global or project location?
Thanks.
BTW: I'm on a Linux system.