Memcache-asg-java-client-1.1.0.30 not resolved

Just downloaded datomic-pro-1.0.6316 and did the usual maven-install:

cd datomic-pro-1.0.6316
bin/maven-install

But when I add datomic-pro-1.0.6316 as a dependency in my project, it throws a ResolveException:

Error downloading com.datomic:memcache-asg-java-client:1.1.0.30

The jar is in datomic-pro-1.0.6316/lib and I could install it with

cd lib
mvn install:install-file -Dfile=memcache-asg-java-client-1.1.0.30.jar \
-DgroupId=com.datomic \
-DartifactId=memcache-asg-java-client \
-Dversion=1.1.0.30 \
-Dpackaging=jar \
-DcreateChecksum=true

And my project works fine now. But maybe you could help avoid this hassle by adding the memcache-asg-java-client lib to public repositories or have bin/maven-install install it?