HTTP package deployment AEM 6.5 failing | Community
Skip to main content
ashishkhadpe
Level 3
December 4, 2020
Solved

HTTP package deployment AEM 6.5 failing

  • December 4, 2020
  • 1 reply
  • 849 views

Hi All,

 

 We have just now upgraded our project to AEM 6.5. While we were on AEM 6.2 we use to make deployment using below HTTP maven command : 

<execution>
<id>install</id>
<goals>
<goal>http</goal>
</goals>
<phase>${maven.phase}</phase>
<configuration>
<username>${target.username}</username>
<password>${target.password}</password>
<uri>http://${target.host}/crx/packmgr/service.jsp?cmd=inst&amp;name=${artifact.name}</uri>
</configuration>
</execution>

 But it seems AEM 6.5 does not support this commands now. Any quick alternative we can use to fix this?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Sandeep6

Hi @ashishkhadpe ,

Could you please try with below command.

mvn -PautoInstallSinglePackage clean install

Thanks,

Sandeep.

1 reply

Sandeep6Accepted solution
Level 4
December 4, 2020

Hi @ashishkhadpe ,

Could you please try with below command.

mvn -PautoInstallSinglePackage clean install

Thanks,

Sandeep.