Reputation: 1429
I have been using Adobe CQ5.5 and need to use a class in com.day.util . I am not getting any maven dependency for this util . And as a result , class using this package fails to compile .
After exhausted googling , I am posting this question..Has anybody used this package before and got similar kind of issues ?
Thanks in advance .
Upvotes: 0
Views: 293
Reputation: 12837
I use jarvana.com for this purpose and I find it very useful.
Upvotes: 0
Reputation: 17732
This artifact is not part of the standard Maven repository.
A quick google search reveals that it is found in Adobe's Maven repository.
You will have to modify your project's pom.xml to include Adobe's Maven repository under section < repositories >.
Upvotes: 1
Reputation: 1429
Following is the dependency for com.day.util
<dependency>
<groupId>com.day.commons</groupId>
<artifactId>day-commons-misc</artifactId>
<version>1.1.2</version>
<scope>provided</scope>
</dependency>
Upvotes: 1