-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
75 lines (67 loc) · 1.85 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
defmodule ExBankID.MixProject do
use Mix.Project
@version "0.2.2"
def project do
[
app: :ex_bank_id,
version: @version,
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
deps: deps(),
description: description(),
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:httpoison, "~> 1.7", optional: true},
{:poison, "~> 4.0 or ~> 3.1", optional: true},
{:uuid, "~> 1.1"},
{:credo, "~> 1.4", only: [:dev], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:bypass, "~> 2.0", only: :test},
{:excoveralls, "~> 0.10", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:nimble_options, "~> 0.3.0"}
]
end
defp description(), do: "exBankID is a simple stateless API-client for the Swedish BankID API"
defp package() do
[
name: "exBankID",
files: ~w(lib .formatter.exs mix.exs README* LICENSE* assets),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/anfly0/exBankID"}
]
end
defp docs() do
[
main: "readme",
name: "ExBankID",
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/ExBankID",
source_url: "https://github.com/anfly0/exBankID",
extras: [
"README.md"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/helpers"]
defp elixirc_paths(_), do: ["lib"]
end