I am getting the below error because of that, OSGi bundle is not starting.
org.jsoup,version=[1.13,2) -- Cannot be resolved
org.jsoup.nodes,version=[1.13,2) -- Cannot be resolved
org.jsoup.select,version=[1.13,2) -- Cannot be resolved
Solved! Go to Solution.
Views
Replies
Total Likes
You check below sample pom to understand how to deploy external bundle to AEM
Please refer to below URL. It will work
Hi @hello299 ,
You have to embed jsoup library in your project using dependency in parent pom.xml
<dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.15.1</version> </dependency>
core pom.xml
<dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </dependency>
Note: Following the above steps and deploying project you will face issue as below
in that case make sure to add jsoup jar to AEM: for more details please check here: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/jsoup-jar-does-not-install...
Hope that helps you!
Regards,
Santosh
You check below sample pom to understand how to deploy external bundle to AEM