On Mar 23, 9:08 am, Eric Thorsen <eric.thor...@gmail.com> wrote:
> The above returns the running jvm version.  I was looking at the jar
> manifest to see what it was built with which is where I saw the 1.6
> reference for clojure-contrib.

If the JAR manifest is the problem, the following pom.xml lines will
change it:

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Build-Jdk>1.5.0</Build-Jdk>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>

But that makes me slightly nervous, because it's a lie.  We didn't
REALLY build contrib with JDK 1.5, we just changed the manifest.

-SS

-- 
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 unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

To unsubscribe from this group, send email to 
clojure+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.

Reply via email to