1N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
1N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1N/A <!--
1N/A Licensed to the Apache Software Foundation (ASF) under one
1N/A or more contributor license agreements. See the NOTICE file
1N/A distributed with this work for additional information
1N/A regarding copyright ownership. The ASF licenses this file
1N/A to you under the Apache License, Version 2.0 (the
1N/A "License"); you may not use this file except in compliance
1N/A with the License. You may obtain a copy of the License at
1N/A
1N/A http://www.apache.org/licenses/LICENSE-2.0
1N/A
1N/A Unless required by applicable law or agreed to in writing,
1N/A software distributed under the License is distributed on an
1N/A "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1N/A KIND, either express or implied. See the License for the
1N/A specific language governing permissions and limitations
1N/A under the License.
1N/A -->
1N/A <modelVersion>4.0.0</modelVersion>
1N/A <parent>
1N/A <groupId>org.apache.lucene</groupId>
1N/A <artifactId>lucene-parent</artifactId>
1N/A <version>@version@</version>
1N/A <relativePath>../../pom.xml</relativePath>
1N/A </parent>
1N/A <groupId>org.apache.lucene</groupId>
1N/A <artifactId>lucene-misc</artifactId>
1N/A <packaging>jar</packaging>
1N/A <name>Lucene Miscellaneous</name>
1N/A <description>Miscellaneous Lucene extensions</description>
1N/A <properties>
1N/A <module-directory>lucene/contrib/misc</module-directory>
1N/A <build-directory>../../build/contrib/misc</build-directory>
1N/A </properties>
1N/A <scm>
1N/A <connection>
1N/A scm:svn:http://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/${module-directory}
1N/A </connection>
1N/A <developerConnection>
1N/A scm:svn:https://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/${module-directory}
1N/A </developerConnection>
1N/A <url>
1N/A http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/${module-directory}
1N/A </url>
1N/A </scm>
1N/A <dependencies>
1N/A <dependency>
1N/A <groupId>${project.groupId}</groupId>
1N/A <artifactId>lucene-core</artifactId>
1N/A <version>${project.version}</version>
1N/A </dependency>
1N/A <dependency>
1N/A <groupId>${project.groupId}</groupId>
1N/A <artifactId>lucene-test-framework</artifactId>
1N/A <version>${project.version}</version>
1N/A <scope>test</scope>
1N/A </dependency>
1N/A <dependency>
1N/A <groupId>${project.groupId}</groupId>
1N/A <artifactId>lucene-analyzers</artifactId>
1N/A <version>${project.version}</version>
1N/A </dependency>
1N/A </dependencies>
1N/A <build>
1N/A <directory>${build-directory}</directory>
1N/A <outputDirectory>${build-directory}/classes/java</outputDirectory>
1N/A <testOutputDirectory>${build-directory}/classes/test</testOutputDirectory>
1N/A <sourceDirectory>src/java</sourceDirectory>
1N/A <testSourceDirectory>src/test</testSourceDirectory>
1N/A <testResources>
1N/A <testResource>
1N/A <directory>${project.build.testSourceDirectory}</directory>
1N/A <excludes>
1N/A <exclude>**/*.java</exclude>
1N/A </excludes>
1N/A </testResource>
1N/A </testResources>
1N/A <plugins>
1N/A <plugin>
1N/A <groupId>org.codehaus.mojo</groupId>
1N/A <artifactId>appassembler-maven-plugin</artifactId>
1N/A <configuration>
1N/A <extraJvmArguments>-Xmx128M</extraJvmArguments>
1N/A <repositoryLayout>flat</repositoryLayout>
1N/A <platforms>
1N/A <platform>windows</platform>
1N/A <platform>unix</platform>
1N/A </platforms>
1N/A <programs>
1N/A <program>
1N/A <mainClass>org.apache.lucene.index.FieldNormModifier</mainClass>
1N/A <name>FieldNormModifier</name>
1N/A </program>
1N/A <program>
1N/A <mainClass>org.apache.lucene.index.IndexSplitter</mainClass>
1N/A <name>IndexSplitter</name>
1N/A </program>
1N/A <program>
1N/A <mainClass>org.apache.lucene.index.MultiPassIndexSplitter</mainClass>
1N/A <name>MultiPassIndexSplitter</name>
1N/A </program>
1N/A <program>
1N/A <mainClass>org.apache.lucene.misc.GetTermInfo</mainClass>
1N/A <name>GetTermInfo</name>
1N/A </program>
1N/A <program>
1N/A <mainClass>org.apache.lucene.misc.HighFreqTerms</mainClass>
1N/A <name>HighFreqTerms</name>
1N/A </program>
1N/A <program>
1N/A <mainClass>org.apache.lucene.misc.IndexMergeTool</mainClass>
1N/A <name>IndexMergeTool</name>
1N/A </program>
1N/A <program>
1N/A <mainClass>org.apache.lucene.misc.LengthNormModifier</mainClass>
1N/A <name>LengthNormModifier</name>
1N/A </program>
1N/A </programs>
1N/A </configuration>
1N/A </plugin>
</plugins>
</build>
</project>