git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1555 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-04-23 15:56:54 +00:00
parent ae344afe78
commit a7fdbde808
4 changed files with 17 additions and 5 deletions

View File

@ -14,6 +14,19 @@
</properties> </properties>
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix.bundle.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<!-- <!--
Required for OSGI Required for OSGI

View File

@ -125,7 +125,7 @@ public abstract class AbstractProxyHandlerTest extends TestCase
protected Socket newSocket() throws IOException protected Socket newSocket() throws IOException
{ {
Socket socket = new Socket("localhost", proxyConnector.getLocalPort()); Socket socket = new Socket("localhost", proxyConnector.getLocalPort());
socket.setSoTimeout(500000); socket.setSoTimeout(5000);
return socket; return socket;
} }

View File

@ -663,9 +663,8 @@ public class WebAppContext extends ServletContextHandler
return; return;
//if the configuration classnames have been set explicitly use them //if the configuration classnames have been set explicitly use them
if (!_configurationClassesSet){ if (!_configurationClassesSet)
System.err.println("DEFAULTS"); _configurationClasses=__dftConfigurationClasses;
_configurationClasses=__dftConfigurationClasses;}
_configurations = new Configuration[_configurationClasses.length]; _configurations = new Configuration[_configurationClasses.length];
for (int i = 0; i < _configurationClasses.length; i++) for (int i = 0; i < _configurationClasses.length; i++)

View File

@ -32,7 +32,7 @@
<dependency> <dependency>
<groupId>org.mortbay.jetty</groupId> <groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId> <artifactId>jetty</artifactId>
<version>6.1.15</version> <version>6.1.24</version>
<type>jar</type> <type>jar</type>
<scope>test</scope> <scope>test</scope>
<exclusions> <exclusions>