mirror of https://github.com/apache/lucene.git
SOLR-3042: Fixed Maven Jetty plugin configuration.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1232527 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
88dee37bb0
commit
961cc111a8
|
@ -87,22 +87,21 @@
|
|||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<!-- http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin -->
|
||||
<groupId>org.mortbay.jetty</groupId>
|
||||
<artifactId>maven-jetty-plugin</artifactId>
|
||||
<configuration>
|
||||
<scanIntervalSeconds>10</scanIntervalSeconds>
|
||||
<connectors>
|
||||
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
||||
<port>8080</port>
|
||||
<maxIdleTime>60000</maxIdleTime>
|
||||
</connector>
|
||||
</connectors>
|
||||
<webAppConfig>
|
||||
<contextPath>/</contextPath>
|
||||
<baseResource implementation="org.mortbay.resource.ResourceCollection">
|
||||
<resources>web</resources>
|
||||
</baseResource>
|
||||
<contextPath>/solr</contextPath>
|
||||
</webAppConfig>
|
||||
<webAppSourceDirectory>web</webAppSourceDirectory>
|
||||
<systemProperties>
|
||||
<systemProperty>
|
||||
<name>solr.solr.home</name>
|
||||
<value>../example/solr</value>
|
||||
</systemProperty>
|
||||
</systemProperties>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -480,6 +480,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-2542: Fixed DIH Context variables which were broken for all scopes other
|
||||
then SCOPE_ENTITY (Linbin Chen & Frank Wesemann via hossman)
|
||||
|
||||
* SOLR-3042: Fixed Maven Jetty plugin configuration.
|
||||
(David Smiley via Steve Rowe)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
|
Loading…
Reference in New Issue