adobe / aem-core-wcm-components

Standardized components to build websites with AEM.
https://docs.adobe.com/content/help/en/experience-manager-core-components/using/introduction.html
Apache License 2.0
730 stars 736 forks source link

Update README.md #27

Closed herbertkaltenbrunner closed 7 years ago

herbertkaltenbrunner commented 7 years ago

Hi, first of all: Thanks for providing the aem core wcm components! The other thing (as mentioned in the title):

<dependency>
    <groupId>com.adobe.cq</groupId>
    <artifactId>core.wcm.components.all</artifactId>
    <type>zip</type>
    <version>1.0.2</version>
    <scope>provided</scope>
</dependency>

and

<subPackage>
    <groupId>${project.groupId}</groupId>
    <artifactId>core.wcm.components.config</artifactId>
    <filter>true</filter>
</subPackage>

are not working when included in the pom.xml. What worked for me was:

<dependency>
    <groupId>com.adobe.cq</groupId>
    <artifactId>core.wcm.components.all</artifactId>
    <type>zip</type>
    <version>1.0.4</version
</dependency>

and

<subPackage>
    <groupId>com.adobe.cq</groupId>
    <artifactId>core.wcm.components.all</artifactId>
    <filter>true</filter>
</subPackage>

Please continue with your work on this project and thanks in advance!

bpauli commented 7 years ago

@herbertkaltenbrunner, Thanks for the hands up!