• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Devaka Cooray
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • Paul Clapham
Sheriffs:
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
Bartenders:

Classpath problems(?)

 
Ranch Hand
Posts: 178
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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?
 
Saloon Keeper
Posts: 29004
214
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think it's <echo message="classpath = ${class.path}"/>. In other words, Ant's a Java program and it passes on the JVM properties from the java.lang.System class.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you are just missing some jar files in "toolslib" , look at below, you won't miss it!

<path id="toolslib">
<path location="lib/hibernate-tools.jar"/>
<path location="lib/hibernate3.jar"/>
<path location="lib/freemarker.jar" />
....... add your jar here ............... like commons-logging-xx.jar
</path>
 
I miss the old days when I would think up a sinister scheme for world domination and you would show a little emotional support. So just look at this tiny ad:
The new gardening playing cards kickstarter is now live!
https://www.kickstarter.com/projects/paulwheaton/garden-cards
reply
    Bookmark Topic Watch Topic
  • New Topic