class-path in meta-inf how to

I have a jar file it has the follwing structure

META-INF

lib

com

This is my manifest.mf file.

Manifest-Version: 1.0

Main-Class: project.converter.Test

Class-Path:

lib/converter-actions-xsd.jar;lib/commons-lang-2.3.jar;lib/commons-io-1.3.1.jar; lib/xbean.jar;

I run jar file using command

java 杍ar converter.jar

I get class not found exception (for a class which is in one of

the jar files in lib folder)

Thanks & Regards

Miro

[532 byte] By [miro_connecta] at [2007-11-27 7:02:14]
# 1
Don't use ; in the Class-PathTry this:Class-Path: lib/converter-actions-xsd.jar lib/commons-lang-2.3.jar lib/commons-io-1.3.1.jar lib/xbean.jar
janus141a at 2007-7-12 18:53:12 > top of Java-index,Desktop,Deploying...