-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
hi guys,
there is known package in aem - acs-aem-commons-content
dependencies {
cq_package group: 'com.adobe.acs', name: 'acs-aem-commons-content', version: '3.0.2', classifier: 'min', ext: 'zip'
}
It exists in two version and min version is defined with the classifier min. But its properties like group and name does not include classifier as AEM 6.x does not support it.
It would be nice to have something similar with maven plugin functionality that allows you to supply name and version of the dependent subpackage.
In maven they do the following way :
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<version>3.0.2</version>
<type>content-package</type>
<classifier>min</classifier>
</dependency>
</dependencies>
<subPackages>
<subPackage>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<filter>true</filter>
</subPackage>Br,
Yuri