http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2295
*** shadow/2295 Fri Jun 22 17:09:37 2001 --- shadow/2295.tmp.24400 Fri Jun 22 17:09:37 2001 *************** *** 0 **** --- 1,44 ---- + +============================================================================+ + | Core Task Jar does not proplerly wrap classpath lines longer than 70 chars | + +----------------------------------------------------------------------------+ + | Bug #: 2295 Product: Ant | + | Status: NEW Version: 1.3 | + | Resolution: Platform: HP | + | Severity: Major OS/Version: HP-UX | + | Priority: Other Component: Core tasks | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + the Core Task jar does not work properly. When using Sun's version of jar , if + you specify a manifest, that has Class-Path line longer than 70 characters then + it automatically formats the line properly. Where as ant's jar function just + copies the manifest file and does no manipulation to lines longer than 70 + characters. Below is an example of what my manifest file looked like using + ants jar process: + + **************** ANT manifest file ************************** + + Class-Path: Config.properties /software/xmls/jdom- + b6/build/jdom.jar /software/xmls/ext/jms.jar /software/xmls/ext/mail.jar /softwa + re/xmls/ext/activation.jar /software/xmls/ext/com.ibm.mq.jar /software/xmls/ext/ + com.ibm.mqjms.jar /software/xmls/ext/providerutil.jar /software/xmls/ext/weblogi + c.jar + + ********************************************************** + Below is what it should look like, and what Sun's version of jar converts the + ClassPath line above to: + + ****************** Sun's Version ********************* + + Class-Path: Config.properties /software/xmls/jdom-b6/build/jdom.jar /s + oftware/xmls/ext/jms.jar /software/xmls/ext/mail.jar /software/xmls/e + xt/activation.jar /software/xmls/ext/com.ibm.mq.jar /software/xmls/ex + t/com.ibm.mqjms.jar /software/xmls/ext/providerutil.jar /software/xml + s/ext/weblogic.jar + + ******************************************************* \ No newline at end of file
