Currently we use FTP to maintain build artifact distribution and 3rd party products (for internal use only).
Artifacts are docs (HTML/pdf/chm/...), libs (.dll/.so/.a/.jar/...), progs (.exe/.jar/...), anything else. Does not restricted only by Java/.NET and can come from different cultures (firmware, driver, mobile/workstation, GUI, Win/Linux/Mac/Solaris/AIX,... etc).
To orginize hierarhy we use such paths:
ftp://3pp/VENDOR/PRODUCT/VERSION/... ftp://3pp/opensource/PACKAGE-x.x.x.tar.bz2 ftp://dist/PRODUCT/VERSION/...
To maintain description of artifacts we use README and CHANGES plain test files (reStructuredText).
What is missing in this schema?
- Missing permissions (anyone can damage storage).
- Missing dependency tracking (so every build file must be updated if version dependency changed).
- Missing fetching activity (some files seems no longer needed by we don't know which).
I am not deeply look for existen solutions (ever don't know from which start). L like something from package manager like rpm/dpkg, hear about Maven repo etc...
Please recommend Build Artifact Repository Manager. Also it is good to listen dravbacks and restrictions.