我已經使用了maven archetype10,如下所示,並創建了項目結構,並且一切正常。如何在maven build中添加aem Uber jar依賴項
mvn archetype:generate -DarchetypeGroupId=com.adobe.granite.archetypes -DarchetypeArtifactId=aem-project-archetype -DarchetypeVersion=10 -DarchetypeRepository=https://repo.adobe.com/nexus/content/groups/public/
現在我想補充的AEM尤伯杯罐子依賴,並在項目的pom.xml分別在覈心模塊的pom.xml,也是我的倉庫標籤添加下面的依附關係卷標一樣https://repo.adobe.com/
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<version>6.2.0</version>
<scope>provided</scope>
</dependency>
添加上面的依賴項標記後,當我編譯它給我下面的錯誤。
[錯誤]未能就項目aemexample.core執行目標:無法 項目 com.krishh.example解決依賴關係:aemexample.core:包:0.1:無法轉移 神器com.adobe。 AEM:尤伯杯的jar:罐子:6.2.0自/至 土坯公開發布版 (http://repo.adobe.com/nexus/content/groups/public):主機名 證書不匹配:
<repo.adobe.com>
=<devedge.day.com>
或<devedge.day.com>
- > [求助1]
是有什麼缺少添加額外的依賴性來編譯和成功運行。
https://repo.adobe.com/nexus/content/groups/public/com/adobe/aem/uber-jar/在那裏。所以可能*證書中的主機名稱不匹配:*是故事。 – nullpointer
在我的本地實例中運行它,並指向通過使用'mvn clean install -PautoInstallPackage'部署到我的本地主機:4502 **作者實例 – krish