On 2008-12-04, Meikel Brandmeyer <[EMAIL PROTECTED]> wrote: > Pre-defining the property is difficult, since the clojure.jar > might be at arbitrary places on arbitrary systems.
You can make life easier for people running the build by adding something like <property file="local.properties"/> to build.xml. If the file doesn't exist (it shouldn't exist in svn), Ant will ignore it. People who want to always compile the jars can create a file local.properties with clojure.jar=my-local-path/clojure.jar and forget about the property from there on. Stefan PS: better use forward slashes in the properties files even on Windows since standard escaping rules for Java properties files apply and backslashes need to be doubled of fourthed or something like this (I always forget it). --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---