-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
81 lines (73 loc) · 1.81 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
76
77
78
79
80
81
defmodule Dropkick.MixProject do
use Mix.Project
@version "0.0.1"
@url "https://github.com/thiagomajesk/dropkick"
def project do
[
app: :dropkick,
version: @version,
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
docs: docs(),
deps: deps(),
preferred_cli_env: [
vcr: :test,
"vcr.delete": :test,
"vcr.check": :test,
"vcr.show": :test
],
xref: [exclude: [:hackney_request]]
]
end
defp description() do
"""
Easy file uploads for Elixir/Phoenix
"""
end
defp package do
[
maintainers: ["Thiago Majesk Goulart"],
licenses: ["AGPL-3.0-only"],
links: %{"GitHub" => @url},
files: ~w(lib mix.exs README.md)
]
end
defp docs() do
[
source_ref: "v#{@version}",
main: "README",
canonical: "http://hexdocs.pm/dropkick",
source_url: @url,
extras: [
"README.md": [filename: "README"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {Dropkick.Application, []},
extra_applications: [:logger, :inets]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto, "~> 3.0"},
{:image, "~> 0.30.0"},
{:jason, "~> 1.0"},
{:infer, "~> 0.2.4"},
{:sizeable, "~> 1.0"},
{:ex_doc, "~> 0.29", only: :dev, runtime: false},
{:exvcr, "~> 0.13.5", only: :test},
{:ecto_sql, ">= 3.0.0", only: :test},
{:postgrex, ">= 0.0.0", only: :test}
]
end
end