You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/03/28 03:25:38 UTC

svn commit: r1306099 - in /lucene/dev/branches/lucene3930/modules/benchmark: build.xml ivy.xml lib/commons-compress-1.2.jar

Author: rmuir
Date: Wed Mar 28 01:25:38 2012
New Revision: 1306099

URL: http://svn.apache.org/viewvc?rev=1306099&view=rev
Log:
LUCENE-3930: nuke benchmark's commons-compress jar

Removed:
    lucene/dev/branches/lucene3930/modules/benchmark/lib/commons-compress-1.2.jar
Modified:
    lucene/dev/branches/lucene3930/modules/benchmark/build.xml
    lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml

Modified: lucene/dev/branches/lucene3930/modules/benchmark/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/benchmark/build.xml?rev=1306099&r1=1306098&r2=1306099&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/modules/benchmark/build.xml (original)
+++ lucene/dev/branches/lucene3930/modules/benchmark/build.xml Wed Mar 28 01:25:38 2012
@@ -154,10 +154,11 @@
       <pathelement path="${analyzers-common.jar}"/>
       <pathelement path="${queryparser.jar}"/>
       <pathelement path="${facet.jar}"/>
-      <fileset dir="${common.dir}/../modules/analysis/icu/lib" includes="icu4j*.jar"/>
+      <fileset dir="${common.dir}/../modules/analysis/icu/lib" includes="icu4j-4.8.1.1.jar"/>
       <path refid="base.classpath"/>
     	<fileset dir="lib">
-    		<include name="**/*.jar"/>
+    	  <include name="commons-compress-1.2.jar"/>
+    	  <include name="xercesImpl-2.9.1-patched-XERCESJ-1257.jar"/>
     	</fileset>
     </path>
     <path id="run.classpath">
@@ -198,7 +199,7 @@
 	<path id="collation.runtime.classpath">
 	  <path refid="run.classpath"/>
     <pathelement path="${analyzers-icu.jar}"/>
-    <fileset dir="${common.dir}/../modules/analysis/icu/lib" includes="icu4j*.jar"/>
+    <fileset dir="${common.dir}/../modules/analysis/icu/lib" includes="icu4j-4.8.1.1.jar"/>
 	</path>
 	
 	<target name="collation" depends="compile,jar-analyzers-icu,top-100k-wiki-word-files">

Modified: lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml?rev=1306099&r1=1306098&r2=1306099&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml (original)
+++ lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml Wed Mar 28 01:25:38 2012
@@ -18,4 +18,7 @@
 -->
 <ivy-module version="2.0">
     <info organisation="org.apache.lucene" module="benchmark"/>
+    <dependencies>
+      <dependency org="org.apache.commons" name="commons-compress" rev="1.2" transitive="false"/>
+    </dependencies>
 </ivy-module>