I am trying to setup a maven project and added following dependencies
<dependency>
<groupId>com.adobe.granite.bundles</groupId>
<artifactId>json</artifactId>
<version>20090211_1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.day.cq.wcm</groupId>
<artifactId>cq-wcm-foundation</artifactId>
<version>5.6.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>cq-social-commons</artifactId>
<version>1.4.172</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>cq-social-blog</artifactId>
<version>1.1.8</version>
<scope>provided</scope>
</dependency>
On running maven clean install i am getting the following error.
[ERROR] Failed to execute goal on project falcon-utils: Could not resolve dependencies for project com.test.wem:test-utils:bundle:0.1-SNAPSHOT: Failed to collect dependencies at com.adobe.cq.social:cq-social-commons:jar:1.4.172: Failed to read artifact descriptor for com.adobe.cq.social:cq-social-commons:jar:1.4.172: Failure to find com.adobe.cq.social:socialcommunities-parent:pom:1.1.34 in https://repo.adobe.com/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of adobe has elapsed or updates are forced -> [Help 1]
I do not think this to be proxy issue because this was working before. Kindly help me on this.
Thanks, Jai