Hi,
Am 22.07.2009 um 20:46 schrieb Christopher Wilson:
Sorry if this is a bit OT, but has anyone created an ant or maven jar
task (maven: is 'goal' the correct term)? In the few jars that I've
created I've AOT compiled my .clj files and hand-created the jar file.
The way that I do this is compi
On Wed, Jul 22, 2009 at 2:46 PM, Christopher
Wilson wrote:
>
> Sorry if this is a bit OT, but has anyone created an ant or maven jar
> task (maven: is 'goal' the correct term)? In the few jars that I've
> created I've AOT compiled my .clj files and hand-created the jar file.
> The way that I do th
Sorry if this is a bit OT, but has anyone created an ant or maven jar
task (maven: is 'goal' the correct term)? In the few jars that I've
created I've AOT compiled my .clj files and hand-created the jar file.
The way that I do this is compile to the default clojure "classes"
directory, I then pull
2009/7/22 Michael Wood
>
> 2009/7/22 Howard Lewis Ship :
> >
> > On Tue, Jul 21, 2009 at 3:17 PM, Laurent PETIT
> wrote:
> >> Hi,
> >>
> >> so far my examples were more based on issues with namespaces separated
> into
> >> multiple pieces than on a namespace / script dichotomy.
> >>
> >> So while
2009/7/22 Howard Lewis Ship :
>
> On Tue, Jul 21, 2009 at 3:17 PM, Laurent PETIT wrote:
>> Hi,
>>
>> so far my examples were more based on issues with namespaces separated into
>> multiple pieces than on a namespace / script dichotomy.
>>
>> So while I understand the interest of separating source
On Tue, Jul 21, 2009 at 3:17 PM, Laurent PETIT wrote:
> Hi,
>
> so far my examples were more based on issues with namespaces separated into
> multiple pieces than on a namespace / script dichotomy.
>
> So while I understand the interest of separating source files to be
> delivered to production fr
Hi,
so far my examples were more based on issues with namespaces separated into
multiple pieces than on a namespace / script dichotomy.
So while I understand the interest of separating source files to be
delivered to production from test files, I don't see how this would solve
both problems I rep
The other way of looking at these issues is that this style of
compilation will *catch* these problematic issues. It seems to me that
you should divide src/main/clojure into multiple source folders with
an explicit ordering (say src/main/clojure and
src/main/clojure-scripts) to distinguish between
Hi Howard,
Thanks for sharing that.
One point though : I have a mitigate feeling with compiling all namespaces
from the same JVM/Clojure environment. I understand that it makes the
compilation go fast since ant does not need to relaunch the Compiler in a
new jvm for each namespace, but I can see