Message2450

Author johahn
Recipients
Date 2005-06-16.08:26:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=887415

1) I've uploaded an updated version of this patch. It is now
also explicit about the javac nowarn attribute, needed when
building with the jikes compiler, as it produces many
warnings. It defaults to false.

2) Another thing I've had problems with stems from Eclipse
using the same output directory for the jython files as well
as the bugtests. It means that the build directory will
contain many .class files. Not all of them should be put
into jython.jar as is done now. Instead of...
          <include name="**/*.class" />
          <include name="**/ucnhash.dat" />
          <include name="**/*.properties" />

... I suggest something like...
          <include name="com/**/*" />
          <include name="org/**/*" />
          <include name="jxxload_help/*" />
          <include name="javatests/*" />

3) I've also removed the deprecation flag from beeing
reported in the jar manifest since it has no meaning after
the build is done.

4) Added ant.properties to .cvsignore.
History
Date User Action Args
2008-02-20 17:18:28adminlinkissue1218010 messages
2008-02-20 17:18:28admincreate