I'm trying to run AEM 6.5 and this is what i am getting
com.day.cq.dam.commons.util,version=[1.50,2) -- Cannot be resolved
There is no content
Solved! Go to Solution.
Views
Replies
Total Likes
You can add the maven dependency in your pom.xml and build and install the code in AEM
<dependency>
<groupId>com.day.cq.dam</groupId>
<artifactId>cq-dam-commons</artifactId>
<version>5.6.6</version>
<scope>provided</scope>
</dependency>
check if the issue still persist.
You can add the maven dependency in your pom.xml and build and install the code in AEM
<dependency>
<groupId>com.day.cq.dam</groupId>
<artifactId>cq-dam-commons</artifactId>
<version>5.6.6</version>
<scope>provided</scope>
</dependency>
check if the issue still persist.
Uber jar for 6.5 should already have "com.day.cq.dam" embedded. I would recommend using uber-jar instead of adding manual dependencies. More details at [1]
I agree, but even using the dependecy returned by depfinder,
<dependency>
<artifactId>cq-dam-commons</artifactId>
<version>5.12.54</version>
<groupId>com.day.cq.dam</groupId>
<scope>provided</scope>
</dependency>
I am getting the same exception.
Could you please check the version of com.day.cq.dam coming from uber jar (check uber jar for 6.5).
And also check in your pom.xml files anywhere you might have added dependency for com.day.cq.dam the version for com.day.cq.dam should be same as uber jar.