この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
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
表示
いいね!
返信
表示
いいね!
返信