Dear All,
One of my requirement is that , I want to build proxy component for reusability in my AEM cloud SDK , as shown below.
How can I build using latest arch type to get below folder structure with below pom.xml
*********** pom.xml inside aem-mysite-core (It should be proxy of core component) ********
<groupId>com.sunita.mysite</groupId>
<artifactId>parent</artifactId>
<name>AEM Cloud SDK MySite Core parent POM</name>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
*********** brand1 pom.xml (It should be proxy of mysite) ********
<!-- Inheriting from parent pom mysite-->
<parent>
<groupId>com.sunita.mysite</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<!--brand1 -->
<groupId>com.adobe.aem.brand1</groupId>
<artifactId>brand1</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<description>Brand Site</description>
Please help me how can I achieve this?