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 "Neil Griffin (JIRA)" <ji...@apache.org> on 2019/04/10 22:27:00 UTC

[jira] [Comment Edited] (PLUTO-774) Freeze the portlet-api dependency version at 3.0.1

    [ https://issues.apache.org/jira/browse/PLUTO-774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16813949#comment-16813949 ] 

Neil Griffin edited comment on PLUTO-774 at 4/10/19 10:26 PM:
--------------------------------------------------------------

Fixed in commits [5df8df4f2481caadc734d05bbae33efb446fdbad|https://github.com/apache/portals-pluto/commit/5df8df4f2481caadc734d05bbae33efb446fdbad] and [0ea013026e9189ddf26d6c4db28743b016418194|https://github.com/apache/portals-pluto/commit/0ea013026e9189ddf26d6c4db28743b016418194].


was (Author: ngriffin7a):
Fixed in commit [5df8df4f2481caadc734d05bbae33efb446fdbad|https://github.com/apache/portals-pluto/commit/5df8df4f2481caadc734d05bbae33efb446fdbad]

> Freeze the portlet-api dependency version at 3.0.1
> --------------------------------------------------
>
>                 Key: PLUTO-774
>                 URL: https://issues.apache.org/jira/browse/PLUTO-774
>             Project: Pluto
>          Issue Type: Task
>          Components: portal driver, portlet container
>            Reporter: Neil Griffin
>            Assignee: Neil Griffin
>            Priority: Major
>             Fix For: 3.1.0
>
>
> Currently the {{<dependencyManagement>}} section of the parent-most pom.xml descriptor looks like the following:
> {code:xml|title=pom.xml}
> <dependency>
>    <groupId>javax.portlet</groupId>
>    <artifactId>portlet-api</artifactId>
>    <version>${project.version}</version>
>    <scope>provided</scope>
> </dependency>
> {code}
> The {{$\{project.version\}}} expression implies that the latest snapshot version of the portlet-api artifact will be used as a compile-time dependency throughout the entire project, and also that it will be released every time there is a release of the Pluto reference implementation. Unless a defect is found, the portlet-api dependency does not need to be released until the next version of the Portlet Specification is released, presumably version 3.1.0.
> Therefore the dependency version should be set to the following, which reflects the latest released version of the portlet-api artifact at the time of this writing:
> {code:xml|title=pom.xml}
> <dependency>
>    <groupId>javax.portlet</groupId>
>    <artifactId>portlet-api</artifactId>
>    <version>3.0.1</version>
>    <scope>provided</scope>
> </dependency>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)