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>