LUCENE-3079: fixed Maven build for new facet module

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1141336 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2011-06-29 23:55:02 +00:00
parent 9852331d40
commit 20312da0aa
2 changed files with 26 additions and 0 deletions

View File

@ -43,6 +43,11 @@
<artifactId>lucene-core</artifactId> <artifactId>lucene-core</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>lucene-test-framework</artifactId> <artifactId>lucene-test-framework</artifactId>
@ -69,5 +74,25 @@
</excludes> </excludes>
</testResource> </testResource>
</testResources> </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> </build>
</project> </project>

View File

@ -34,6 +34,7 @@
<module>analysis</module> <module>analysis</module>
<module>benchmark</module> <module>benchmark</module>
<module>common</module> <module>common</module>
<module>facet</module>
<module>grouping</module> <module>grouping</module>
<module>queries</module> <module>queries</module>
<module>suggest</module> <module>suggest</module>