Sabya
Sabya

Reputation: 1429

Maven Dependency for com.day.util

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

Answers (3)

Jiri Kremser
Jiri Kremser

Reputation: 12837

I use jarvana.com for this purpose and I find it very useful.

Upvotes: 0

Jin Kim
Jin Kim

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

Sabya
Sabya

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

Related Questions