[ http://jira.codehaus.org/browse/MEV-136?page=comments#action_51539 ]
Wendy Smoak commented on MEV-136: --------------------------------- http://marc.theaimsgroup.com/?l=myfaces-dev&m=113259460719576&w=2 " The portlet jar is only required for compiling. If you are running a MyFaces portlet application then the portlet API will be provided by the portlet container. " -- Stan Silvert (MyFaces committer) And from an earlier discussion when I was working on the Commons Chain pom... http://www.nabble.com/Re%3A-chain-dependencies-p1507516.html " It *can* work that way. However, the portlet API is not a required part of the J2EE (now Java EE) platform, so you cannot be guaranteed that it will be in your average servlet container. For example, the portlet API jar is not shipped with Tomcat by default. " -- Craig McClanahan That's why I went with 'optional,' but I wouldn't argue with 'provided' either. Thanks for your help! > MyFaces requires commons-digester and commons-el > ------------------------------------------------ > > Key: MEV-136 > URL: http://jira.codehaus.org/browse/MEV-136 > Project: Maven Evangelism > Type: Bug > Components: Invalid POM > Reporter: Matt Raible > Assignee: Edwin Punzalan > > > Here's a revised version: > <project> > <modelVersion>4.0.0</modelVersion> > <groupId>myfaces</groupId> > <artifactId>myfaces-all</artifactId> > <version>1.1.0</version> > <dependencies> > <dependency> > <groupId>commons-digester</groupId> > <artifactId>commons-digester</artifactId> > <version>1.5</version> > </dependency> > <dependency> > <groupId>commons-el</groupId> > <artifactId>commons-el</artifactId> > <version>1.0</version> > </dependency> > </dependencies> > </project> -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
