https://github.com/ostinelli/rebar3_vendor
Rebar3 Vendor Plugin.
https://github.com/ostinelli/rebar3_vendor
erlang rebar3 vendor
Last synced: 13 days ago
JSON representation
Rebar3 Vendor Plugin.
- Host: GitHub
- URL: https://github.com/ostinelli/rebar3_vendor
- Owner: ostinelli
- License: mit
- Created: 2016-03-19T03:32:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-13T08:32:52.000Z (9 months ago)
- Last Synced: 2025-04-18T21:16:53.024Z (21 days ago)
- Topics: erlang, rebar3, vendor
- Language: Erlang
- Homepage:
- Size: 13.7 KB
- Stars: 14
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://hex.pm/packages/rebar3_vendor)
# Rebar3 Vendoring Plugin
Plugin for storing vendored dependencies and applying the vendored deps to your local project.
## Install
Add the plugin to your rebar config, which should be at `~/.config/rebar3/rebar.config`:```erlang
{plugins, [rebar3_vendor]}.
```## Usage
To store the fetched dependencies under `./deps/` for committing:```
$ rebar3 vendor store
```To take the vendored dependencies from `./deps/` and place them under the build directory in the appropriate place:
```
$ rebar3 vendor apply
```