Drools123
Drools123

Reputation: 55

Relation between Jenkins and Nexus

Can someone please let me know what is the relation between Jenkins and Nexus. I'm new to this area so pardon me if this is a stupid question.

Upvotes: 1

Views: 2851

Answers (1)

tiblu
tiblu

Reputation: 3078

Jenkins - a continuous integration (CI) platform.

Nexus - a repository manager.

You also tagged Maven so I guess in short Jenkins triggers Maven, Maven builds your packages, while doing it downloads dependencies from Nexus and also uploads artifacts back to Nexus.

Take Nexus as package repository to distribute your artifacts and Jenkins just as a build machine to build the artifacts.

Upvotes: 7

Related Questions