hello,
I have problem with HibernateTools in Maven (Ant Task). Error which appears:
[hibernatetool] org.hibernate.HibernateException: Problem while generating DOT graph for Configuration
[hibernatetool] java.io.IOException: Cannot run program ""/usr/local/bin/dot"": java.io.IOException: error=2, No such file or directory
[hibernatetool] java.io.IOException: java.io.IOException: error=2, No such file or directory
Everything works on Windows perfectly.
Part of Maven task config:
Code:
<tasks>
                        <taskdef name="hibernatetool" classname="org.hibernate.tool.ant.HibernateToolTask"
                           classpathref="maven.compile.classpath" />
                        <hibernatetool destdir="target/hbm2doc">
                           <annotationconfiguration
                              configurationfile="src/main/webapp/WEB-INF/conf/hibernate.cfg.xml" />
                           <hbm2doc>
                              <property key="dot.executable" value="${graphviz}" /> 
                           </hbm2doc>
                        </hibernatetool>
                     </tasks>
in profiles set: 
Code:
<graphviz>/usr/local/bin/dot</graphviz>
What's wrong anyway? Anybody have similar problem?
Best regards,
Adr