Running Java Webservice out of eclipse with Maven

0

Hello, I have a webservice project that on my computer runs normally, using eclipse and tomcat. And now I want to transport this project to a server and that it runs only with Tomcat. There is also a question: Will the Tomcat and project pull the Maven pendants?

Note: Maven is configured on the server.

    
asked by anonymous 18.08.2017 / 20:15

1 answer

1

Yes, the .war (package generated by jdk) has all the artifacts referenced in maven, that is, it would only deploy this package to the server tomcat. You would not need maven on the server.

    
18.08.2017 / 21:24