I have a Maven Project in Eclipse (Oxygen) and I can successfully run its code inside Eclipse. The project's source code also resides in a Git repository.
I would now like to deploy the project on another host (without Eclipse) with all its dependencies and run it there. I assume this is done by running a combination of git clone, mvn install, and java.
What are the exact steps I have to follow in a case like this?