b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico<project xmlns="http://maven.apache.org/POM/4.0.0"
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico <!--
7ec5186b25096d7b80986d6962f8302dcc2c7769JazzyNico Licensed to the Apache Software Foundation (ASF) under one
7ec5186b25096d7b80986d6962f8302dcc2c7769JazzyNico or more contributor license agreements. See the NOTICE file
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico distributed with this work for additional information
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico regarding copyright ownership. The ASF licenses this file
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico to you under the Apache License, Version 2.0 (the
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico "License"); you may not use this file except in compliance
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico with the License. You may obtain a copy of the License at
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico
b0a21b06590b7a9dc9670321ff099f8f711b0701JazzyNico http://www.apache.org/licenses/LICENSE-2.0
64ea1ebfd58aa8a370c0ae74cc39dd4b4306598cbuliabyak
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-facet</artifactId>
<packaging>jar</packaging>
<name>Lucene Facets</name>
<description>
Package for Faceted Indexing and Search
</description>
<properties>
<module-directory>lucene/contrib/facet</module-directory>
<build-directory>../../build/contrib/facet</build-directory>
</properties>
<scm>
<connection>
scm:svn:http://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/${module-directory}
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/${module-directory}
</developerConnection>
<url>
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/${module-directory}
</url>
</scm>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>lucene-core</artifactId>
<version>${project.version}</version>
</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>
<testResources>
<testResource>
<directory>${project.build.testSourceDirectory}</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/examples</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>