Skip to main content
Skip table of contents

Installation as dependencies of an Adobe Experience Manager project

You can define the different packages and bundles of the ACCALLI/O CA as part of your AEM project using Apache Maven.

 Please check out following instruction regarding the usage of the Maven Plaugin FilevVault plugin.

https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/vlt-mavenplugin.html


To include content packages into your project, please use the configuration element "subPackages" of Maven Plaugin FilevVault plugin.


To include OSGI bundles into your project, please use the configuration element "embeddeds" of Maven Plaugin FilevVault plugin.

ACCALLI/O CA Releases

ACCALLI/O CA packages are available through the following

https://nexus.antegma.com/content/repositories/accallio-release/

Use the following profile in your maven ~/.m2/settings.xml:


CODE
<profile>
	<id>accallio-releases</id>
	<activation>
		<activeByDefault>false</activeByDefault>
	</activation>

	<properties>
		<releaseRepository-Id>accallio-releases</releaseRepository-Id>
		<releaseRepository-Name>accallio Releases</releaseRepository-Name>
		<releaseRepository-URL>https://nexus.antegma.com/content/repositories/accallio-release</releaseRepository-URL>
	</properties>

	<repositories>
		<repository>
			<id>accallio-releases</id>
			<name>accallio Releases Repository</name>
			<url>https://nexus.antegma.com/content/repositories/accallio-release</url>
			<releases>
				<enabled>true</enabled>
				<updatePolicy>never</updatePolicy>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
	</repositories>
</profile>

Former IMPRISIS CA Releases

Former IMPRISIS CA packages are available through the following

https://nexus.antegma.com/content/repositories/imprisis-release/

Use the following profile in your maven ~/.m2/settings.xml:

CODE
<profile>
	<id>imprisis-releases</id>
	<activation>
		<activeByDefault>false</activeByDefault>
	</activation>

	<properties>
		<releaseRepository-Id>imprisis-releases</releaseRepository-Id>
		<releaseRepository-Name>IMPRISIS Releases</releaseRepository-Name>
		<releaseRepository-URL>https://nexus.antegma.com/content/repositories/imprisis-release</releaseRepository-URL>
	</properties>

	<repositories>
		<repository>
			<id>imprisis-releases</id>
			<name>IMPRISIS Releases Repository</name>
			<url>https://nexus.antegma.com/content/repositories/imprisis-release</url>
			<releases>
				<enabled>true</enabled>
				<updatePolicy>never</updatePolicy>
			</releases>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
		</repository>
	</repositories>
</profile>



JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.