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&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?