> Cool, thanks. That worked (http://jalat.com/static-files/
> Is it possible to have a subdirectory in the classpath
> as well, or does everything have to be from the root? (Ie. Could
> clojure have been in a subdirectory lib and classpath have been set to
> ". lib/"?)
> I tried that but it seems like that was parsed to a pathname outside
> of the jar.

>From what I've done with Executable jars, the classpath specified in
the manifest will tend to be the root (".").

As an aside, another way to approach this if you don't feel like
tearing apart clojure.jar is to create your own jar without clojure,
and specify a relative path to clojure.jar:

Project
|_YourJar.jar
|_lib
   |_clojure.jar

and then you can put make your manifest in YourJar.jar say something
like:

Class-Path: .:lib/clojure.jar

Maybe someone else know if there is any other way to get the Class-
Path in a jar to point to a subdirectory of the jar -- I haven't seen
that.

-Rick
--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to