Hi I'm just installed
maven and by installing maven I mean put the maven_home variable in my system variables path, and then check with maven --version in my CMD (I'm using windows). I currently working in am android project using Eclipse
IDE, i wanted to install the maven for android plugin (m2e) in eclipse but it give me a error this one
. So i came up with the idea since I already have maven installed in my computer I wanted to know if it is possible to create I don't know if this posible but to create a file.txt or whatever extension and in this file put this dependency
<dependency>
<groupId>com.nostra13.universalimageloader</groupId>
<artifactId>universal-image-loader</artifactId>
<version>1.9.4</version>
</dependency>
in that file and then in the windows cmd put some maven commands in the cmd pointing to the file that I created and then other commands that allow me to generate the jars from that dependency in a external folder in my pc and then i manually copy those jars in eclipse. Is this posible??