You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2011/05/27 01:32:56 UTC

svn commit: r1128121 - in /lucene/dev/trunk/modules: benchmark/build.xml grouping/build.xml suggest/build.xml

Author: sarowe
Date: Thu May 26 23:32:56 2011
New Revision: 1128121

URL: http://svn.apache.org/viewvc?rev=1128121&view=rev
Log:
LUCENE-2995: specialize the dist-maven target for the new suggest module so that the generate-maven-artifacts target can succeed.

Modified:
    lucene/dev/trunk/modules/benchmark/build.xml
    lucene/dev/trunk/modules/grouping/build.xml
    lucene/dev/trunk/modules/suggest/build.xml

Modified: lucene/dev/trunk/modules/benchmark/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/benchmark/build.xml?rev=1128121&r1=1128120&r2=1128121&view=diff
==============================================================================
--- lucene/dev/trunk/modules/benchmark/build.xml (original)
+++ lucene/dev/trunk/modules/benchmark/build.xml Thu May 26 23:32:56 2011
@@ -1,4 +1,22 @@
 <?xml version="1.0"?>
+
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+ -->
+
 <project name="benchmark" default="default">
 
     <description>

Modified: lucene/dev/trunk/modules/grouping/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/grouping/build.xml?rev=1128121&r1=1128120&r2=1128121&view=diff
==============================================================================
--- lucene/dev/trunk/modules/grouping/build.xml (original)
+++ lucene/dev/trunk/modules/grouping/build.xml Thu May 26 23:32:56 2011
@@ -1,4 +1,22 @@
 <?xml version="1.0"?>
+
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+ -->
+
 <project name="grouping" default="default">
     <description>
         Collectors for grouping search results

Modified: lucene/dev/trunk/modules/suggest/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/suggest/build.xml?rev=1128121&r1=1128120&r2=1128121&view=diff
==============================================================================
--- lucene/dev/trunk/modules/suggest/build.xml (original)
+++ lucene/dev/trunk/modules/suggest/build.xml Thu May 26 23:32:56 2011
@@ -44,4 +44,6 @@
       <fileset dir="${common.dir}/../modules/analysis/common" includes="build.xml"/>
     </subant>
   </target>
+
+  <target name="dist-maven" depends="jar-core,javadocs,contrib-build.dist-maven" />
 </project>