You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-dev@portals.apache.org by "David Hay (JIRA)" <ji...@apache.org> on 2006/11/03 21:10:16 UTC

[jira] Created: (PLUTO-268) Ability to configure portlet dispatch servlet in maven-pluto-plugin

Ability to configure portlet dispatch servlet in maven-pluto-plugin
-------------------------------------------------------------------

                 Key: PLUTO-268
                 URL: http://issues.apache.org/jira/browse/PLUTO-268
             Project: Pluto
          Issue Type: New Feature
          Components: maven pluto plugin
    Affects Versions: 1.1.0-beta2
            Reporter: David Hay


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>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (PLUTO-268) Ability to configure portlet dispatch servlet in maven-pluto-plugin

Posted by "David DeWolf (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/PLUTO-268?page=all ]

David DeWolf reassigned PLUTO-268:
----------------------------------

    Assignee: David DeWolf

> Ability to configure portlet dispatch servlet in maven-pluto-plugin
> -------------------------------------------------------------------
>
>                 Key: PLUTO-268
>                 URL: http://issues.apache.org/jira/browse/PLUTO-268
>             Project: Pluto
>          Issue Type: New Feature
>          Components: maven pluto plugin
>    Affects Versions: 1.1.0-beta2
>            Reporter: David Hay
>         Assigned To: David DeWolf
>         Attachments: pluto-1.1.0-assembler.patch
>
>
> 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>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (PLUTO-268) Ability to configure portlet dispatch servlet in maven-pluto-plugin

Posted by "David DeWolf (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/PLUTO-268?page=all ]

David DeWolf resolved PLUTO-268.
--------------------------------

    Fix Version/s: 1.1.0
       Resolution: Fixed

Great patch! Thanks. Committed in 482851

> Ability to configure portlet dispatch servlet in maven-pluto-plugin
> -------------------------------------------------------------------
>
>                 Key: PLUTO-268
>                 URL: http://issues.apache.org/jira/browse/PLUTO-268
>             Project: Pluto
>          Issue Type: New Feature
>          Components: maven pluto plugin
>    Affects Versions: 1.1.0-beta2
>            Reporter: David Hay
>         Assigned To: David DeWolf
>             Fix For: 1.1.0
>
>         Attachments: pluto-1.1.0-assembler.patch
>
>
> 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>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (PLUTO-268) Ability to configure portlet dispatch servlet in maven-pluto-plugin

Posted by "David DeWolf (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/PLUTO-268?page=comments#action_12447068 ] 
            
David DeWolf commented on PLUTO-268:
------------------------------------

Nice! Thanks.  I'll take a look and apply it.

> Ability to configure portlet dispatch servlet in maven-pluto-plugin
> -------------------------------------------------------------------
>
>                 Key: PLUTO-268
>                 URL: http://issues.apache.org/jira/browse/PLUTO-268
>             Project: Pluto
>          Issue Type: New Feature
>          Components: maven pluto plugin
>    Affects Versions: 1.1.0-beta2
>            Reporter: David Hay
>         Attachments: pluto-1.1.0-assembler.patch
>
>
> 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>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (PLUTO-268) Ability to configure portlet dispatch servlet in maven-pluto-plugin

Posted by "David Hay (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/PLUTO-268?page=all ]

David Hay updated PLUTO-268:
----------------------------

    Attachment: pluto-1.1.0-assembler.patch

The attached patch file updates the AssemblerConfig, FileAssembler and AssemblerMojo to allow the dispatch servlet to be configured as described in the description.

> Ability to configure portlet dispatch servlet in maven-pluto-plugin
> -------------------------------------------------------------------
>
>                 Key: PLUTO-268
>                 URL: http://issues.apache.org/jira/browse/PLUTO-268
>             Project: Pluto
>          Issue Type: New Feature
>          Components: maven pluto plugin
>    Affects Versions: 1.1.0-beta2
>            Reporter: David Hay
>         Attachments: pluto-1.1.0-assembler.patch
>
>
> 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>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira