-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
45 lines (39 loc) · 1 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
45
defmodule Exdm.Mixfile do
use Mix.Project
@version "0.0.3"
def project do
[app: :exdm,
version: @version,
elixir: "~> 1.3",
description: description(),
package: package(),
source_url: "https://github.com/joeyates/exdm",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
preferred_cli_env: [espec: :test],
test_coverage: [tool: Coverex.Task, coveralls: true],
deps: deps()]
end
def application do
[applications: [:logger]]
end
defp description do
"""
Deploy Elixir applications via mix tasks
"""
end
defp package do
[licenses: ["MIT"],
maintainers: ["Joe Yates"],
links: %{github: "https://github.com/joeyates/exdm"}]
end
defp deps do
[
{:espec, "~> 0.8.6", only: :test},
{:meck, "~> 0.8.3", only: :test},
{:coverex, "~> 1.4", only: :test},
# hackney (coverex dep-dep) doesn't compile under test without this:
{:cowboy, "1.0.4", only: :test}
]
end
end