I need to use this library dynamodb-geo but i can't find it in maven repository. During developing on local machine I added this library to local maven repository as 3rd party JARs
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> \
-DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
and
<dependency>
...
</dependency>
Now I need to deploy it project in remote server. How I can create remote maven repository with this geo library?
P.S. Maybe you know dependency where this library included?