[OJB-developers] build.xml
Brought to you by:
thma
From: Domagoj J. <do...@la...> - 2002-04-30 15:44:45
|
Hi ! In build.xml for the latest relase ojb-.8.375 there is a small, small bug , in preproces target in fork task there is attribute for setting classpath , attribute name is classpath, but here it should be classpathref because atribute's value ("compilation-classpath") in build.xml is realy a reference to a already defined classpath. <!-- Preprocess Java Source Code --> <target name="preprocess" depends="prepare" > <echo message="using switches: ${JDK}, ${DEBUG}"/> <java fork="no" classname="org.hsqldb.util.CodeSwitcher" failonerror="true" classpath="compilation-classpath"> *********** should be : classpathref Cheers. |