Installing Own Jar Library For Maven Dependency
this may be the stupid question, but I haven't found the answer here : https://github.com/mosabua/maven-android-sdk-deployer (maybe I am blind). I want to use this tool to install
Solution 1:
If I understand the question exactly you do not need the maven-android-sdk-deployer. if the issue is that you need to install the library so that you can use it you may add it to your local maven repo using something like this
mvn install:install-file -Dfile=./android-support-v4.jar -DgroupId=com.google.android -DartifactId=support-v4 -Dversion=r12 -Dpackaging=jar
from the dir where the jar is
this is what I used for android-support-v4, you need to tweak it with the proper groupId etc for the httpclientandroidlib-1.1.2.jar
Post a Comment for "Installing Own Jar Library For Maven Dependency"