You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ad...@apache.org on 2019/11/12 05:45:10 UTC

[roller] branch roller-6.0.x updated: Improved: Replaced pom.basedir deprecated property with project.basedir.

This is an automated email from the ASF dual-hosted git repository.

adityasharma pushed a commit to branch roller-6.0.x
in repository https://gitbox.apache.org/repos/asf/roller.git


The following commit(s) were added to refs/heads/roller-6.0.x by this push:
     new 5956f26  Improved: Replaced pom.basedir deprecated property with project.basedir.
     new 50a3717  Merge pull request #48 from isdixit/roller-6.0.x
5956f26 is described below

commit 5956f26923116edd30bd1faf43c24a912a52d49b
Author: Saurabh Dixit <sa...@hotwaxsystems.com>
AuthorDate: Thu Nov 7 11:07:00 2019 +0530

    Improved: Replaced pom.basedir deprecated property with project.basedir.
    
    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.
---
 app/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/pom.xml b/app/pom.xml
index 1d6cd03..aaf3fb8 100644
--- a/app/pom.xml
+++ b/app/pom.xml
@@ -575,7 +575,7 @@ limitations under the License.
                             <port>4224</port>
                             <sources>
                                 <script>
-                                    <sourceFile>${pom.basedir}/target/dbscripts/derby/createdb.sql</sourceFile>
+                                    <sourceFile>${project.basedir}/target/dbscripts/derby/createdb.sql</sourceFile>
                                 </script>
                             </sources>
                         </configuration>