Had a bad jar and the wrong version. It works now. Thanks.
On Jun 21, 10:49 am, ".Bill Smith" wrote:
> Just to be sure, have you checked that jline. is defined in
> /usr/share/java/jline-0_9_5.jar?
> ConsoleRunner
--
You received this message because you are subscribed to the Google
Groups "Clo
Just to be sure, have you checked that jline. is defined in
/usr/share/java/jline-0_9_5.jar?
ConsoleRunner
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members
Actually, still getting error using:
exec java -cp /usr/share/java/jline-0_9_5.jar:/usr/share/java/
clojure.jar:/usr/share/java/clojure-contrib.jar"$extra_classpath"
jline.ConsoleRunner clojure.main "$@"
Exception in thread "main" java.lang.NoClassDefFoundError: jline/
ConsoleRunner
On Jun 21,
D'Oh. Thanks. I forgot the path.
On Jun 21, 9:41 am, ".Bill Smith" wrote:
> Is the jline jar in the current directory?
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from
Is the jline jar in the current directory?
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your
first post.
To unsub
I'm running Clojure 1.2.1 and trying to integrate with jline
Here's my CLASSPATH:
echo $CLASSPATH
/usr/share/java:/home/cnorton/git_build/clojure:
Clojure invoked with this script.
#!/bin/sh
if [ "x$CLASSPATH" = "x" ] ; then
extra_classpath=""
else
extra_classpath=":$CLASSPATH"
fi
whil