I am new to Maven
and using it to build a project on my local. This is working nicely on my local. Now, I want to run the same project on my server and the server does not have Maven
installed. So I wanted to ask if there is any way by which, when I build a Maven
project on my local, I could include all the required jars in it and then simply transfer it to my server? I know Maven
creates the repository
in C:\Documents and Settings\username\.m2 on Windows
.
But how can I include all the jars
in project the way we do traditionally? I saw this question. But it talks about creating a custom repository and I don't have Maven installed at all. so I guess it is not a suitable solution to me.
Thanks.