u6f6o
u6f6o

Reputation: 2190

Are there any artifactory repository naming/configuration conventions?

I am recently working on setting up Artifactory on my virtual server. Basically everything works fine but I did not find any conventions how to setup the repositories used by my projects.

Is there any recommendation/guide to either create an own repository for each (multi module) project (e.g. myProject-release-local) or alternatively to put them all to the same repository (e.g. libs-release-local)?

Thanks in advance

Upvotes: 2

Views: 1257

Answers (1)

Peter Niederwieser
Peter Niederwieser

Reputation: 123910

It depends on how much isolation you need/want. If you want to tightly control the dependencies of each build, separate repositories might work better. In any case, each build should only have to list a single repository in its build script. This can be achieved by aggregating physical repositories into virtual repositories.

Upvotes: 1

Related Questions