• Take advantage of using Maven to deploy packages (app, content, config...) to the AEM instance author.
mvn -PautoInstallPackage -Padobe-public clean install
mvn -PautoInstallPackage -Padobe-public -DskipTests clean install
• About publish instance:
mvn -PautoInstallPackagePublish clean install
• Further information, build and deploy packages (content packages) and bundles (Java code) to AEM author and publish instances, making the development and deployment process more efficient.
/** Package build */
mvn clean install -PautoInstallPackage -PautoInstallPackagePublish
/** Bundle build */
mvn clean install -PautoInstallBundle -PautoInstallBundlePublish