avatar
install package and bundle in AEM Author and Publish AEM

• 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
24
build AEM bundle and package skip unit tests written in java code during build build single package build and install single package on AEM instance
You need to login to do this manipulation!