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 02:10:31 UTC

svn commit: r1306070 - in /lucene/dev/branches/lucene3930: lucene/ lucene/contrib/demo/ lucene/contrib/demo/lib/ lucene/contrib/highlighter/ lucene/contrib/memory/ lucene/contrib/misc/ lucene/contrib/sandbox/ lucene/core/ lucene/lib/ lucene/test-framew...

Author: rmuir
Date: Wed Mar 28 00:10:30 2012
New Revision: 1306070

URL: http://svn.apache.org/viewvc?rev=1306070&view=rev
Log:
LUCENE-3930: commit current state

Added:
    lucene/dev/branches/lucene3930/lucene/contrib/demo/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/contrib/highlighter/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/contrib/memory/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/contrib/misc/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/contrib/sandbox/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/core/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/test-framework/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/lucene/tools/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/common/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/icu/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/kuromoji/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/morfologik/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/phonetic/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/smartcn/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/stempel/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/analysis/uima/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/facet/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/grouping/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/join/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/queries/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/queryparser/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/spatial/ivy.xml   (with props)
    lucene/dev/branches/lucene3930/modules/suggest/ivy.xml   (with props)
Removed:
    lucene/dev/branches/lucene3930/lucene/contrib/demo/lib/servlet-api-2.4.jar
    lucene/dev/branches/lucene3930/lucene/lib/ant-1.7.1.jar
    lucene/dev/branches/lucene3930/lucene/lib/ant-junit-1.7.1.jar
    lucene/dev/branches/lucene3930/lucene/lib/junit-4.10.jar
Modified:
    lucene/dev/branches/lucene3930/lucene/common-build.xml
    lucene/dev/branches/lucene3930/modules/build.xml

Modified: lucene/dev/branches/lucene3930/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/common-build.xml?rev=1306070&r1=1306069&r2=1306070&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/common-build.xml (original)
+++ lucene/dev/branches/lucene3930/lucene/common-build.xml Wed Mar 28 00:10:30 2012
@@ -17,7 +17,8 @@
     limitations under the License.
  -->
 
-<project name="common" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
+<project name="common" xmlns:artifact="antlib:org.apache.maven.artifact.ant" 
+                       xmlns:ivy="antlib:org.apache.ivy.ant">
   <description>
     This file is designed for importing into a main build file, and not intended
     for standalone use.
@@ -52,14 +53,19 @@
   <property name="year" value="2000-${current.year}"/>
   <property name="final.name" value="lucene-${name}-${version}"/>
 
+  <property name="ivy.install.version" value="2.2.0" />
+  <property name="ivy.jar.dir" value="${common.dir}/lib" />
+  <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy-${ivy.install.version}.jar" />
+  <available file="${ivy.jar.file}" property="ivy.available" />
+
   <property name="junit.jar" value="junit-4.10.jar"/>
-  <property name="junit-location.jar" value="${common.dir}/lib/${junit.jar}"/>
+  <property name="junit-location.jar" value="${common.dir}/test-framework/lib/${junit.jar}"/>
   <path id="junit-path">
     <pathelement location="${junit-location.jar}"/>
   </path>
 
   <path id="ant-path">
-    <fileset dir="${common.dir}/lib" includes="ant-*.jar"/>
+    <fileset dir="${common.dir}/test-framework/lib" includes="ant-*.jar"/>
   </path>
 
   <path id="maven-ant-tasks.classpath">
@@ -249,10 +255,31 @@
     </echo>
   </target>
 
-  <target name="init">
+  <target name="init" depends="resolve">
     <!-- currently empty -->
   </target>
 
+  <target name="download-ivy" unless="ivy.available">
+      <mkdir dir="${ivy.jar.dir}"/>
+      <!-- download Ivy from web site so that it can be used even without any special installation -->
+      <echo message="installing ivy..."/>
+        <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
+            dest="${ivy.jar.file}" usetimestamp="true"/>
+   </target>
+
+  <target name="install-ivy" depends="download-ivy" unless="ivy.uptodate">
+    <property name="ivy.uptodate" value="true"/>
+    <path id="ivy.lib.path">
+      <pathelement location="${ivy.jar.file}"/>
+    </path>
+    <taskdef resource="org/apache/ivy/ant/antlib.xml"
+             uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
+  </target>
+
+  <target name="resolve" depends="install-ivy">
+    <ivy:retrieve type="jar" log="quiet"/>
+  </target>
+
   <target name="jflex-uptodate-check">
     <uptodate property="jflex.files.uptodate">
       <srcfiles dir="${src.dir}" includes="**/*.jflex" />

Added: lucene/dev/branches/lucene3930/lucene/contrib/demo/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/contrib/demo/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/contrib/demo/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/contrib/demo/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,24 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="core-demo"/>
+    <dependencies>
+      <dependency org="javax.servlet" name="servlet-api" rev="2.4"/>
+    </dependencies>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/contrib/highlighter/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/contrib/highlighter/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/contrib/highlighter/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/contrib/highlighter/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="highlighter"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/contrib/memory/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/contrib/memory/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/contrib/memory/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/contrib/memory/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="memory"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/contrib/misc/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/contrib/misc/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/contrib/misc/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/contrib/misc/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,22 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="misc"/>
+    <!-- TODO: what is this cpptasks? -->
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/contrib/sandbox/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/contrib/sandbox/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/contrib/sandbox/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/contrib/sandbox/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="sandbox"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/core/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/core/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/core/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/core/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="core"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/test-framework/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/test-framework/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/test-framework/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/test-framework/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,26 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="core-test-framework"/>
+    <dependencies>
+      <dependency org="org.apache.ant" name="ant" rev="1.7.1" transitive="false"/>
+      <dependency org="org.apache.ant" name="ant-junit" rev="1.7.1" transitive="false"/>
+      <dependency org="junit" name="junit" rev="4.10" transitive="false"/>
+    </dependencies>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/lucene/tools/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/lucene/tools/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/lucene/tools/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/lucene/tools/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="core-tools"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/common/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/common/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/common/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/common/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-common"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/icu/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/icu/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/icu/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/icu/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-icu"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/kuromoji/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/kuromoji/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/kuromoji/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/kuromoji/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-kuromoji"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/morfologik/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/morfologik/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/morfologik/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/morfologik/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-morfologik"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/phonetic/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/phonetic/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/phonetic/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/phonetic/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-phonetic"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/smartcn/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/smartcn/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/smartcn/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/smartcn/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-smartcn"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/stempel/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/stempel/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/stempel/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/stempel/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-stempel"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/analysis/uima/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/analysis/uima/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/analysis/uima/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/analysis/uima/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="analyzers-uima"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/benchmark/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="benchmark"/>
+</ivy-module>

Modified: lucene/dev/branches/lucene3930/modules/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/build.xml?rev=1306070&r1=1306069&r2=1306070&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/modules/build.xml (original)
+++ lucene/dev/branches/lucene3930/modules/build.xml Wed Mar 28 00:10:30 2012
@@ -25,11 +25,18 @@
     <attribute name="target" />
     <sequential>
       <subant target="@{target}" inheritall="false" failonerror="true">
+         <propertyset refid="uptodate.and.compiled.properties"/>
         <fileset dir="${modules.dir}" includes="*/build.xml" />
       </subant>
     </sequential>
   </macrodef>
 
+  <propertyset id="uptodate.and.compiled.properties" dynamic="true">
+    <propertyref regex=".*\.uptodate$$"/>
+    <propertyref regex=".*\.compiled$$"/>
+  </propertyset>
+
+
   <target name="test" description="Test all modules">
     <forall-modules target="test" />
   </target>

Added: lucene/dev/branches/lucene3930/modules/facet/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/facet/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/facet/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/facet/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="facet"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/grouping/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/grouping/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/grouping/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/grouping/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="grouping"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/join/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/join/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/join/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/join/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="join"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/queries/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/queries/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/queries/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/queries/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="queries"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/queryparser/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/queryparser/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/queryparser/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/queryparser/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="queryparser"/>
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/spatial/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/spatial/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/spatial/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/spatial/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,22 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="spatial"/>
+    <!-- TODO: spatial lib -->
+</ivy-module>

Added: lucene/dev/branches/lucene3930/modules/suggest/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/modules/suggest/ivy.xml?rev=1306070&view=auto
==============================================================================
--- lucene/dev/branches/lucene3930/modules/suggest/ivy.xml (added)
+++ lucene/dev/branches/lucene3930/modules/suggest/ivy.xml Wed Mar 28 00:10:30 2012
@@ -0,0 +1,21 @@
+<!--
+   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.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.lucene" module="suggest"/>
+</ivy-module>