Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting a too long line error while trying to build a jar. the long line in the manifest file is the Class-Path line as the application uses a lot of third-party libraries. needless to say, I am using Windows :-( and Eclipse Java 1.6

I tried Class-Path: lib or Class-Path: lib/ but they did not work.

share|improve this question

2 Answers

up vote 7 down vote accepted

the classpath is too long due to the number of jar files in it. The maximum characters in the classpath list per line should not exceed 72.

http://java.sun.com/j2se/1.4.2/docs/guide/jar/jar.html

use as the following way to resolve the problem:

(1) use separate lines, to avoid too long a line for java package name lists

(2) type a preceding space before each folloing lines, for example: Class-Path: ...jar ...jar ...jar

share|improve this answer
perfect... a space at the end of each line and one at the beginning. Thanks a million – fadmaa Jun 16 '10 at 23:40

For too long line error

Use Class-Path: *.*

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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