Skip to content

handling package classifier  #22

@ykotik

Description

@ykotik

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions