mirror of https://github.com/apache/lucene.git
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:
parent
7630d6b7e6
commit
2c76719401
|
@ -55,6 +55,7 @@
|
||||||
<module>misc</module>
|
<module>misc</module>
|
||||||
<module>queries</module>
|
<module>queries</module>
|
||||||
<module>queryparser</module>
|
<module>queryparser</module>
|
||||||
|
<module>replicator</module>
|
||||||
<module>sandbox</module>
|
<module>sandbox</module>
|
||||||
<module>spatial</module>
|
<module>spatial</module>
|
||||||
<module>suggest</module>
|
<module>suggest</module>
|
||||||
|
|
|
@ -59,6 +59,33 @@
|
||||||
<artifactId>lucene-facet</artifactId>
|
<artifactId>lucene-facet</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</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>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>${module-path}/src/java</sourceDirectory>
|
<sourceDirectory>${module-path}/src/java</sourceDirectory>
|
||||||
|
|
Loading…
Reference in New Issue