-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
45 lines (41 loc) · 1003 Bytes
/
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
45
defmodule Peon.Mixfile do
use Mix.Project
def project do
[
app: :peon,
name: "Peon",
description: "Easy task/process pooling for on-demand
or cron-able tasks.",
package: package(),
version: "0.1.0",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
test_coverage: [
tool: ExCoveralls
],
preferred_cli_env: [
"coveralls": :test,
"coveralls.detail": :test,
"coveralls.html": :test,
"coveralls.travis": :test
]
]
end
def package do
[
maintainers: ["Matthew Medal"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mmedal/peon"}
]
end
def application, do: []
defp deps do
[
{:dogma, "~> 0.1.13", only: [:dev, :test]},
{:excoveralls, "~> 0.6.1", only: [:dev, :test]},
{:power_assert, "~> 0.0.8", only: [:dev, :test]}
]
end
end