My Maven project was using jetty-maven-plugin version 7 and I used to add the directory to Jetty's classpath by specifying "extraClasspath" parameter in "webAppConfig", like here:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.0.1.v20091125</version>
<configuration>
<webAppConfig>
<contextPath>/</contextPath>
<extraClasspath>${basedir}/src/profiles/jetty</extraClasspath>
</webAppConfig>
<useTestClasspath>true</useTestClasspath>
</configuration>
</plugin>
Today I decided to update to the recent version of jetty-maven-plugin and I found that there is no "extraClasspath" parameter anymore.
How could I add the directory to the classpath with last version of jetty-maven-plugin?