In the following scenario:
APP_HOME=/Users/me/Documents/workspace/Mimer/bin
javac -cp $APP_HOME/lib/*.jar:: BCClient.java
Assuming $APP_HOME/lib contains all the jars needed
What would cause the following:
BCClient.java:35: package com.thoughtworks.xstream does not exist
..
It looks like files libraries needed by the .java are not found, except that when i do the following code fails with the same error
javac -cp "$APP_HOME/lib/xstream-1.2.1.jar;$APP_HOME/lib/xpp3_min-1.1.3.4.O.jar" BCClient.java
::in the classpath? You don't need any:at the end, only as delimiter.