Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scrogson/ejabberd_dev
A package to help with building ejabberd modules
https://github.com/scrogson/ejabberd_dev
Last synced: about 1 month ago
JSON representation
A package to help with building ejabberd modules
- Host: GitHub
- URL: https://github.com/scrogson/ejabberd_dev
- Owner: scrogson
- License: gpl-3.0
- Created: 2014-10-20T20:42:22.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-15T22:34:46.000Z (about 9 years ago)
- Last Synced: 2024-10-08T18:21:26.242Z (3 months ago)
- Language: Erlang
- Homepage:
- Size: 230 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ejabberd Dev
============ejabberd_dev is an helper library containing include files from the ejabberd project.
This project allows you to use the [mix](http://s3.hex.pm/builds/mix/mix) build tool to compile
your modules.### Usage
Add the package to your `mix.exs` file.
```elixir
# mix.exs
def deps do
[{:ejabberd_dev, "~> 15.9.0"}]
end
```Get the dependencies and compile
```
mix do deps.get, compile
```The compiled beam files will be placed in `_build//lib//ebin`