adobe / aem-spa-project-archetype

Maven Archetype for creating new AEM SPA projects
Apache License 2.0
61 stars 32 forks source link

Core Components are not embedded as a subpackage #73

Closed godanny86 closed 4 years ago

godanny86 commented 5 years ago

It looks like ui.apps is expected to embed core.wcm.components.all but when deployed to AEM I don't see this subpackage embedded:

<!-- ui.apps/pom.xml -->
<subPackages>
                        <subPackage>
                            <groupId>com.adobe.cq</groupId>
                            <artifactId>core.wcm.components.all</artifactId>
                            <filter>true</filter>
                        </subPackage>
                    </subPackages>

image

Not sure if its easier to just move the core components subpackage to be added in all/pom.xml ?

Either way Core Components should be deployed as a subpackage.