p.magalhaes
p.magalhaes

Reputation: 8374

Maven - How to organize projects/modules?

I am developing a Windows Service that uses TCP/IP to communicate with their clients.

So i create a project for the service using Maven. Now i need to create a client to comunicate with this service. Is it better to create another project or a module? Or create it inside the Windows Service project?

Upvotes: 0

Views: 257

Answers (1)

BK Batchelor
BK Batchelor

Reputation: 457

For development purposes it easier to create another module. First, its easy to view both client and server code in the IDE without having to close and open projects. Second, common code can be placed in another module, which makes easier to code and debug.

Upvotes: 3

Related Questions