Recently I bumped up version to 1.2.44
for android-api-model
and 1.2.11
for poynt-sdk
. After update I’m not able to build the application, as co.poynt.security:access-control-base:jar:1.2.12
has compile scope and I can’t get it from nexus.
I have repositories configured like this:
<repositories>
<repository>
<id>poynt-release</id>
<url>https://nexus.poynt.co/content/repositories/releases</url>
</repository>
<repository>
<id>poynt-snapshot</id>
<url>https://nexus.poynt.co/content/repositories/snapshots</url>
</repository>
and here are poynt dependencies in my pom file
<dependency>
<groupId>co.poynt.api</groupId>
<artifactId>android-api-model</artifactId>
<version>1.2.44</version>
</dependency>
<dependency>
<groupId>co.poynt.android.sdk</groupId>
<artifactId>poynt-sdk</artifactId>
<version>1.2.11</version>
<type>aar</type>
</dependency>
Any help would be appreciated.