Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a maven project which depends on 2 other local project and a host of 3rd party jars. I want to move the jar file to another machine and run the application from there. I tried the mvn exec:exec command but it was not able to find the 2 local projects, which makes sense. How do I get this scenario to work. the machine on which the application will be installed have maven in it and is connected to the internet, so if required it can download the jars mentioned in the pom.

share|improve this question

1 Answer

up vote 2 down vote accepted

Use the Maven-assembly-plugin to make a jar-with-dependencies, which will result in the execution of mvn package creating a more readily deployable package.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.