java - want ~/.m2/repository/ hierarchy of .jar s to be on CLASSPATH (with out causing [arg list too long] error) -
any body have tactics doing this? hate babysitting classpath. ksh, try
for in `find ~/.m2/repository/ -print` export classpath=$i:$classpath done echo $classpath //admittedly, long cd $my_proj/target/test-classes/ java -cp .:$classpath com.my.myapp
//but not work [arg list long] error
any ideas?
Comments
Post a Comment