-
Notifications
You must be signed in to change notification settings - Fork 211
/
mix.exs
64 lines (53 loc) · 1.19 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
defmodule Arc.Mixfile do
use Mix.Project
@version "0.12.0"
def project do
[
app: :arc,
version: @version,
elixir: "~> 1.4",
deps: deps(),
# Hex
description: description(),
package: package()
]
end
defp description do
"""
Flexible file upload and attachment library for Elixir.
"""
end
defp package do
[
maintainers: ["Sean Stavropoulos"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/stavro/arc"},
files: ~w(mix.exs README.md CHANGELOG.md lib)
]
end
def application do
[
applications:
[
:logger,
:hackney
] ++ applications(Mix.env())
]
end
def applications(:test), do: [:ex_aws, :ex_aws_s3, :poison]
def applications(_), do: []
defp deps do
[
{:hackney, "~> 1.18"},
# If using Amazon S3
{:ex_aws, "~> 2.0", optional: true},
{:ex_aws_s3, "~> 2.0", optional: true},
{:poison, "~> 2.2 or ~> 3.1", optional: true},
{:sweet_xml, "~> 0.6", optional: true},
# Test
{:mock, "~> 0.3.4", only: :test},
# Dev
{:ex_doc, "~> 0.14", only: :dev}
]
end
end