Install Adobe I/O Events Add-On Module on AEM On-Premise
You have 2 main options to install the aio-aem-events
add-on module:
- you may do it manually using AEM package manager.
- you may automate it with
maven
Using AEM Package Manager
-
Open AEM Package Manager by selecting the Tools icon and then selecting Deployment and Packages.
-
In Package Manager, select Upload Package. Select Browse and navigate to the package zip file. Select OK.
Note: If you have an older version of the package, uninstall it and remove it to avoid potential conflicts.**.
-
Select Install.
-
On the Install Package dialog box, select Merge from the Access Control Handling drop-down list and select Install.
-
Watch the Activity Log. If installed, the log reports that the package is imported.
For more information read the AEM package manager guide
Using maven
Using maven
, you may deploy aio-aem-events
as an embedded package within your own AEM project.
-
add
aio-aem-events
in yourmaven
builddependencies
section<dependency> <groupId>com.adobe.aio.aem</groupId> <artifactId>aio-aem-events</artifactId> <version>${aio-aem-events.version}</version> <classifier>aem65</classifier> <type>zip</type> </dependency>
-
add
aio-aem-events
in yourmaven
buildfilevault-package-maven-plugin
embedded
configuration
section:<embedded> <groupId>com.adobe.aio.aem</groupId> <artifactId>aio-aem-events</artifactId> <type>zip</type> <target>/apps/mysite-packages/application/install</target> </embedded>
For more details on embedding 3rd-party within our AEM project read AEM project structure guide.
If you are looking for a working sample browse aio-aem-events-sample