vote up 0 vote down star

I tried to create a jar file from a java project, which uses some external jars. I created a lib folder and put all the jars I need there.

I run the project in eclipse by adding all the jars in the lib folder to the Build Path and it works ok.

When I try to create the jar with ant from build.xml, it seems ok, no error is shown.

When I try to run the jar, I get the message "Invalid or corupt jarfile".

In build.xml: I define the path to use for compiling:

<path id="project.classpath">  
     <fileset dir="${lib}">
         <include name="**/*.jar"/>
     </fileset>
</path>

This is the target for the compilation:

<target name="compile" depends="init" description="compile the source " >
    <!-- Compile the java code from ${src} into ${build} -->
    <javac srcdir="${src}" destdir="${build}">  
          <classpath refid="project.classpath"/>  
    </javac>  
</target>

And this is the target for making the jar file:

<target name="dist" depends="compile" description="generate the distribution" >
      <mkdir dir="${dist}"/>
      <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
      <jar jarfile="${dist}/MyProject-${DSTAMP}.jar" basedir="${build}"> 
          <manifest>
          	<attribute name="Main-Class" value="${main}" />
         	<attribute name="Class-Path:" value="lib/**/*.*"/>
          </manifest>
          <fileset dir="${src}" includes="images/**/*.*" />
       </jar>
       <echo file="${dist}/start.bat" message="java -jar MyProject-${DSTAMP}.jar" />
  </target>

Can you please tell me what have I done wrong?

flag

75% accept rate

2 Answers

vote up 3 vote down check

First remove the colon after Class-Path: to match

<attribute name="Class-Path" value="lib/**/*.*"/>

Then I suggest reading

HOWTO Create MANIFEST.MF Classpath From Ant or better using Manifestclasspath

link|flag
It worked with the manifestclasspath. The problem was indeed that the jar names were way too long than the 72 characters allowed. – Jenny Smith Jun 14 at 16:19
Lines in MANIFEST.MF are wrappable. I too think the culprit is the extra colon. – Thorbjørn Ravn Andersen Jun 14 at 17:03
+1 for the Manifestclasspath. Haven't looked at the new goodies since 1.6.2, so this is a nice addition. – Thorbjørn Ravn Andersen Jun 14 at 17:08
vote up 0 vote down

I don't think your Class-Path attribute should have a trailing colon specified in your build.xml.

Try using

jar tvf {jarname}

from the command line, and see if that can expand your jar file, and whether it contains what you expect (the above will simply dump the table of contents, but is a useful check)

EDIT: Changed to reflect the feedback below

link|flag
I also tried this version: <attribute name="Class-Path:" value="lib/**/*.jar"/> And still didn't work – Jenny Smith Jun 14 at 15:31
If you look in your manifest file, you'll see that written in. But are the classes actually in your .jar file ? – Brian Agnew Jun 14 at 15:32
I opened the jar and it seemed to include everyting. At least all the classes and files in the project. Manifest-Version: 1.0 Ant-Version: Apache Ant 1.7.0 Created-By: 11.0-b15 (Sun Microsystems Inc.) Main-Class: controller.Client Class-Path:: lib/**/*.jar – Jenny Smith Jun 14 at 15:37
Yes, the classes are in the jars included. – Jenny Smith Jun 14 at 15:38
Note the double colon in Class-Path – Brian Agnew Jun 14 at 15:38
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.