我从here克隆了项目。我在eclipse中导入maven项目并尝试使用 mvn clean install -DskipTests 构建它。 在系统控制台中部署 com.day.cq.commons-无法解决错误后。为此,我检查了depfinder,已经存在以下依赖项。
请帮帮我。我是AEM的新人。
谢谢。
答案 0 :(得分:0)
我在pom.xml
中的maven-bundle-plugin中导入以下包后解决了上述问题<Import-Package>com.day.cq.commons;version=5.7.6;</Import-Package>
所以,整个故事将如下所示:
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.0</version>
<extensions>true</extensions>
<inherited>true</inherited>
<configuration>
<obrRepository>NONE</obrRepository>
<instructions>
<Bundle-Category>social</Bundle-Category>
<Bundle-DocURL>
http://www.adobe.com
</Bundle-DocURL>
<Bundle-Vendor>Adobe Systems Inc.</Bundle-Vendor>
<Import-Package>com.day.cq.commons;version=5.7.6;</Import-Package>
</instructions>
</configuration>