[Error] Maven Dependency on commerce api on AEM 6.1
I have some trouble on declaring the dependency of commerce api on AEM 6.1 as per my http://localhost:4502/system/console/depfinder the following maven dependency should be used:
<dependency> <groupId>com.adobe.cq.commerce</groupId> <artifactId>cq-commerce-core</artifactId> <version>5.13.12</version> <scope>provided</scope> </dependency>
but I get the following error : " Failure to find com.adobe.cq.commerce:cq-commerce-core:jar:5.13.12 in http://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"
I already declared the following maven dependency as per the Stackoverflow question but still getting the same error message:
<dependency> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.1.0</version> <scope>provided</scope> <classifier>obfuscated-apis</classifier> </dependency>