I have added ACS Commons as subpackage in my project pom file. I would like to have possibility to skip installation of subpackage based on parameter, this is because I do not want to install ACS commons every time i install my project. For this I do not find possibility to add skip parameter
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<configuration>
<group>${package.group}</group>
<filters>
<filter>
<root>/etc/packages/adobe/consulting</root>
</filter>
</filters>
<subPackages>
<subPackage>
<groupId>com.adobe.cq</groupId>
<artifactId>core.wcm.components.all</artifactId>
<filter>false</filter>
<skip>true</skip> // something like this
</subPackage>
</subPackages>
</configuration>
</plugin>