-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmix.exs
More file actions
58 lines (51 loc) · 1.3 KB
/
mix.exs
File metadata and controls
58 lines (51 loc) · 1.3 KB
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
defmodule Dwolla.Mixfile do
use Mix.Project
@description """
An Elixir Library for Dwolla
"""
def project do
[
app: :dwolla,
version: "1.1.0",
description: @description,
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
deps: deps(),
docs: docs(),
source_url: "https://github.com/wfgilman/dwolla-elixir",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test]
]
end
def application do
[extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:httpoison, "~> 1.5"},
{:poison, "~> 4.0"},
{:recase, "~> 0.6"},
{:bypass, "~> 1.0", only: [:test]},
{:credo, "~> 1.4", only: [:dev], runtime: false},
{:excoveralls, "~> 0.13", only: [:test]},
{:ex_doc, "~> 0.22", only: [:dev], runtime: false}
]
end
defp package do
[
name: :dwolla_elixir,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
maintainers: ["Will Gilman"],
links: %{"Github" => "https://github.com/wfgilman/dwolla-elixir"}
]
end
defp docs do
[
extras: ["parameters.md"]
]
end
end