문제

I'm new to maven and I'm trying to create a new multi-module jersey web service following this tutorial. So now my project is composed of 3 maven modules:

* Model module
* Core module
* web service module

now, since I'm new to maven projects I don't know how to compile these modules and run my web service. What commands should I use when I update one of those 3 modules?

도움이 되었습니까?

해결책

Usually one would run mvn clean install in the parent project and then mvn jetty:run from the web-service module (assuming you're using the Jetty plugin).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top