forked from ex-aws/ex_aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
68 lines (60 loc) · 1.61 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
defmodule ExAws.Mixfile do
use Mix.Project
@source_url "https://github.com/ex-aws/ex_aws"
@version "2.1.6"
def project do
[
app: :ex_aws,
version: @version,
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
description: "Generic AWS client",
name: "ExAws",
source_url: @source_url,
package: package(),
dialyzer: [flags: "--fullpath"],
deps: deps(),
docs: docs(),
]
end
def application do
[extra_applications: [:logger, :crypto], mod: {ExAws, []}]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps() do
[
{:sweet_xml, "~> 0.6", optional: true},
{:ex_doc, "~> 0.16", only: [:dev, :test]},
{:hackney, "~> 1.9", optional: true},
{:jason, "~> 1.1", optional: true},
{:jsx, "~> 2.8", optional: true},
{:dialyze, "~> 0.2.0", only: [:dev, :test]},
{:mox, "~> 0.3", only: :test},
{:bypass, "~> 1.0", only: :test},
{:configparser_ex, "~> 4.0", optional: true}
]
end
defp package do
[
description: description(),
files: ["priv", "lib", "config", "mix.exs", "README*"],
maintainers: ["Bernard Duggan", "Ben Wilson"],
licenses: ["MIT"],
links: %{GitHub: @source_url}
]
end
defp description do
"""
AWS client for Elixir. Currently supports Dynamo, DynamoStreams, EC2,
Firehose, Kinesis, KMS, Lambda, RRDS, Route53, S3, SES, SNS, SQS, STS
"""
end
defp docs do
[
main: "ExAws",
source_ref: "v#{@version}",
source_url: @source_url
]
end
end