Issue2178

classification
Title: build.xml refers to wrong version of commons-compress jar
Type: behaviour Severity: normal
Components: Installer Versions: Jython 2.7
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: cjsimpson, zyasoft
Priority: Keywords:

Created on 2014-07-09.23:00:29 by cjsimpson, last changed 2014-07-11.16:19:46 by zyasoft.

Messages
msg8869 (view) Author: (cjsimpson) Date: 2014-07-09.23:00:28
The commons-compress jar was recently upgraded from version 1.8 to 1.8.1. There are two places in the build.xml that refer to that jar, and one of them was missed and still refers to the old version.

build.xml has:
line 579: <zipfileset src="extlibs/commons-compress-1.8.jar"/>

It should have:
line 579: <zipfileset src="extlibs/commons-compress-1.8.1.jar"/>
msg8870 (view) Author: Jim Baker (zyasoft) Date: 2014-07-09.23:42:57
Thanks for spotting this! I will get this fixed ASAP.
msg8871 (view) Author: Jim Baker (zyasoft) Date: 2014-07-09.23:50:26
Fixed as of http://hg.python.org/jython/rev/0c21916a620a
msg8872 (view) Author: (cjsimpson) Date: 2014-07-10.16:46:54
Nice, thanks for taking care of this so fast.
History
Date User Action Args
2014-07-11 16:19:46zyasoftsetstatus: pending -> closed
2014-07-10 16:46:54cjsimpsonsetmessages: + msg8872
2014-07-09 23:50:26zyasoftsetstatus: open -> pending
resolution: fixed
messages: + msg8871
2014-07-09 23:42:57zyasoftsetnosy: + zyasoft
messages: + msg8870
2014-07-09 23:00:29cjsimpsoncreate