vlr
vlr

Reputation: 790

Share jar of the module with another team

I am new to maven and trying to figure out how to share the jar file of the module with our another team. They are developing another module and their module depends on our module.

Will it be the best solution to setup 3rd party maven remote repository ? What will be the correct tools for this?

We use Hudson to manage our integration environment build. And I started looking into Artifactory and Artifactory plugin for Hudson. Is it correct approach?

Thanks.

Upvotes: 1

Views: 413

Answers (2)

Mark O'Connor
Mark O'Connor

Reputation: 77991

There are 3 main Maven repository managers to consider:

Personally, I would recommend Nexus.

A left field option to consider is the Jenkins Maven repository plugin. This enables the jar built by Jenkins to be published as a Maven module. (Hudson and Jenkins plugins should still be compatible)

Upvotes: 3

Olivier Lamy
Olivier Lamy

Reputation: 2310

Yes have a look at using a corporate repository manager to deploy your artifacts and share it with other teams. You have:

  • artifactory
  • nexus
  • apache archiva

Upvotes: 0

Related Questions