LUCENE-4975: replicator module: make Maven configuration functional

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1481912 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2013-05-13 15:15:01 +00:00
parent 7630d6b7e6
commit 2c76719401
2 changed files with 28 additions and 0 deletions

View File

@ -55,6 +55,7 @@
<module>misc</module>
<module>queries</module>
<module>queryparser</module>
<module>replicator</module>
<module>sandbox</module>
<module>spatial</module>
<module>suggest</module>

View File

@ -59,6 +59,33 @@
<artifactId>lucene-facet</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<!-- HttpSolrServer requires this dependency. -->
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
</dependencies>
<build>
<sourceDirectory>${module-path}/src/java</sourceDirectory>