-
Notifications
You must be signed in to change notification settings - Fork 75
/
mix.exs
45 lines (40 loc) · 972 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 Certstream.Mixfile do
use Mix.Project
def project do
[
app: :certstream,
version: "1.6.0",
elixir: "~> 1.6",
start_permanent: Mix.env == :prod,
deps: deps(),
aliases: aliases(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test]
]
end
def application do
[
extra_applications: [:honeybadger, :logger],
mod: {Certstream, []},
]
end
defp deps do
[
{:cowboy, "~> 2.8"},
{:easy_ssl, "~> 1.1"},
{:honeybadger, "~> 0.14"},
{:httpoison, "~> 1.7"},
{:instruments, "~> 1.1"},
{:jason, "~> 1.2"},
{:number, "~> 1.0"},
{:pobox, "~> 1.2"},
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.13", only: :test}
]
end
defp aliases do
[
test: "test --no-start"
]
end
end