You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pylucene-commits@lucene.apache.org by va...@apache.org on 2011/07/21 18:15:18 UTC

svn commit: r1149253 - /lucene/pylucene/branches/pylucene_3_3/Makefile

Author: vajda
Date: Thu Jul 21 16:15:17 2011
New Revision: 1149253

URL: http://svn.apache.org/viewvc?rev=1149253&view=rev
Log:
added missing GROUPING_JAR definitions and preparing rc3

Modified:
    lucene/pylucene/branches/pylucene_3_3/Makefile

Modified: lucene/pylucene/branches/pylucene_3_3/Makefile
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/pylucene_3_3/Makefile?rev=1149253&r1=1149252&r2=1149253&view=diff
==============================================================================
--- lucene/pylucene/branches/pylucene_3_3/Makefile (original)
+++ lucene/pylucene/branches/pylucene_3_3/Makefile Thu Jul 21 16:15:17 2011
@@ -15,7 +15,7 @@
 # site-packages directory.
 #
 
-VERSION=3.3-2
+VERSION=3.3-3
 LUCENE_SVN_VER=HEAD
 LUCENE_VER=3.3
 LUCENE_SVN=http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_3_3
@@ -176,6 +176,7 @@ QUERIES_JAR=$(LUCENE)/build/contrib/quer
 EXTENSIONS_JAR=build/jar/extensions.jar
 SMARTCN_JAR=$(LUCENE)/build/contrib/analyzers/smartcn/lucene-smartcn-$(LUCENE_VER).jar
 SPATIAL_JAR=$(LUCENE)/build/contrib/spatial/lucene-spatial-$(LUCENE_VER).jar
+GROUPING_JAR=$(LUCENE)/build/contrib/grouping/lucene-grouping-$(LUCENE_VER).jar
 
 ICUPKG:=$(shell which icupkg)
 
@@ -226,6 +227,9 @@ $(SMARTCN_JAR): $(LUCENE_JAR)
 $(SPATIAL_JAR): $(LUCENE_JAR)
 	cd $(LUCENE)/contrib/spatial; $(ANT) -Dversion=$(LUCENE_VER)
 
+$(GROUPING_JAR): $(LUCENE_JAR)
+	cd $(LUCENE)/contrib/grouping; $(ANT) -Dversion=$(LUCENE_VER)
+
 JCCFLAGS?=
 
 jars: $(JARS)