Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've the following plugin in my pom.xml.

When I run mvn jetty:run-war -DskipTests the plugin hangs at

2012-05-27 08:27:50.197:INFO::No Transaction manager found - if your webapp requires one, please configure one.

I cannot even do a Ctrl-C to close the plugin after this.

I'm trying to use the AsyncServlets support in Servlets 3.0 in Jetty.

Thanks.

 <plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>8.0.0.M3</version>

    <configuration>
        <scanIntervalSeconds>10</scanIntervalSeconds>
        <webAppConfig>
        <contextPath>/emontage</contextPath>
        </webAppConfig>

        <configuration>
            <webApp>${basedir}/target/emontageserver-0.0.1-SNAPSHOT.war</webApp>
        </configuration>

        <connectors>
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
                <port>8080</port>
                <maxIdleTime>60000</maxIdleTime>
            </connector>
        </connectors>
    </configuration>
</plugin>

and my dependencies and Jetty version are:

<jettyVersion>8.1.3.v20120416</jettyVersion>

<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-server</artifactId>
    <version>${jettyVersion}</version>
</dependency>


<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-servlet</artifactId>
    <version>${jettyVersion}</version>
</dependency>


<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-servlets</artifactId>
    <version>${jettyVersion}</version>
</dependency>

<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-webapp</artifactId>
    <version>${jettyVersion}</version>
</dependency>

<dependency>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-http</artifactId>
    <version>${jettyVersion}</version>
</dependency>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.