forked from tlvenn/verk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
44 lines (39 loc) · 1.15 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
defmodule Verk.Mixfile do
use Mix.Project
@description """
Verk is a job processing system backed by Redis.
"""
def project do
[app: :verk,
version: "0.14.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: Coverex.Task, coveralls: true],
name: "Verk",
description: @description,
package: package(),
deps: deps()]
end
def application do
[applications: [:logger, :poison, :redix, :poolboy, :watcher],
env: [node_id: "1", redis_url: "redis://127.0.0.1:6379"]]
end
defp deps do
[{ :redix, "~> 0.4" },
{ :poison, "~> 2.0"},
{ :poolboy, "~> 1.5.1" },
{ :watcher, "~> 1.0" },
{ :gen_stage, "== 0.11.0", optional: true },
{ :credo, "~> 0.4", only: [:dev, :test] },
{ :earmark, "~> 1.0", only: :dev },
{ :ex_doc, "~> 0.13", only: :dev },
{ :coverex, "~> 1.4", only: :test },
{ :meck, "~> 0.8", only: :test }]
end
defp package do
[ maintainers: ["Eduardo Gurgel Pinho", "Alisson Sales"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/verk"} ]
end
end