mirror of https://github.com/apache/lucene.git
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:
parent
9852331d40
commit
20312da0aa
|
@ -43,6 +43,11 @@
|
|||
<artifactId>lucene-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>lucene-analyzers-common</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>lucene-test-framework</artifactId>
|
||||
|
@ -69,5 +74,25 @@
|
|||
</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>
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
<module>analysis</module>
|
||||
<module>benchmark</module>
|
||||
<module>common</module>
|
||||
<module>facet</module>
|
||||
<module>grouping</module>
|
||||
<module>queries</module>
|
||||
<module>suggest</module>
|
||||
|
|
Loading…
Reference in New Issue