You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2019/11/07 05:54:00 UTC

[jira] [Work logged] (ROL-2158) Remove deprecated pom.* properties with projects.*

     [ https://issues.apache.org/jira/browse/ROL-2158?focusedWorklogId=339762&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-339762 ]

ASF GitHub Bot logged work on ROL-2158:
---------------------------------------

                Author: ASF GitHub Bot
            Created on: 07/Nov/19 05:53
            Start Date: 07/Nov/19 05:53
    Worklog Time Spent: 10m 
      Work Description: isdixit commented on pull request #47: Improved: Replaced pom.basedir deprecated property with project.basedir. (ROL-2158)
URL: https://github.com/apache/roller/pull/47
 
 
   NOTE:
   Deprecated features are those that have been retained temporarily for backward compatibility, but which will eventually be removed. In effect, deprecation announces a grace period to allow the smooth transition from the old features to the new ones. In that period, no use of the deprecated features should be added, and all existing uses should be gradually removed.
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 339762)
    Remaining Estimate: 0h
            Time Spent: 10m

> Remove deprecated pom.* properties with projects.*
> --------------------------------------------------
>
>                 Key: ROL-2158
>                 URL: https://issues.apache.org/jira/browse/ROL-2158
>             Project: Apache Roller
>          Issue Type: Bug
>    Affects Versions: 6.0.0
>            Reporter: Saurabh Dixit
>            Assignee: Saurabh Dixit
>            Priority: Minor
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Deprecated features are those that have been retained temporarily for backward compatibility, but which will eventually be removed. In effect, deprecation announces a grace period to allow the smooth transition from the old features to the new ones. In that period, no use of the deprecated features should be added, and all existing uses should be gradually removed.
> This rule raises an issue when {{${pom.*}}} properties are used in a pom.
> h2. Noncompliant Code Example
> {code:java}
> <build> <finalName>${pom.artifactId}-${pom.version}</finalName> <!-- Noncompliant -->{code}
> h2. Compliant Solution
> {code:java}
> <build> <finalName>${project.artifactId}-${project.version}</finalName>{code}
> or
> {code:java}
> <build> <finalName>${artifactId}-${version}</finalName>{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)