You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2015/10/10 17:09:13 UTC

svn commit: r1707884 - in /lucene/dev/trunk/lucene: ./ licenses/ sandbox/ sandbox/src/java/org/apache/lucene/sandbox/queries/regex/ sandbox/src/test/org/apache/lucene/sandbox/queries/regex/

Author: uschindler
Date: Sat Oct 10 15:09:11 2015
New Revision: 1707884

URL: http://svn.apache.org/viewvc?rev=1707884&view=rev
Log:
LUCENE-6803: Deprecate sandbox Regexp Query

Removed:
    lucene/dev/trunk/lucene/licenses/jakarta-regexp-1.4.jar.sha1
    lucene/dev/trunk/lucene/licenses/jakarta-regexp-LICENSE-ASL.txt
    lucene/dev/trunk/lucene/licenses/jakarta-regexp-NOTICE.txt
    lucene/dev/trunk/lucene/sandbox/src/java/org/apache/lucene/sandbox/queries/regex/
    lucene/dev/trunk/lucene/sandbox/src/test/org/apache/lucene/sandbox/queries/regex/
Modified:
    lucene/dev/trunk/lucene/CHANGES.txt
    lucene/dev/trunk/lucene/ivy-versions.properties
    lucene/dev/trunk/lucene/sandbox/build.xml
    lucene/dev/trunk/lucene/sandbox/ivy.xml

Modified: lucene/dev/trunk/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/CHANGES.txt?rev=1707884&r1=1707883&r2=1707884&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Sat Oct 10 15:09:11 2015
@@ -97,6 +97,8 @@ API Changes
   spatial Filters are now subclass Query.  The spatial heatmap/facet API
   now accepts a Bits parameter to filter counts. (David Smiley, Adrien Grand)
 
+* LUCENE-6803: Deprecate sandbox Regexp Query. (Uwe Schindler)
+
 Optimizations
 
 * LUCENE-6708: TopFieldCollector does not compute the score several times on the

Modified: lucene/dev/trunk/lucene/ivy-versions.properties
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/ivy-versions.properties?rev=1707884&r1=1707883&r2=1707884&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/ivy-versions.properties (original)
+++ lucene/dev/trunk/lucene/ivy-versions.properties Sat Oct 10 15:09:11 2015
@@ -73,7 +73,6 @@ com.sun.jersey.version = 1.9
 /hsqldb/hsqldb = 1.8.0.10
 /io.airlift/slice = 0.10
 /io.netty/netty = 3.7.0.Final
-/jakarta-regexp/jakarta-regexp = 1.4
 /javax.activation/activation = 1.1.1
 /javax.inject/javax.inject= 1
 /javax.servlet/javax.servlet-api = 3.1.0

Modified: lucene/dev/trunk/lucene/sandbox/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/sandbox/build.xml?rev=1707884&r1=1707883&r2=1707884&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/sandbox/build.xml (original)
+++ lucene/dev/trunk/lucene/sandbox/build.xml Sat Oct 10 15:09:11 2015
@@ -23,9 +23,4 @@
 
   <import file="../module-build.xml"/>
 
-  <path id="classpath">
-    <fileset dir="lib"/>
-    <path refid="base.classpath"/>
-  </path>
-
 </project>

Modified: lucene/dev/trunk/lucene/sandbox/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/sandbox/ivy.xml?rev=1707884&r1=1707883&r2=1707884&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/sandbox/ivy.xml (original)
+++ lucene/dev/trunk/lucene/sandbox/ivy.xml Sat Oct 10 15:09:11 2015
@@ -18,11 +18,4 @@
 -->
 <ivy-module version="2.0">
   <info organisation="org.apache.lucene" module="sandbox"/>
-  <configurations defaultconfmapping="compile->master">
-    <conf name="compile" transitive="false"/>
-  </configurations>
-  <dependencies>
-    <dependency org="jakarta-regexp" name="jakarta-regexp" rev="${/jakarta-regexp/jakarta-regexp}" conf="compile"/>
-    <exclude org="*" ext="*" matcher="regexp" type="${ivy.exclude.types}"/> 
-  </dependencies>
 </ivy-module>