I am working on a maven based Android project. I need to add all the jars files of the libs folder to the local maven repositories, because many banks are not available in the maven central repositories. For this, I will use the following commands. But my question is how to get the group identifier, artifact identifier from any external bank.
Suppose I have picasso.jar, in which case I don't know the version either.
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging> -DgeneratePom=true Where:<path-to-file> the path to the file to load <group-id> the group that the file should be registered under <artifact-id> the artifact name for the file <version> the version of the file <packaging> the packaging of the file eg jar
Please help me.
Thanks at Advance
source share