Hello all,
I’m searching for the correct jar file for “com.adobe.granite.ui.tags.IncludeClientLibraryTag” class. But I could find the one for “com.day.cq.wcm.tags.IncludeClientLibraryTag” in cq-wcm-taglib-5.6.4.jar which is deprecated.
When I do JSP compilation for any page containing <cq:includeClientLib /> throws the following exception.
ERROR: Unable to load tag handler class "com.adobe.granite.ui.tags.IncludeClientLibraryTag" for tag "cq:includeClientLib" -> [Help 1]
Please help me.
Regards,
RR
Solved! Go to Solution.
vikramca06 is right.
To find the required dependency, in the web console click Main > Packages (http://localhost:4502/system/console/depfinder), then search for your class. In your case it returns
<dependency>
<groupId>com.adobe.granite</groupId>
<artifactId>com.adobe.granite.ui.commons</artifactId>
<version>5.5.76</version>
<scope>provided</scope>
</dependency>
hth,
scott
Views
Replies
Total Likes
Hi,
Please find here http://repo.adobe.com/nexus/content/groups/public/com/adobe/granite/com.adobe.granite.ui.commons/5.5...
Thanks.
Vikram
vikramca06 is right.
To find the required dependency, in the web console click Main > Packages (http://localhost:4502/system/console/depfinder), then search for your class. In your case it returns
<dependency>
<groupId>com.adobe.granite</groupId>
<artifactId>com.adobe.granite.ui.commons</artifactId>
<version>5.5.76</version>
<scope>provided</scope>
</dependency>
hth,
scott
Views
Replies
Total Likes