Thanks Steve! On Wed, Dec 28, 2011 at 2:31 PM, <[email protected]> wrote: > Author: sarowe > Date: Wed Dec 28 19:31:51 2011 > New Revision: 1225311 > > URL: http://svn.apache.org/viewvc?rev=1225311&view=rev > Log: > SOLR-2982: Maven config: added new lucene phonetic analysis contrib > > Added: > > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/phonetic/ > > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/phonetic/pom.xml.template > Modified: > > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/pom.xml.template > > Added: > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/phonetic/pom.xml.template > URL: > http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/phonetic/pom.xml.template?rev=1225311&view=auto > ============================================================================== > --- > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/phonetic/pom.xml.template > (added) > +++ > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/phonetic/pom.xml.template > Wed Dec 28 19:31:51 2011 > @@ -0,0 +1,71 @@ > +<project xmlns="http://maven.apache.org/POM/4.0.0" > + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/maven-v4_0_0.xsd"> > + <!-- > + 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. > + --> > + <modelVersion>4.0.0</modelVersion> > + <parent> > + <groupId>org.apache.lucene</groupId> > + <artifactId>lucene-parent</artifactId> > + <version>@version@</version> > + <relativePath>../../../pom.xml</relativePath> > + </parent> > + <groupId>org.apache.lucene</groupId> > + <artifactId>lucene-phonetic</artifactId> > + <packaging>jar</packaging> > + <name>Lucene Phonetic Analyzer</name> > + <description>Phonetic Analyzer</description> > + <properties> > + <module-directory>lucene/contrib/analyzers/phonetic</module-directory> > + > <build-directory>../../../build/contrib/analyzers/phonetic</build-directory> > + </properties> > + <dependencies> > + <dependency> > + <groupId>${project.groupId}</groupId> > + <artifactId>lucene-core</artifactId> > + <version>${project.version}</version> > + </dependency> > + <dependency> > + <groupId>commons-codec</groupId> > + <artifactId>commons-codec</artifactId> > + </dependency> > + <dependency> > + <groupId>${project.groupId}</groupId> > + <artifactId>lucene-test-framework</artifactId> > + <version>${project.version}</version> > + <scope>test</scope> > + </dependency> > + </dependencies> > + <build> > + <directory>${build-directory}</directory> > + <outputDirectory>${build-directory}/classes/java</outputDirectory> > + > <testOutputDirectory>${build-directory}/classes/test</testOutputDirectory> > + <sourceDirectory>src/java</sourceDirectory> > + <testSourceDirectory>src/test</testSourceDirectory> > + <resources/> > + <testResources> > + <testResource> > + <directory>${project.build.testSourceDirectory}</directory> > + <excludes> > + <exclude>**/*.java</exclude> > + </excludes> > + </testResource> > + </testResources> > + </build> > +</project> > > Modified: > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/pom.xml.template > URL: > http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/pom.xml.template?rev=1225311&r1=1225310&r2=1225311&view=diff > ============================================================================== > --- > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/pom.xml.template > (original) > +++ > lucene/dev/branches/branch_3x/dev-tools/maven/lucene/contrib/analyzers/pom.xml.template > Wed Dec 28 19:31:51 2011 > @@ -32,6 +32,7 @@ > <packaging>pom</packaging> > <modules> > <module>common</module> > + <module>phonetic</module> > <module>smartcn</module> > <module>stempel</module> > </modules> > >
-- lucidimagination.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
