DPM is an open-source package/library manager for Delphi XE2 or later. It is heavily influenced by NuGet, so the cli, docs etc will seem very familiar to NuGet users. Delphi's development environment is quite different from .net, and has different challenges to overcome, so whilst we were influenced by NuGet, DPM is not identical to NuGet. We also took a close look at many other package managers for other development eco-systems.
A package manager provides a standard for developers to share and consume code. Authors create packages that other developers can consume. The package manager provides a simple way to automate the installation, upgrading or removal of packages. This streamlines the development process, allowing developers to get up and running on a project quickly, without needing to understand the (usually ad-hoc) way the project or organization has structured their third party libraries. This also translates into simpler build/CI processes, with less 'compiles on my machine' style issues.
DPM's initial developer is Vincent Parrett (DUnitX, FinalBuilder, Continua CI). Why is discussed in this blog post.
DPM is in BETA, so whilst most features should work, there may be bugs. We're using it in production to build FinalBuilder and Automise.
- Creating packages (library authors)
- Pushing packages to a package source (directory or server)
- Installing and Restoring packages, including dependencies and design time components.
- Multiple package sources
- Package Signing - both Author (using a code signing certificate) and Repository signing (automatic).
- Repository and Author Trust.
- SBOM generation.
- CLI and IDE plugin clients.
See getting started.
The command line documentation can be found here.
Yes, the installer available under the releases section includes IDE plugins for XE2-13.0
Yes, you can find it here - you only need to signup if you intend to publish packages.
Delphi XE2-13.1 are currently supported.
All target platforms for supported compiler versions are supported.
Whilst we would like to support C++Builder, we would need some help - we're delphi people. see here
YES.
See this page
Yep, see Contributing to DPM.