Should we use Nexus or Artifactory for a Maven Repo?

后端 未结 12 1573
悲&欢浪女
悲&欢浪女 2020-12-07 07:28

We are using Maven for a large build process (> 100 modules). We have been storing our external dependencies in source control, and using that to update a local repo.

<
12条回答
  •  时光取名叫无心
    2020-12-07 08:17

    Artifactory stores the artifacts in a database, which means that if something goes wrong, all your artifacts are gone. Nexus uses a flat file for your precious artifacts so you don't have to worry about them all getting lost.

提交回复
热议问题