First some code:
This is my build.xml. Sorry for posting all of it, but I want to make sure that nothing is missing. This build.xml belongs to a project I set up in Eclipse 3.2.1 to learn Hibernate (+ Hibernate tools). Everytime I try to run "codegen" I get:
Buildfile: C:\Java\Eigene Projekte\Hibernate\build.xml
codegen:
[hibernatetool] Executing Hibernate Tool with a Standard Configuration
[hibernatetool] 1. task: hbm2java (Generates a set of .java files)
BUILD FAILED
java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
Total time: 1 second
This happens when starting from Eclipse and externally with a local
Ant install. All external libraries reside in a lib folder next to the build.xml. commons-logging-1.0.4.jar IS in lib, it seems like it is not included in the classpath, but I think <path id="project.class.path"> etc... is correct.
What am I missing here? Is there a way to see the classpath Ant is using?