Hi,
2009/4/28 Rich Hickey <[email protected]>:
>
>
>
> On Apr 27, 5:01 pm, Laurent PETIT <[email protected]> wrote:
>> New patch with corrections posted to google code,
>>
>
> That patch has been applied. I recommend everyone who is able to
> please try out the latest version from SVN - this will become a
> release candidate. The patch generates jar files with version numbers
> in the names. It was suggested on IRC that perhaps it should also copy
> the jar to their traditional (non-versioned) names, for greater
> compatibility.
Why not ? The patch is really simple (3 lines), find it in attachment
and if you nevertheless want an issue in google code, I'll do it).
--
Laurent
> Maven users please make sure that side of the build
> works for you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---
Index: build.xml
===================================================================
--- build.xml (révision 1358)
+++ build.xml (copie de travail)
@@ -46,6 +46,9 @@
<filter token="clojure-version" value="${clojure.version.label}"/>
</filterset>
+ <property name="clojure_noversion_jar" location="clojure.jar"/>
+ <property name="slim_noversion_jar" location="clojure-slim.jar"/>
+ <property name="src_noversion_jar" location="clojure-sources.jar"/>
<property name="clojure_jar" location="clojure-${clojure.version.label}.jar"/>
<property name="slim_jar" location="clojure-slim-${clojure.version.label}.jar"/>
<property name="src_jar" location="clojure-sources-${clojure.version.label}.jar"/>
@@ -104,6 +107,7 @@
<attribute name="Class-Path" value="."/>
</manifest>
</jar>
+ <copy file="${clojure_jar}" tofile="${clojure_noversion_jar}" />
</target>
<target name="clojure-slim" depends="compile-java"
@@ -121,6 +125,7 @@
<attribute name="Class-Path" value="."/>
</manifest>
</jar>
+ <copy file="${slim_jar}" tofile="${slim_noversion_jar}" />
</target>
<target name="clojure-sources" depends="init"
@@ -129,6 +134,7 @@
<fileset dir="${cljsrc}"
includes="clojure/version.properties"/>
</jar>
+ <copy file="${src_jar}" tofile="${src_noversion_jar}" />
</target>
<target name="jar" depends="clojure"/>