http://defect.opensolaris.org/bz/show_bug.cgi?id=19220
--- Comment #4 from Vladimir Kotal <[email protected]> 2012-07-03 15:00:32 UTC --- Ideally, this should be solved in ant's get task (http://ant.apache.org/manual/Tasks/get.html) as described here: https://issues.apache.org/bugzilla/show_bug.cgi?id=49453 (the status of this bug is still NEW, filed in 2010). This way the resulting file will be always in the same format. For reference here's relevant snippet of the build.xml file: <target name="download-lucene" depends="-check-lucene" if="lucene_not_downloaded"> <get src="http://repo1.maven.org/maven2/org/apache/lucene/lucene-core/${lucene.version}/${lucene-core.jar}" dest="lib/${lucene-core.jar}" verbose="true" usetimestamp="true"/> <get src="http://repo1.maven.org/maven2/org/apache/lucene/lucene-spellchecker/${lucene.version}/${lucene-spellchecker.jar}" dest="lib/${lucene-spellchecker.jar}" verbose="true" usetimestamp="true"/> </target> Until this is fixed in ant we might have to add a workaround. -- Configure bugmail: http://defect.opensolaris.org/bz/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ opengrok-dev mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/opengrok-dev
