Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.1.0-beta2
-
None
Description
I'm looking to extend the pluto library (and the portlet specification) to include some additional functionality required for our application. As part of this, I'll need to subclass the PortletServlet. I'd like to see the ability to specify the name of the class used by the maven-pluto-plugin when generating the modified web.xml file. For example:
<plugin>
<groupId>org.apache.pluto</groupId>
<artifactId>maven-pluto-plugin</artifactId>
<version>${pluto.version}</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<dispatchServletClass>org.apache.pluto.core.PortletServletDerived</dispatchServletClass>
</configuration>
</plugin>