https://github.com/thiagoesteves/rebar3_gerrit_deps
Rebar3 plugin for fetching dependencies from a gerrit + git repository.
https://github.com/thiagoesteves/rebar3_gerrit_deps
rebar3 rebar3-plugin
Last synced: 3 months ago
JSON representation
Rebar3 plugin for fetching dependencies from a gerrit + git repository.
- Host: GitHub
- URL: https://github.com/thiagoesteves/rebar3_gerrit_deps
- Owner: thiagoesteves
- License: apache-2.0
- Created: 2020-04-28T18:25:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-13T12:59:33.000Z (over 4 years ago)
- Last Synced: 2025-02-08T04:38:34.679Z (4 months ago)
- Topics: rebar3, rebar3-plugin
- Language: Erlang
- Homepage:
- Size: 14.6 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
rebar3_gerrit_deps
=====Rebar3 plugin for fetching dependencies from a gerrit + git repository.
How to Build
-----$ rebar3 compile
How to Use
---Add the plugin to your `rebar.config`:
{plugins, [
{rebar3_gerrit_deps, ".*",
{git, "git://github.com/thiagoesteves/rebar3_gerrit_deps.git", {branch, "master"}}}
]}.Configure the dependencies to your `rebar.config`:
```erlang
{deps, [
{my_repo , ".*", {gerrit, "ssh://gerrit/my_repo", {ref, "refs/changes/10/50000/1"}}}
..
]```