What Does "Vendoring" Mean in Go?
During discussions on Go's dependency management, the term "vendor" is frequently employed as a verb. For instance, "The dependencies that your application vendors..."
Meaning of Vendor Dependency
In this context, vendor dependency refers to the practice of incorporating your own copy of third-party packages used by your project. These copies are typically placed and stored within the individual project and its repository.
Examples
Relation to Ruby Vendoring
The provided context does not establish a connection between Go vendoring and vendoring in Ruby.
Vendor Experiment and Conventional Definition
The Go 1.5 Vendor Experiment provides a formal definition for vendoring in Go. However, the term may have additional conventional meanings or interpretations within the community.
The above is the detailed content of What is Vendoring in Go Dependency Management?. For more information, please follow other related articles on the PHP Chinese website!