Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handling package classifier #22

Open
ykotik opened this issue Jul 3, 2016 · 0 comments
Open

handling package classifier #22

ykotik opened this issue Jul 3, 2016 · 0 comments

Comments

@ykotik
Copy link

ykotik commented Jul 3, 2016

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants