org.apache.http.impl.nio.client -- Cannot be resolved
I am building a new AEM application , aem 6.3 SP1, maven archetype 12.
When I build core bundle , bundle is in INSTALLED status and when I expand the bundle, it says
org.apache.http.impl.nio.client -- Cannot be resolved
Any ideas ??
I have following dependencies in my parent pom, core bundle pom
| <dependency> | |
| <groupId>org.apache.httpcomponents</groupId> | |
| <artifactId>httpcore-nio</artifactId> | |
| <version>4.4.4</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.httpcomponents</groupId> | |
| <artifactId>httpasyncclient</artifactId> | |
| <version>4.1</version> | |
| <scope>provided</scope> | |
| </dependency> |
