Hello,
I don't know if it helps. Here is the Jetty POM to get the jetty extension to work :
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="
http://maven.apache.org/POM/4.0.0" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.restlet.jse</groupId>
<artifactId>org.restlet.parent</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>org.restlet.ext.jetty</artifactId>
<name>Restlet extension: Jetty</name>
<description>Integration with Jetty.</description>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>7.0.0.v20091005</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ajp</artifactId>
<version>7.0.0.v20091005</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>7.0.0.v20091005</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>org.restlet</artifactId>
<version>${version}</version>
</dependency>
</dependencies>
</project>
Rémi