You cannot do it the way you want. You cannot add a .classpath file (generated by eclipse, I think) directly on the command line. To complete the task you need to use an external tool, such as ant, maven or gradle. Or you can manually add all the listed dependencies inside the MANIFEST file of your main bank.
Edit: Solution with Ant
1-Open the build.xml file
2-Add Path:
<path id="dep.runtime">
<fileset dir="paht/to/external/dependency/dir" includes="**/*.jar"/>
</path>
path - , librairies, . , = "lib" .classpath. , , . Google .
<path id="dep.runtime">
<fileset dir="lib/axis2/core" includes="**/*.jar"/>
<fileset dir="lib/axis2/rampart" includes="**/*.jar"/>
<fileset dir="lib/axis2/transport" includes="**/*.jar"/>
<fileset dir="lib/apache_commons" includes="**/*.jar"/>
<fileset dir="lib/axis2/mercury" includes="**/*.jar"/>
</path>
3- Jar "jar", , java .
<target name="jar" depends="compile">
<manifestclasspath property="manifest_cp" jarfile="myProject.jar" maxParentLevels="10">
<classpath refid="dep.runtime" />
</manifestclasspath>
<jar jarfile="myProject.jar" basedir="./src">
<manifest>
<attribute name="Main-Class" value="dk.firma.klient.webservice.OiosiRaspClient"/>
<attribute name="Class-Path" value="${manifest_cp}"/>
</manifest>
</jar>
</target>
4. build.xml ant (, ant "jar" ). , , myProject.jar. zip-, META-INF/MANIFEST.MF. , .
5 - java -jar myProject.jar
, .