erlang - How to create a rebar repo? -
I want to create and deploy ARLing files which will be used as dependencies in any other project. Basically I am looking for a MVN deployment and a Sonipat repo. How can I set it up with Rebore?
To create dependency, which Riber can understand, you can specify a .app.src The file must be placed in a
src directory. Take a look - I have the file
src / estring.app.src with my actual source file. Any other project that requires estranging, I have some of this in my rebar.config:
{deps, [{estring, ".", {Git, "git: / /github.com /dweldon/estring.git "," HEAD "}}, ...
Comments
Post a Comment