We are using the maven Jetty plugin for development. i always used
<jetty.version>7.2.2.v20101205</jetty.version>
and
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>...</configuration>
</plugin>
Now i wanted to add an SSL connector and tried to add
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-ssl</artifactId>
<version>${jetty.version}</version>
</dependency>
This doesn't work, the dependency was not found. Now i see that jetty moved to eclipse. But i couldn't find any jetty-ssl dependency at eclipse repository. Now i am lost. It seems to me that everything is messed up. I have no clue where to search for my dependencies which i want to include in my POM.
So: Where is the "official" maven jetty repository for version 7.x?