Any body have tactics for doing this? I hate babysitting the CLASSPATH. From the Ksh, I try
for i in `find ~/.m2/repository/ -print`
do
export CLASSPATH=$i:$CLASSPATH
done
echo $CLASSPATH //admittedly, very long
cd $MY_PROJ/target/test-classes/
java -cp .:$CLASSPATH com.my.MyApp
//but this does not work [arg list too long] error
any ideas?