Should we use Nexus or Artifactory for a Maven Repo?

后端 未结 12 1570
悲&欢浪女
悲&欢浪女 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:06

    I made some research recenly about Artifactory 2 and Nexus 1.3. I'll list here the main differences I found:

    • Artifactory stores metadata and optionally files in DB, Nexus writes directly to file system. There are pros. and cons. for each approach. DB supports transactions, while in FS stored files can be accessed directly.
    • Artifactory has higher system requirements especially for disk space.
    • Artifactory has LDAP support, while Nexus has it only in paid version. On the other hand free LDAP plugin for Nexus is available on Google code.

    The most complete comparison: http://binary-repositories-comparison.github.io/

提交回复
热议问题