문제

I have 2 maven projects ('A' and 'B'). Both have a gwt module. The gwt modul of the 'A' project inherits the gwt modul of the 'B' project. Everything works fine.

I use Eclipse and i have a launch configuration for the Dev mode. I set the parameters of the 'A' module in the launch config and start it. It works. If i change the code then i see the changes in the browser window. I mentioned that the A module inherits the B module, but if i change the code in the B module, this change won't appear in the browser (because the dev mode configured to A module). How can i configure the dev mode to see the changes of both modules in the browser?

도움이 되었습니까?

해결책

You have to add the project B to the project A's Java Build Path as shown below.

Right Click on Project A's Properties -> Java Build Path -> Projects Tab -> Add.. Project B

enter image description here

Please have a look at below post for step by step description.

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