I'm running hibern8ide (or trying to) from an ant build.xml file.
Code:
<path id="hibern8ide.class.path">
<path refid="hibernate.lib.class.path" />
<fileset dir="${ext.lib.dir}">
<include name="*.jar"/>
</fileset>
<path location="${HIBERN8IDE_HOME}/lib/pf-joi-full.jar" />
<path location="${HIBERN8IDE_HOME}/hibern8ide.jar" />
</path>
<target name="hibern8ide"
description="Launch the hibern8ide.">
<java classname="net.sf.hibern8ide.Hibern8IDE"
classpathref="hibern8ide.class.path"/>
</target>
Where hibernate.lib.class.path is used for all things hibernate (e.g., every jar in hibernate, but nothing from the hibernate extensions).
hibern8ide launches and closes immediately with no error or other message!
help, please!!