${project.version} warning in ACM build | Community
Skip to main content
New Participant
April 1, 2022
Solved

${project.version} warning in ACM build

  • April 1, 2022
  • 2 replies
  • 2450 views

We are in AMS and using ACM builds to deploy the code in all environments, from the past few days we are getting following warnings in our build log -

 

I am getting following for every module -
18:56:25,926 [main] [WARNING] Some problems were encountered while building the effective model for com.XXX.XXX.XXX:XXXX.all:content-package:2022.03.31204623
18:56:25,926 [main] [WARNING] The expression ${version} is deprecated. Please use ${project.version} instead.
18:56:25,927 [main] [WARNING] The expression ${version} is deprecated. Please use ${project.version} instead.


below is our pom.xml structure in code repo, when I try to update with project,version I am getting error -

Parent pom

<groupId>xxx.xxx.xxx</groupId>
<artifactId>xxx-xxx</artifactId>
<packaging>pom</packaging>
<project.version>1.0-SNAPSHOT</project.version>
<description>xxx xxx</description>

Child ui.apps pom

<parent>
<groupId>xxx.xxx.xxx.xxx</groupId>
<artifactId>xxx-xxx</artifactId>
<project.version>1.0-SNAPSHOT</project.version> - error in this line( Element project.version not allowed here)
<relativePath>../pom.xml</relativePath>
</parent>


 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by joerghoh

You have references using the string "${version}" in your pom. Searching your complete maven repository for this string should show where it is used.

 

In the parent section you have to have the "version" tag (as shown here), otherwise the build will fail:

<parent>
<groupId>xxx.xxx.xxx.xxx</groupId>
<artifactId>xxx-xxx</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

 

2 replies

joerghoh
joerghohAccepted solution
Employee
April 3, 2022

You have references using the string "${version}" in your pom. Searching your complete maven repository for this string should show where it is used.

 

In the parent section you have to have the "version" tag (as shown here), otherwise the build will fail:

<parent>
<groupId>xxx.xxx.xxx.xxx</groupId>
<artifactId>xxx-xxx</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

 

Ravi_Pampana
New Participant
April 1, 2022

Hi,

 

Can you try matching groupId in for both parent and ui.apps pom.xml which might resolve the issue