Hello Team, I am having a multimodule maven project. I am getting the error, while installing the ui.content module(which has /etc/tags and acs-aem-commons defined as follows) with in the project.
Main pom.xml plugin.
<plugin>
<groupId>com.day.jcr.vault</groupId><artifactId>content-package-maven-plugin</artifactId><version>0.5.1</version><extensions>true</extensions><executions><execution><id>install-package</id><goals><goal>install</goal></goals></execution></executions><configuration><targetURL>${crx.host}:${crx.port}/crx/packmgr/service.jsp</targetURL><failOnError>true</failOnError><verbose>true</verbose><filterSource>${basedir}/src/main/content/META-INF/vault/filter.xml</filterSource><group>myproject</group></configuration></plugin>
Maven module ui.content pom.xml
<plugin><groupId>com.day.jcr.vault</groupId><artifactId>content-package-maven-plugin</artifactId><configuration><subPackages><subPackage><groupId>com.adobe.acs</groupId><artifactId>acs-aem-commons-content</artifactId><filter>true</filter></subPackage></subPackages></configuration></plugin><plugin><groupId>com.day.jcr.vault</groupId><artifactId>content-package-maven-plugin</artifactId><configuration><targetURL>${crx.host}:${crx.port}/crx/packmgr/service.jsp</targetURL><userId>${crx.username}</userId><password>${crx.password}</password></configuration></plugin>
Error Message:[ERROR] Missing response status information in response: <?xml version="1.0" encoding="UTF-8"?> <html> <head> <title>Content modified /crx/packmgr/service.jsp</title> </head> <body> <h1>Content modified /crx/packmgr/service.jsp</h1> <table> <tbody> <tr> <td>Status</td> <td> <div id="Status">200</div> </td> </tr> <tr> <td>Message</td> <td> <div id="Message">OK</div> </td> </tr> <tr> <td>Location</td> <td> <a href="https://forums.adobe.com/crx/packmgr/service.jsp" id="Location">/crx/packmgr/service.jsp</a> </td> </tr> <tr> <td>Parent Location</td> <td> <a href="https://forums.adobe.com/crx/packmgr" id="ParentLocation">/crx/packmgr</a> </td> </tr> <tr> <td>Path</td> <td> <div id="Path">/crx/packmgr/service.jsp</div> </td> </tr> <tr> <td>Referer</td> <td> <div id="Referer">about:blank</div> </td> </tr> <tr> <td>ChangeLog</td> <td> <div id="ChangeLog"><pre>modified("/crx/packmgr/service.jsp/file/jcr:lastModified");<br/>modified("/crx/packmgr/service.jsp/file/jcr:mimeType");<br/>modified("/crx/packmgr/service.jsp/file/jcr:data");<br/>modified("/crx/packmgr/service.jsp/install");<br/></pre></div> </td> </tr> </tbody> </table> <p> <a href="https://forums.adobe.com/crx/packmgr/service.jsp">Modified Resource</a> </p> <p> <a href="https://forums.adobe.com/crx/packmgr">Parent of Modified Resource</a> </p> </body> </html>
Any suggestions/pointers to solve the problem would be appreciated.
Thanks.