I have an aem project migrating to AEM 6.5.1 and made all uber, acs commons changes as needed for this.
ACS Commons bundle, content package not deployed.
Global POM:
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-bundle</artifactId>
<version>4.3.2</version>
<scope>provided</scope>
</dependency>
In UI.APPS pom:
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<filterSource>${basedir}/META-INF/vault/filter.xml</filterSource>
<verbose>true</verbose>
<failOnError>true</failOnError>
<group>test-site</group>
<timeout>30</timeout>
<embeddeds>
<embedded>
<groupId>com.test</groupId>
<artifactId>test-site.core</artifactId>
<target>/apps/test-site/install</target>
</embedded>
</embeddeds>
<subPackages>
<subPackage>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-content</artifactId>
<filter>true</filter>
</subPackage>
<subPackage>
<groupId>com.adobe.cq</groupId>
<artifactId>core.wcm.components.all</artifactId>
<filter>true</filter>
</subPackage>
</subPackages>
</configuration>
</plugin>
In UI.CONTENT POM:
<plugin>
<groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<group>test-site</group>
<filterSource>src/main/content/META-INF/vault/filter.xml</filterSource>
<verbose>true</verbose>
<failOnError>true</failOnError>
<embeddeds>
<embedded>
<groupId>com.test</groupId>
<artifactId>test-site.core</artifactId>
<target>/apps/test-site/install</target>
</embedded>
</embeddeds>
</configuration>
</plugin>
Thanks for any help.