Hi,

I am building an executable jar using jar task . I use following syntax

<jar jarfile="${assembly}/test.jar">  <fileset dir="${build}"/>

        <manifest>
             <attribute name="Main-Class" value="a.b.MainClass"/>
             <attribute name="Class-Path" value="classes12.zip mail.jar 
activation.jar"/>
        </manifest>
  
      </jar>            
      </target>

When I run this jar, I get exceptions as application doesn't find classes referenced 
by Class-Path attribute.
I checked the manifest generated by ANT. It has all the things proper like space after 
Class-Path attribte and new line after
Class-Path enteries. If I write the same Manifest manually and make jar, it runs 
properly. 
I dont understand why should Class-Path attribute cause propblem if generated by ANT.
Anybody got any clues!!!

Thanks.



-----Original Message-----
From: Azoulay, Zacky [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:06 AM
To: 'Ant Users List'
Subject: send mail if target fail


Hi,

I need to run some target even if one of them was fail.

can we run a target and continue if it was fail.

I need to run mail target from the same build xmlfile in case of another target was 
fail.


         <target name="check.error"  >          
                        <fail message="mmm"/>
                        <property name="lll" value="aaa"/>
        </target>

         <target name="a" depends="check.error" if="lll">               
                <antcall target="sendmail"/>
        </target>

regards zacky

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to